Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
# ASN API with Standard or Pro plan | |
$ curl ipinfo.io/AS25/json?token=$IPINFO_TOKEN | |
{ | |
"asn": "AS25", | |
"name": "University of California at Berkeley", | |
"country": "US", | |
"allocated": "1984-08-03", | |
"registry": "arin", | |
"domain": "berkeley.edu", | |
"num_ips": 202496, |
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
/* | |
Usage: io github <query> [language] | |
io github django | |
io github coffeescript | |
To limit search results to a certain language: | |
io github django python | |
To see debug info: | |
io --debug github django |
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
# install git | |
sudo apt-get install g++ curl libssl-dev apache2-utils | |
sudo apt-get install git-core | |
# download the Node source, compile and install it | |
git clone https://github.com/joyent/node.git | |
cd node | |
./configure | |
make | |
sudo make install | |
# install the Node package manager for later use |