-
Edit an incorrect commit message in Git:
git commit --amend -m "New commit message"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Tutorials | |
--------- | |
- [Basic Tutorial](https://github.com/omcljs/om/wiki/Basic-Tutorial) | |
- [Intermediate Tutorial](https://github.com/omcljs/om/wiki/Intermediate-Tutorial) | |
- [Advanced Tutorial](https://github.com/omcljs/om/wiki/Advanced-Tutorial) | |
- [ClojureScript Workshop](http://www.niwi.be/cljs-workshop/) | |
- [Translations from JavaScript](http://himera.herokuapp.com/synonym.html) | |
- [Fork of Om's Tutorials, edited to be used with Figwheel](https://github.com/bensu/basic-om-tut) | |
- [Om Cookbook - Routing with Secretary](https://github.com/omcljs/om-cookbook/tree/master/recipes/routing-with-secretary) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% Gproc Example queries | |
1> Table = gproc:table(). | |
{qlc_handle,{qlc_table,#Fun<gproc.13.93641566>,true, | |
undefined,undefined,#Fun<gproc.16.93641566>,undefined, | |
#Fun<gproc.17.93641566>,undefined,'=:=',undefined, | |
no_match_spec}} | |
%% query all registered gproc local names | |
2> Q_names = qlc:q([{X, P} || {{n,l,X},P,_} <- Table]). | |
{qlc_handle,{qlc_lc,#Fun<erl_eval.20.99386804>, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-module(tcp_server). | |
-behaviour(gen_server). | |
%% API | |
-export([start_link/0]). | |
%% gen_server callbacks | |
-export([init/1, handle_call/3, handle_cast/2, handle_info/2, | |
terminate/2, code_change/3]). |
The TTY (TeleTYpe), TDD (Telecommunications Device for the Deaf), and TT (Text Telephone) acronyms are used interchangeably to refer to any type of text-based telecommunications equipment used by a person who does not have enough functional hearing to understand speech, even with amplification. The person sending a message types it on a small keyboard,
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -------------------------------------------------------------------------------------------- | |
# Mostly Erlang - episode 019 Elixir With José Valim / October 7, 2013 | |
# | |
# guests: | |
# - Joe Armstrong (@joeerl) | |
# - Robert Virding (@rvirding) | |
# - Jose Valim (@josevalim) | |
# - Fred Hebert (@mononcqc) | |
# - Eric Merit (@ericbmerritt) | |
# |