- Get a bootia32.efi file, I used this one from John Wells.
- Copy the file into the EFI/BOOT/ folder on the boot medium.
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 a simple example of the aREST Library for the ESP8266 WiFi chip. | |
| See the README file for more details. | |
| Written in 2015 by Marco Schwartz under a GPL license. | |
| */ | |
| // Import required libraries | |
| #include <ESP8266WiFi.h> | |
| #include <aREST.h> |
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
| int InetGSM::httpPOST(const char* server, int port, const char* path, const char* parameters, char* result, int resultlength) | |
| { | |
| boolean connected=false; | |
| int n_of_at=0; | |
| char itoaBuffer[8]; | |
| int num_char; | |
| char end_c[2]; | |
| end_c[0]=0x1a; | |
| end_c[1]='\0'; |
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
| npm outdated | grep -v 'git' | awk 'NR>1{print "npm i -g "$1"@"$3}' | xargs -I {} bash -c '{} | cat' |
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 cloudinary = require('cloudinary'); | |
| cloudinary.config({ | |
| cloud_name: '', | |
| api_key: '', | |
| api_secret: '' | |
| }); | |
| exports.save = function(req, callback) { | |
| console.log(req.body) |
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 page = require('webpage').create(); | |
| var system = require('system'); | |
| var args = system.args; | |
| var queue = []; | |
| function done() { | |
| if(queue.length == 0) { | |
| phantom.exit(); | |
| } |
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
| http { | |
| include mime.types; | |
| default_type application/octet-stream; | |
| #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' | |
| # '$status $body_bytes_sent "$http_referer" ' | |
| # '"$http_user_agent" "$http_x_forwarded_for"'; | |
| #access_log logs/access.log main; |
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 opensnoop | grep develop/node_modules > modules.txt | |
| cat modules.txt | awk '{print $5}' | awk -F'/' '{print $8}' | sort | uniq |
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
| #Find files in subdirs and move to one location | |
| #http://www.cyberciti.biz/faq/linux-unix-bsd-xargs-construct-argument-lists-utility/ | |
| $ find /path/to/dir -iname "*.c" -print0 | xargs -0 -I file mv file ~/old.src |
NewerOlder