start new:
tmux
start new with session name:
tmux new -s myname
| /* | |
| fileExistSync - Check if a file exist in NodeJS | |
| Twitter: @FGRibreau / fgribreau.com | |
| Usage: | |
| var fileExistSync = require('./fileExistSync'); | |
| var exist = fileExistSync('/var/folders/zm/jmjb49l172g6g/T/65b199'); | |
| Support for Nodev0.6 |
| # gcc -Wall -o match match.c && ./match | |
| # | |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <regex.h> | |
| class HttpClient { | |
| def get(uri: URI): Future[String] | |
| } | |
| // return Future of next URI to get | |
| def getUri(): Future[URI] | |
| // return's available HttpClient from a pool | |
| def getHttpClient(): Future[HttpClient] |
| # Greatest common divisor of 1 or more numbers. | |
| from functools import reduce | |
| def gcd(*numbers): | |
| """ | |
| Return the greatest common divisor of 1 or more integers | |
| Examples | |
| -------- |