- https://codegolf.stackexchange.com/q/55422/8478 Hello, World!
- https://codegolf.stackexchange.com/q/57617/8478 Is this number prime?
- https://codegolf.stackexchange.com/q/62732/8478 Implement a Truth-Machine
- https://codegolf.stackexchange.com/q/62230/8478 Simple cat program
- https://codegolf.stackexchange.com/q/63834/8478 Count up forever
- https://codegolf.stackexchange.com/q/93441/8478 Print all integers
- https://codegolf.stackexchange.com/q/84260/8478 Add two numbers
- https://codegolf.stackexchange.com/q/106182/8478 Multiply two numbers
- https://codegolf.stackexchange.com/q/101638/8478 Shortest code to produce non-deterministic output
- https://codegolf.stackexchange.com/q/13152/8478 Shortest code to produce infinite output
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
// ==UserScript== | |
// @name Code Golf SE sorter | |
// @namespace http://vyznev.net/ | |
// @version 0.6 | |
// @description Add a tab to sort answers by code length | |
// @match *://codegolf.stackexchange.com/questions/* | |
// @copyright 2014, Ilmari Karonen | |
// @grant none | |
// ==/UserScript== |
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
const logicGates = { | |
nand (a, b) { return !(a && b); }, | |
not (a) { return this.nand (a, a); }, | |
and (a, b) { return this.not (this.nand (a, b)); }, | |
or (a, b) { return this.nand (this.not (a), this.not(b)); }, | |
nor (a, b) { return this.not (this.or (a, b)); }, | |
xor (a, b) { return this.and (this.nand (a, b), this.or(a, b)); }, | |
xnor (a, b) { return this.not (this.xor (a, b)); } | |
}; |
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
You can open sublime text from command line with subl.exe and subl. The second one has a problem. If sublime text is not open already, | |
when you open sublime text with subl, the command prompt will wait until sublime text is closed. So, you cannot do anything else in | |
terminal, unless you open another terminal. This is useful in some cases. But sometimes its a pain. | |
Method 1: Open with subl.exe | |
1. Go to Control Panel > Advanced System Settings -> Advanced -> Environment Variables | |
2. Create a new system variable called SUBLIME that will point to the folder of your Sublime installation. | |
Variable Name: SUBLIME | |
Variable Value: C:\Program Files\Sublime Text 3 |
To queue a word to be added to the word list, send a message formatted like __WR: word (p):__ Definition
where word
is the Katlani word, p
is the part of speech, and definition
is the definition. Example: __WR: caminar (v):__ Walk
Part of speech | Abbreviations |
---|---|
Prefixes and Suffixes | pre, suf |
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
char (arity) - desc | |
whitespace - nop | |
newline - Starts a new function | |
! (1) - (any) logical not | |
" - String literal | |
# - Misc digraph char | |
$ (1) - (any) reverse | |
% (2) - (num, num) b mod a, (str, any) replace % in a with b | |
& (2) - (num, num) bitwise AND |