| language | filename | contributors |
|---|---|---|
D |
learnd.d |
/*TODO:
* static variables and CTFE (also TLS)
* delegates, function/delegate literals| ;; echowuhao's solution to Intro to Vectors | |
| ;; https://4clojure.com/problem/6 | |
| :a :b :c |
| language | filename | contributors |
|---|---|---|
D |
learnd.d |
/*TODO:
* static variables and CTFE (also TLS)
* delegates, function/delegate literals| (* Variations of Fizzbuzz in OCaml, translated from the Rust version in | |
| "FizzBuzz Revisited" by Lindsey Kuper: | |
| http://composition.al/blog/2013/03/02/fizzbuzz-revisited/ *) | |
| (* The FizzBuzz test proposed by Imran Ghory: | |
| http://imranontech.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/ *) | |
| (* and made famous by Jeff Atwood: | |
| http://www.codinghorror.com/blog/2007/02/why-cant-programmers-program.html *) | |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| #Creates a new issue with custom fields | |
| curl -D- -u uname:pass -X POST --data "{\"fields\": {\"project\": { \"id\": \"10430\" },\"summary\": \"This is a test issue\", \"description\": \"Description\",\"issuetype\": { \"id\" : \"1\"}, \"components\" : [{\"id\":\"10731\"}], \"customfield_10711\" : [{\"id\":\"10500\"}] } }" -H "Content-Type: application/json" http://localhost:8080/jira/rest/api/2/issue/ | |
| #Returns all information for all versions | |
| curl -D- -u uname:pass -X PUT -d "Content-Type: application/json" http://localhost:8080/jira/rest/api/2/project/AN/versions? | |
| #Returns all issues in a version | |
| #This URL requires the version ID of a single version which is provided by the above query | |
| curl -D- -u uname:pass -X PUT -d "Content-Type: application/json" http://localhost:8080/jira/rest/api/2/search?jql=project="AN"+AND+fixVersion='12345' |
wget --no-check-certificate https://raw.github.com/seebi/dircolors-solarized/master/dircolors.ansi-dark
mv dircolors.ansi-dark .dircolors
eval `dircolors ~/.dircolors`
git clone https://github.com/sigurdga/gnome-terminal-colors-solarized.git
cd gnome-terminal-colors-solarized
./set_dark.sh
| // This code is editable and runnable! | |
| fn main() { | |
| // A simple integer calculator: | |
| // `+` or `-` means add or subtract by 1 | |
| // `*` or `/` means multiply or divide by 2 | |
| let program = "+ + * - /"; | |
| let mut accumulator = 0; | |
| for token in program.chars() { |
| fn main() { | |
| let mut teams = [ | |
| [ ("Jack", 20), ("Jane", 23), ("Jill", 18), ("John", 19), ], | |
| [ ("Bill", 17), ("Brenda", 16), ("Brad", 18), ("Barbara", 17), ] | |
| ]; | |
| let teams_in_score_order = teams | |
| .iter_mut() | |
| .map(|team| { | |
| team.sort_by(|&a, &b| a.1.cmp(&b.1)); |
| fn main() { | |
| let player_scores = [ | |
| ("Jack", 20), ("Jane", 23), ("Jill", 18), ("John", 19), | |
| ]; | |
| let players = player_scores | |
| .iter() | |
| .map(|&(player, _score)| { | |
| player | |
| }) |
| WITH RECURSIVE | |
| x(i) AS ( VALUES (0) | |
| UNION ALL SELECT i + 1 | |
| FROM x | |
| WHERE i < 101), | |
| Z(Ix, Iy, Cx, Cy, X, Y, I) AS ( | |
| SELECT | |
| Ix, | |
| Iy, | |
| X :: FLOAT, |