Code | Title | Duration | Link |
---|---|---|---|
Keynote | Andy Jassy Keynote Announcement Recap | 0:01 | https://www.youtube.com/watch?v=TZCxKAM2GtQ |
Keynote | AWS re:Invent 2016 Keynote: Andy Jassy | 2:22 | https://www.youtube.com/watch?v=8RrbUyw9uSg |
Keynote | AWS re:Invent 2016 Keynote: Werner Vogels | 2:16 | https://www.youtube.com/watch?v=ZDScBNahsL4 |
Keynote | [Tuesday Night Live with Jame |
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
[ | |
{ | |
"link": "https://www.instagram.com/menshealthmag", | |
"username": "menshealthmag", | |
"name": "Men's Health", | |
"followers": "939k", | |
"picture": "https://instagram.fcpq1-1.fna.fbcdn.net/t51.2885-19/11371057_983333891687510_70028928_a.jpg" | |
}, | |
{ | |
"link": "https://www.instagram.com/harpersbazaarus", |
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
'use strict'; | |
var Influence = require('./').Influence; | |
var term = 'top fitness instagram accounts'; | |
Influence.find(term).then( | |
/** | |
* Handles the instagram profiles | |
*/ |
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 Google = require('./lib/google'); | |
var Hunter = require('./lib/hunter'); | |
var Instagram = require('./lib/instagram'); | |
/** | |
* The defaul constructor | |
*/ | |
function Influence() { | |
} |
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
'use strict'; | |
var util = require('util'); | |
var _ = require('lodash'); | |
var Scraper = require('./scraper'); | |
/** | |
* The default constructor | |
*/ | |
function Instagram() { |
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
'use strict'; | |
var util = require('util'); | |
var Scraper = require('./scraper'); | |
/** | |
* The default constructor | |
*/ | |
function Hunter() { | |
Scraper.call(this); |
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
'use strict'; | |
var url = require('url'); | |
var util = require('util'); | |
var Scraper = require('./scraper'); | |
/** | |
* The defult configuration | |
*/ | |
var HOST = 'https://google.com'; // google's host |
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
'use strict'; | |
var request = require('request-promise'); | |
var cheerio = require('cheerio'); | |
/** | |
* The default constructor | |
*/ | |
function Scraper() { |
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
#!/bin/bash | |
echo "" | |
if [ $# -eq 0 ] | |
then | |
echo "[!] no arguments given" | |
echo "[!] usage: ./dnsreport.sh [host]" | |
echo "[!] eg.: ./dnsreport.sh grandbusiness.com.br" | |
exit 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
#!/bin/bash | |
#################################################################################### | |
# | |
# addr.sh | |
# | |
# 'cause we're too damn lazy to read all the information that ifconfig gives us! | |
# | |
# Usage: | |
# |