Run bundle cache
# bundler specific
set :bundle_flags, '--deployment' # from --deployment --quiet
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
| Loading Rails is too slow, services are here to rescue. |
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
| #include <Servo.h> | |
| #define SHIFT 7 | |
| #define R 0 // Red LED | |
| #define G 1 // Green LED | |
| #define B 2 // Blue LED | |
| #define TIME 15 // Column of Time | |
| #define MAXSN 12 // Max Number of Servos | |
| #define MAXMN 10 // Max Number of Motions | |
| #define MAXFN 8 // Max Number of Frames |
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
| sudo apt-get update && sudo apt-get upgrade openssl | |
| openssl version -b | |
| 1:27 |
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
| ['umhan35', ['myumanitoba', 'ca'].join('.')].join('@') |
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
| Tomcat | |
| Jetty | |
| Netty | |
| Spring (Spring Boot) | |
| Play |
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
| ooc | |
| Vala | |
| Genie |
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
| java -classpath bin/ -Djava.ext.dirs=lib/ hanzhao.name.simcard.SimCard |
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
| addnginxuser() { | |
| # creating nginx group if he isn't already there | |
| if ! getent group nginx >/dev/null; then | |
| addgroup --system nginx >/dev/null | |
| fi | |
| # creating nginx user if he isn't already there | |
| if ! getent passwd nginx >/dev/null; then | |
| adduser \ | |
| --system \ |
OlderNewer