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 install libcap2-bin | |
| sudo setcap cap_net_bind_service=+ep /usr/local/bin/node |
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
| var httpProxy = require('http-proxy'), | |
| fs = require('fs'); | |
| console.log("proxy"); | |
| var options = { | |
| target: "https://localhost", | |
| ssl: { | |
| key: fs.readFileSync('./ssl/key.pem'), | |
| cert: fs.readFileSync('./ssl/cert.pem') |
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
| #if LINUX_VERSION_CODE >= KERNEL_VERSION(3,6,3) | |
| if (!ACPI_SUCCESS(acpi_get_table_with_size(id, 0, &hdr, &tbl_size))) | |
| #else | |
| tbl_size = 0x7fffffff; | |
| if (!ACPI_SUCCESS(acpi_get_table(id, 0, &hdr))) | |
| #endif | |
| { | |
| return KCL_ACPI_ERROR; | |
| } | |
| #if LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,1) |
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
| requestWindowFeature(Window.FEATURE_NO_TITLE); |
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
| gs -q -sPAPERSIZE=letter -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=output.pdf file1.pdf file2.pdf file3.pdf [...] lastfile.pdf |
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
| -Dorg.eclipse.swt.browser.DefaultType=mozilla |
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
| This patch may not necessarily work - this is a better version at launchpad by Victor Martinez https://code.launchpad.net/~victored/+junk/mt7601U-linux-driver-64bit | |
| after: | |
| sudo make install, | |
| do | |
| sudo modprobe mt7601Usta |
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
| Python 2.7.9 (2.5.1+dfsg-1~ppa1+ubuntu14.04, Mar 27 2015, 19:19:42) | |
| [PyPy 2.5.1 with GCC 4.8.2] | |
| Using arena file: | |
| example_benchmarks/zeros.py | |
| - zeros_imul | |
| - zeros_mul | |
| - zeros_repeat | |
| - zeros_slow | |
| Using benchmark file: |
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 <stdio.h> | |
| #include <ctype.h> | |
| #include <string.h> | |
| #include <stdlib.h> | |
| int is_pal(char* word) { | |
| size_t len = strlen(word); | |
| char* begin = word; | |
| char* end = word + len - 2; // -2 beacuse we get the newline char as well | |
| if (len == 1) { |
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
| #!/usr/bin/python | |
| from subprocess import check_output | |
| import sys | |
| class Colors: | |
| HEADER = '\033[95m' | |
| OKBLUE = '\033[94m' | |
| OKGREEN = '\033[92m' | |
| WARNING = '\033[93m' |
OlderNewer