First off: Thanks, but no thanks Microsoft.
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
@rem spoof netsh command to test SSID library on Appveyor.yml | |
echo Name : DUMMY_WIFI | |
echo State : connected | |
echo SSID : DUMMY_ID | |
echo Profile : DUMMY_ID |
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
pub struct Dummy { | |
foo: String, | |
bar: String, | |
} | |
impl Dummy { | |
pub fn new(foo: &str, bar: &str) -> Dummy { | |
Dummy { | |
foo: foo.to_owned(), | |
bar: bar.to_owned(), |
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
sh crystal-compiler.sh |
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
data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4AsIEBo3fEJUeAAAAo9JREFUSMftlV1I01EYxn/nv+Pcn4FMN1dmpFhIEN7URUHlZ2L0cdNV3xAV9EVdSaS4jbmywCsjTIwChYikzJBIhmFBBF2IdRFhIIqZNEIyULf/Pk4XDZoxdRO964Vzdd7zPO95eN/nFUopVjM0VjlWnUDi80EwSGB4mKlYDJMR5av/6kOgMEkxQSC0ANaX9dW3LkXNJnI0DWdxMVgsyHkpQhDwN+wEowb4CZgTbkPAOkBfgGBbwN/Qbj/Q9CGpRJqmMdVbv8PA6ANagRPAGeBs/OwHniyiht3A6J/qrd+saVoCga6DbmG0x1USIvgKaAO6gGzAFC9CAyQQW0Jy+4ya8Y/2uArQLaDriDH9R5aBkT+pJvoNwi80RAtQkOTxGFALHF+MIaKiWETmSJ7IrzZjDsiPsaFG4EgmlgkpTHXAdkAAyxoQi8gkqEJFn9WnbqBLWoX1AfA+oqKtwFFgIP4DlX5LSiJEALAKqwsYlrvGNw0BQ79KrdqbkYEOm8i+CLwDNqSg+Xx5iDCtptldVLo36/VMHwK0DIeDDIcDe/tgp1OsOR9W4TvAVmA83UEMqzB2YT9kbx/sy8j9g/sXYHaW4oM37upCrwXuAVuAiXgnpRQC7WTJHk83c3NJrEIpYpEozhpfs0S6gQ5gI/AtFRIz5nOFZd7OaCQKCQY6XwIFSsXIq2z0Ak0S+QjIByYXI5HIKzn7fG0qVbNTKNZWNtUBt4GnQC7wPRmJRF6zVXlaVEyl66aKnArvZeA+8BywAYF/krw5VZ6by7JrFT+O8uunJfIx8AxwJFTe7CzzuldkH2RXug9L5FvgWBy81VbhqV3RhWMrd58CXkpkr63CdSHVQZdpukFHuvYh/i/9peI3Fs |
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
sudo apt-get install libssl-dev | |
sudo apt-get install libcurl4-openssl-dev | |
sudo apt-get install clibcurl4-openssl-dev pkg-config libssl-dev libsslcommon2-dev |
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
set nocompatible " be iMproved (required) | |
filetype off " (required) | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" let Vundle manage Vundle (required) | |
Plugin 'VundleVim/Vundle.vim' |
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
#!/bin/sh | |
ulimit -n 8192 | |
php-cgi -b 9000 | /opt/caddy/caddy |
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
[package] | |
name = "ark_test" | |
version = "0.1.0" | |
authors = ["Sam Saint-Pettersen <[email protected]>"] | |
[dependencies] | |
ark = { git = "https://github.com/stpettersens/ark.git" } |
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 Duolingo Autoplay audio | |
// @namespace 8442918f3dbd7268b7eabd74e1ce191e | |
// @version 0.1 | |
// @description Autoplay the audio prompts on Duolingo. | |
// @author Sam Saint-Pettersen <[email protected]> | |
// @match https://www.duolingo.com/* | |
// @icon https://s32.postimg.org/8zxj3evit/duolingo.png | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js | |
// ==/UserScript== |