| Language | Requested by (SE username) | Github/Repo | Chat link |
|---|---|---|---|
| hyeo-ung | @buttercrab | https://github.com/buttercrab/hyeo-ung-lang | https://chat.stackexchange.com/transcript/message/54704203#54704203 |
| International Phonetic Esoteric Language | @bigyihsuan | https://github.com/bigyihsuan/International-Phonetic-Esoteric-Language | https://chat.stackexchange.com/transcript/message/54615008#54615008 |
| unknown language | @sportzpikachu | N/A | https://chat.stackexchange.com/transcript/message/53891729#53891729 |
| Symbolic Raku | @JoKing | https://github.com/GuyJoKing/Symbolic-Raku | https://chat.stackexchange.com/transcript/message/53066654#53066654 |
| Wenyan | @ShieruAsakoto | https://github.com/wenyan-lang/wenyan | https://chat.stackexchange.com/transcript/message/53513615#53513615 |
| W | @Third-party'Chef' | N/A | https://chat.stackexchange.com/transcript/message/53760709#53760709 |
Before you start, make sure ip command is available on your system. In modern Linux distributions, ip replaces older ifconfig command. If net-tools package (that includes ifconfig) is not installed and you prefer using it, you can install it via sudo apt-get install net-tools.
Use touch /home/pi/wifi-reconnect.sh to create a shell script file,
with the following content:
#!/bin/bash
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
| // Tiny FORTH by T. NAKAGAWA 2004/07/04-10,7/29,8/5-6 | |
| /* | |
| Tiny FORTH | |
| Experimental Forth for Arduino | |
| T. Nakagawa | |
| 2004/07/10 | |
| */ | |
| #include <stdio.h> |
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
| Array.prototype.sortBy = (function() { | |
| var sorters = { | |
| string: function(a, b) { | |
| if (a < b) { | |
| return -1; | |
| } else if (a > b) { | |
| return 1; | |
| } else { | |
| return 0; | |
| } |
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
| /* The world's smallest Brainfuck interpreter in C, by Kang Seonghoon | |
| * http://j.mearie.org/post/1181041789/brainfuck-interpreter-in-2-lines-of-c */ | |
| s[99],*r=s,*d,c;main(a,b){char*v=1[d=b];for(;c=*v++%93;)for(b=c&2,b=c%7?a&&(c&17 | |
| ?c&1?(*r+=b-1):(r+=b-1):syscall(4-!b,b,r,1),0):v;b&&c|a**r;v=d)main(!c,&a);d=v;} |