Tilde.club is one cheap, unmodified Unix computer on the Internet.
That's it.
That’s all it is. It is no more than that.
If you look for more for it to be you will find nothing. Such computers are cheap and plentiful. They take a few minutes to set up and you launch them from a web browser and rent them by the hour. And even more importantly: As a human being reading Medium, you are not expected to worry about, write
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
package main | |
import ( | |
"flag" | |
"fmt" | |
"net/http" | |
"github.com/gorilla/mux" | |
"github.com/markbates/goth" | |
"github.com/markbates/goth/gothic" |
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
9 9 2 9 | |
9 2 8 2 | |
7 7 0 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
2 9 7 2 | |
8 0 7 7 |
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
; This program prints "Hack the planet!" to stdout | |
; @author Harrison <github.com/paked> | |
; I'd like to thank the academy for helping me get this far. | |
; build: `nasm -f elf64 -F stabs hello_world.asm` | |
; link: `ld -o hello_world hello_world.o` | |
; run: `./hello_world` | |
section .data ; group "data" related stuff into this section |
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
#Path to this program | |
THISPROGRAM=/home/pi/programs/fib-gist | |
#Path to go-fibonacci | |
GOFIBONACCI=/home/pi/programs/go-fibonacci | |
#Path to the log file | |
GOFIBONACCILOGFILE=/home/pi/programs/log-everyhour-gist.txt | |
#Shell command to execute go-fibonacci and send its output to the logfile |
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
package main | |
import ( | |
"github.com/veandco/go-sdl2/sdl" | |
"log" | |
"os" | |
) | |
type WindowDetails struct { | |
Title string |