I hereby claim:
- I am raindev on github.
- I am raindev (https://keybase.io/raindev) on keybase.
- I have a public key ASBb46e0JuM3Gar31P90FDV9Lk2RvgNZ8MLZUS6Kg-L6Ygo
To claim this, I am signing this object:
[package] | |
name = "lost-links" | |
version = "0.1.0" | |
authors = ["Andrew Barchuk <[email protected]>"] | |
[dependencies] | |
curl = "0.3.6" # -> winapi:0.2 | |
regex = "0.1.52" | |
url = "1.2.0" | |
clap = "2.12.1" # -> winapi:~0.2.8 |
converting number 13 to String | |
temporary number is currently 13 | |
current digit 3 | |
current digit as string Three | |
current string value of number Three | |
temporary number is currently 1 | |
current digit 1 | |
current digit as string One | |
current string value of number OneThree | |
converting number 52 to String |
func printMathResult(mathFunction: (Int, Int) -> Int, _ a: Int, _ b: Int) { | |
print(mathFunction(a, b)) | |
} | |
printMathResult({$0 + $1}, a: 2, b: 3) | |
printMathResult({$0 + $1}, 2, 3) |
I hereby claim:
To claim this, I am signing this object:
use std::fs; | |
use std::env; | |
use std::process; | |
fn main() { | |
match env::args_os().nth(1) { | |
None => { | |
print!("nope"); | |
print!("okay"); | |
// will cause losss of stdout buffered above |
#!/usr/bin/env bash | |
# Usage: ./brew-rehash.sh formula-file.rb | |
if [[ $1 == *".rb" ]]; then | |
formula=$1 | |
else | |
formula="$1.rb" | |
fi | |
echo "Rehashing $1" |
#! /bin/sh | |
vim="vim $@" | |
osascript -e "tell app \"Terminal\" | |
activate | |
do script \"$vim\" | |
end tell" |
ifp :: (a -> Bool) -> a -> a -> a | |
ifp p x y | |
| p x = x | |
| otherwise = y |
// implementation | |
<T> void let(T value, Consumer<T> consumer) { | |
consumer.accept( value ); | |
} | |
// example usage | |
let(userService.findUser(), user -> { | |
// do something to the user | |
if (!user.isValid()) { | |
userService.removeUser(user); |
package test; | |
import org.junit.Test; | |
import java.io.UnsupportedEncodingException; | |
import java.util.Arrays; | |
import static org.junit.Assert.assertNotEquals; | |
public class EncodingTest { |