create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| .academy | |
| .accountant | |
| .accountants | |
| .actor | |
| .ads | |
| .adult | |
| .agency | |
| .airforce | |
| .alsace | |
| .amsterdam |
| (require 'clojure.core.async :refer :all) | |
| (def MOVES [:rock :paper :scissors]) | |
| (def BEATS {:rock :scissors, :paper :rock, :scissors :paper}) | |
| (defn rand-player | |
| "Create a named player and return a channel to report moves." | |
| [name] | |
| (let [out (chan)] | |
| (go (while true (>! out [name (rand-nth MOVES)]))) |
| # GDC Vault videos can't be watched on mobile devices and this is a very sad thing indeed! | |
| # (Note: this has changed for GDC2013, which lets you watch raw MP4 streams. Kudos!) | |
| # This script is designed to circumvent this by downloading the lecture and slideshow | |
| # videos which can then be re-encoded into whatever format you wish. Obviously, you | |
| # won't be able to do this without access to the Vault. This is strictly for the | |
| # convenience of legitimate Vault users! | |
| # Note: this code is rather flimsy and was written as fast as possible for my own personal use. | |
| # The code only works for the most recent GDC Vault videos, since they all use the same player | |
| # format. If the XML format used to run the player is changed (as it has in the past), the code |
| #!/bin/sh | |
| ### | |
| # SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
| # For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
| ### | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| (defn insert [l k] | |
| "Function to do insert in sorted order" | |
| (concat (filter #(< % k) l) [k] (filter #(> % k) l))) | |
| (defn isort [l] | |
| "Insertion sort" | |
| (loop [r [] | |
| l l] | |
| (if (empty? l) | |
| r |
| import java.io.*; | |
| public class PrevaylerJr { | |
| public static interface Command extends Serializable { | |
| Object executeOn(Object system); | |
| } | |