This file contains hidden or 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
adsf | |
asdf | |
hi |
This file contains hidden or 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
█████████████████████████████████████████████ | |
░░░░ █▀▀█ █▀▀ ▀▀█▀▀ █▀▀ █▀▀ ▀▀█▀▀ █▀▀█ ░░░░ | |
░░░░ █▄▄█ █▀▀ ░░█░░ █▀▀ ▀▀█ ░░█░░ █▄▄█ ░░░░ | |
░░░░ █░░░ ▀▀▀ ░░▀░░ ▀▀▀ ▀▀▀ ░░▀░░ ▀░░▀ ░░░░ | |
█████████████████████████████████████████████ |
This file contains hidden or 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
def foo | |
"" | |
end |
This file contains hidden or 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
{ | |
"count": 1068, | |
"previous": null, | |
"results": [{ | |
"url": "https://pokeapi.co/api/v2/pokemon-form/1/", | |
"name": "bulbasaur" | |
}, | |
{ | |
"url": "https://pokeapi.co/api/v2/pokemon-form/2/", | |
"name": "ivysaur" |
I hereby claim:
- I am Petesta on github.
- I am petesta (https://keybase.io/petesta) on keybase.
- I have a public key whose fingerprint is AB24 15CF B265 BAA6 7CF0 E5B4 DDEA DBC1 4F83 C310
To claim this, I am signing this object:
This file contains hidden or 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/bash | |
curl -L -o amm http://git.io/vZJoU | |
chmod a+x amm | |
sudo mv amm /usr/local/sbin | |
# Can now call `amm` anywhere in Terminal |
This file contains hidden or 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
import sbt._ | |
import Keys._ | |
object BuildSettings { | |
val buildSettings = Seq( | |
scalaVersion := "2.11.4", | |
scalacOptions += "", | |
resolvers += Resolver.sonatypeRepo("snapshots"), | |
resolvers += Resolver.sonatypeRepo("releases") | |
) |
This file contains hidden or 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
" Ex. This is what the call would look like on the command line | |
" sbt 'test-only test.ApplicationSpec' | |
function! SBTTestOnly() | |
let b:current_filename = split(split(@%, '/')[1], '\.')[0] | |
let b:sbt = ":Dispatch sbt 'test-only test.".b:current_filename."'" | |
execute b:sbt | |
endfunction | |
command! -nargs=0 SBT :call SBTTestOnly() |
NewerOlder