Skip to content

Instantly share code, notes, and snippets.

View vilmibm's full-sized avatar
📼

Nate Smith vilmibm

📼
View GitHub Profile
@vilmibm
vilmibm / 0-go-os-arch.md
Created April 27, 2023 07:41 — forked from asukakenji/0-go-os-arch.md
Go (Golang) GOOS and GOARCH

Go (Golang) GOOS and GOARCH

All of the following information is based on go version go1.17.1 darwin/amd64.

GOOS Values

GOOS Out of the Box
aix
android
@vilmibm
vilmibm / update.md
Last active December 4, 2017 03:43 — forked from themushmouth/update
@vilmibm
vilmibm / boggle.rs
Last active February 15, 2017 00:23 — forked from revnull/boggle solver
boggle solver
use std::io::{BufReader, BufRead, Error};
use std::io;
use std::cmp;
use std::fs::File;
use std::collections::HashSet;
extern crate core;
struct TrieDict {
word : Option<String>,
@vilmibm
vilmibm / django_girls_chromebook.md
Last active June 3, 2017 17:39 — forked from anonymous/django_girls_chromebook.md
Django Girls + Chromebooks

Chromebook + Django Girls == <3

Chromebooks are special in that you can't run your own software outside of the Chrome browser. This is fine if you're browsing the web or editing things in Google Docs, but it makes writing and running your own code slightly more challenging. It's possible to set your Chromebook to "developer mode" and use it like a traditional computer, but this is slightly advanced and also resets the computer to factory defaults.

To still get the benefits of the Django Girls tutorial, this installation guide sets you up with a tool that runs a fully fledged computer for you that you can access through your browser.

Cloud 9

First, we'll install a tool called Cloud 9 which will let us edit code, install software, and more. For the duration of the tutorial, Cloud 9 will act as your local machine. You'll still be executing commands in a terminal interface just like your classmates on OS X or Ubuntu, but the terminal will be remotely connected to a computer somewhere else that Clou