I hereby claim:
- I am lokeh on github.
- I am lilactown (https://keybase.io/lilactown) on keybase.
- I have a public key ASCapdmYRqCZdN5lH20UYAK97qiesOSuzTC7P68aBL04Xwo
To claim this, I am signing this object:
| const denodeify = (fn) => | |
| function (...args) { | |
| // bind our node function to the current context with arguments | |
| const boundFn = fn.bind(this, ...args); | |
| return new Promise((resolve, reject) => { | |
| // call our bound node-style function | |
| // typical node-style is `callback (err, result)` | |
| // but we can account for more arguments | |
| // by using a spread |
| #! /usr/bin/env python | |
| # Description: | |
| # Downloads a file from a URL to a given file name, then checks to see if a certain phrase is | |
| # contained in it. | |
| # | |
| #Instructions: | |
| # Running the script is easy: 'python puppet.py <URL> <FILE>' will download data from <URL> over | |
| # HTTP and save it locally to <FILE>. It will then search for the default phrase 'position = support-intern', | |
| # and if it does not find it, append the phrase to the end of the file and then check again. | |
| # |
| #! /usr/bin/env python | |
| # Description: | |
| # Downloads a file from a URL to a given file name, then checks to see if a certain phrase is | |
| # contained in it. | |
| # | |
| #Instructions: | |
| # Running the script is easy: 'python puppet.py <URL> <FILE>' will download data from <URL> over | |
| # HTTP and save it locally to <FILE>. It will then search for the default phrase 'position = salesengineering-intern', | |
| # and if it does not find it, append the phrase to the end of the file and then check again. | |
| # |
| Will Acton | |
| 1912 SW 6th Ave. #1222, Portland, OR 97201 (503) 939-8737 actonw.work@gmail.com | |
| Self-Summary | |
| I am a senior at Portland State University about to graduate with a B.S. in Mathematics. I also spend my | |
| free time programming and training/coaching martial arts. I am hard working and clever. My most valuable | |
| attribute is my ability to pick up and learn new skills in a new environment at a fast pace, on the go. I have | |
| lots of patience and excellent interpersonal communication skills. | |
| Experience |
| #!/bin/bash | |
| # Written by Andy Boutte and David Balderston of howtoinstallghost.com, ghostforbeginners.com and allaboutghost.com | |
| # updateghost.sh will update your current ghost install to the latest version without you losing any content | |
| if [ -f config.js ] | |
| then | |
| echo `whoami` | |
| # Make temporary directory and download latest Ghost. | |
| mkdir temp | |
| cd temp |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| ########################## | |
| # Description: | |
| # Downloads an Erlang program from a Gist or Hastebin, then opens an Erlang shell with it | |
| # compiled and loaded. | |
| # | |
| # Installation: | |
| # Download and install this script in /usr/local/bin | |
| # |
| type Reduced<Value> = { value: Value, completed: boolean }; | |
| type Reducer<Accumulator, Input> = (whatever: Accumulator, input: Input) => Accumulator | Reduced<Accumulator>; | |
| type Transducer<Input, Output> = | |
| <Accumulator>(reducer: Reducer<Accumulator, Output>) => Reducer<Accumulator, Input>; | |
| // utils | |
| function reduced<Value>(value: any, completed: boolean): Reduced<Value> { | |
| return { value, completed }; | |
| } |
| ;; Something similar to this goes in project.clj: | |
| ;; | |
| ;; :profiles {:dev {:dependencies [[com.cemerick/piggieback "0.2.2"] | |
| ;; [figwheel-sidecar "0.5.10"]] | |
| ;; :source-paths ["ui_src" "dev"]}} | |
| (ns user | |
| (:require [figwheel-sidecar.repl-api :as ra])) | |
| (defn fig-start [] (do |
| let fizzbuzz num => { | |
| let shouldFizz = num mod 3 == 0; | |
| let shouldBuzz = num mod 5 == 0; | |
| switch (shouldFizz, shouldBuzz) { | |
| | (true, true) => "FizzBuzz" | |
| | (true, false) => "Fizz" | |
| | (false, true) => "Buzz" | |
| | (false, false) => string_of_int num | |
| } | |
| }; |