I hereby claim:
- I am bitcrazed on github.
- I am bitcrazed (https://keybase.io/bitcrazed) on keybase.
- I have a public key whose fingerprint is 3020 64B4 AAA9 C645 7035 A9DF 8EA1 F422 9BFA 51FF
To claim this, I am signing this object:
| // This file was initially generated by Windows Terminal Preview 1.4.2652.0 | |
| // It should still be usable in newer versions, but newer versions might have additional | |
| // settings, help text, or changes that you will not see unless you clear this file | |
| // and let us generate a new one for you. | |
| // To view the default settings, hold "alt" while clicking on the "Settings" button. | |
| // For documentation on these settings, see: https://aka.ms/terminal-documentation | |
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", |
| @echo off | |
| chcp 65001 > nul | |
| call :setESC | |
| REM: Note - No easy way to escape a numeric Unicode code-point so embed emoji etc. by copy/paste or Win10 emoji keyboard (Win + .) | |
| echo 🎵 Hello %ESC%[31mWorld%ESC%[0m, %ESC%[32mis%ESC%[0m %ESC%[33mit%ESC%[0m %ESC%[34mme%ESC%[0m %ESC%[35myou're%ESC%[0m %ESC%[36mlooking%ESC%[0m %ESC%[37mfor%ESC%[0m? 🎶 | |
| REM `setESC` courtesy of https://github.com/mlocati in https://gist.github.com/mlocati/fdabcaeb8071d5c75a2d51712db24011#file-win10colors-cmd | |
| :setESC |
| $esc = [char]27 | |
| "`u{1F3B5} Hello $esc[31mWorld$esc[0m, $esc[32mis$esc[0m $esc[33mit$esc[0m $esc[34mme$esc[0m $esc[35myou're$esc[0m $esc[36mlooking$esc[0m $esc[37mfor$esc[0m? `u{1F3B6}" |
| # Description: Boxstarter Script | |
| # Author: Rich Turner <[email protected]> | |
| # Last Updated: 2018-10-26 | |
| # | |
| # Run this Boxstarter by calling the following from an **ELEVATED PowerShell instance**: | |
| # `set-executionpolicy Unrestricted` | |
| # `. { iwr -useb https://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force` | |
| # `Install-BoxstarterPackage -DisableReboots -PackageName <URL-TO-RAW-GIST>` | |
| #---- TEMPORARY --- |
| package main | |
| import ( | |
| "fmt" | |
| "syscall" | |
| "time" | |
| ) | |
| type backgroundProcess struct { | |
| readPipeHandle syscall.Handle |
| #!/bin/bash | |
| # Author: Rich Turner [[email protected]] | |
| # Source: https://gist.github.com/bitcrazed/79594a6f28e7f76ae45ad1ccfb554755 | |
| # License: WTFPL: http://www.wtfpl.net/ | |
| # Instructions: Install using the following: $ source <(curl -s <URL-TO-THIS-RAW-FILE>) | |
| # Let's get apt up to date: | |
| sudo apt update -y |
| # Grab some of the essentials | |
| sudo zypper install -y fortune cowsay ruby-dev htop caca-utils gcc gcc-c++ make | |
| # Grab some fun tools from https://software.opensuse.org/download.html?project=utilities&package=cmatrix | |
| sudo zypper addrepo https://download.opensuse.org/repositories/utilities/openSUSE_Leap_42.3/utilities.repo | |
| sudo zypper refresh | |
| sudo zypper install cmatrix | |
| # LOLCAT ... because SUSE doesn't have a Zypper package for Lolcat! | |
| wget https://github.com/busyloop/lolcat/archive/master.zip |
I hereby claim:
To claim this, I am signing this object:
| set number | |
| set tabstop=4 | |
| set shiftwidth=4 | |
| set softtabstop=4 | |
| set expandtab | |
| set mouse=a | |
| syntax enable |
| #!/usr/bin/python | |
| # Based on https://www.reddit.com/r/technology/comments/43fi39/i_set_up_my_raspberry_pi_to_automatically_tweet/ | |
| import os | |
| import sys | |
| import csv | |
| import datetime | |
| import time | |
| import twitter |