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
| Programming Language Checklist | |
| by Colin McMillen, Jason Reed, and Elly Fong-Jones, 2011-10-10 | |
| updated by BoppreH, 2024-01-24 | |
| You appear to be advocating a new: | |
| [ ] functional [ ] imperative [ ] object-oriented [ ] stack-based [ ] concurrent | |
| [ ] interpreted [ ] compiled [ ] JIT [ ] cloud [ ] AI [ ] beginner-friendly | |
| [ ] academic-friendly [ ] visual [ ] sharable [ ] esoteric | |
| [ ] memory safe [ ] memory unsafe [ ] provable [ ] Turing-incomplete | |
| [ ] statically-typed [ ] dynamically-typed [ ] completely incomprehensible |
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
| export http_proxy= | |
| export https_proxy= | |
| curl -XDELETE 'http://localhost:9200/test/' | |
| echo "Creating the mapping" | |
| curl -XPUT 'http://localhost:9200/test/?pretty=1' -d ' | |
| { | |
| "mappings" : { | |
| "member" : { |
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
| bool isPrime(int n) | |
| { | |
| int max = (int)sqrt(n); | |
| for (int j = 2; j < max; j++) | |
| if (n % j == 0) | |
| return false; | |
| return true; | |
| } |
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 | |
| # | |
| # GitLab Runs unicorn and resque for nginx integration. | |
| ### | |
| # chkconfig: 35 98 55 | |
| # processname: unicorn | |
| # processname: resque | |
| # description: Runs unicorn and resque for nginx integration. | |
| ### |