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 hidden or 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
# Project Policy | |
This policy provides a single, authoritative, and machine-readable source of truth for AI coding agents and humans, ensuring that all work is governed by clear, unambiguous rules and workflows. It aims to eliminate ambiguity, reduce supervision needs, and facilitate automation while maintaining accountability and compliance with best practices. | |
# 1. Introduction | |
> Rationale: Sets the context, actors, and compliance requirements for the policy, ensuring all participants understand their roles and responsibilities. | |
## 1.1 Actors |
This file contains hidden or 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) | |
# |
This file contains hidden or 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]). |
This file contains hidden or 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 hidden or 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) |
-
Edit an incorrect commit message in Git:
git commit --amend -m "New commit message"