Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
alternatively use: http://geoff.greer.fm/lscolors/
The value of this variable describes what color to use for which attribute when colors are enabled with CLICOLOR. This string is a concatenation of pairs of the format fb, where f is the foreground color and b is the background color.
The color designators are as follows:
a black
Simplest intro to git by github and codeschool - Try Git
[Intro to github]
| admin account info" filetype:log | |
| !Host=*.* intext:enc_UserPassword=* ext:pcf | |
| "# -FrontPage-" ext:pwd inurl:(service | authors | administrators | users) "# -FrontPage-" inurl:service.pwd | |
| "AutoCreate=TRUE password=*" | |
| "http://*:*@www” domainname | |
| "index of/" "ws_ftp.ini" "parent directory" | |
| "liveice configuration file" ext:cfg -site:sourceforge.net | |
| "parent directory" +proftpdpasswd | |
| Duclassified" -site:duware.com "DUware All Rights reserved" | |
| duclassmate" -site:duware.com |
For the things we have to learn before we can do them,
we learn by doing them. ― Aristotle
This exercise is a straightforward recipe for starting a new IntelliJ project, adding a code file, and marrying a local Git repository to a remote GitHub repository. Even if you are comfortable with your Git workflow, you should go through this and understand what is happening - and more specifically, where on your computer's hard drive and on GitHub it is happening.
Repeat this exercise a few times, until you're comfortable. You don't have to memorize each command - that's what cheat sheets are for! - but rather, focus on understanding their relationships to the files on your computer, your development environment (IntelliJ), and GitHub.
| cd /System/Library/CoreServices/Spotlight.app/Contents/MacOS | |
| sudo cp Spotlight Spotlight.bak | |
| sudo perl -pi -e 's|(\x00\x00\x00\x00\x00\x00\x47\x40\x00\x00\x00\x00\x00\x00)\x42\x40(\x00\x00\x80\x3f\x00\x00\x70\x42)|$1\x00\x00$2|sg' Spotlight | |
| cmp -l Spotlight Spotlight.bak | |
| sudo codesign -f -s - Spotlight | |
| sudo killall Spotlight |
| const request = require('request'); | |
| const APIKEY = require('./weather_apikey'); //file with '{"key": "XXX"}' | |
| const ip = '208.67.222.222'; | |
| const getLatLng = (ip) => { | |
| const url = `https://ipapi.co/${ip}/latlong/`; | |
| request.get(url) | |
| .on('response', function (response) { | |
| if (response.statusCode == 200) getWeather(response.body); |