This file contains 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
{ | |
"city":"New York", | |
"zipcode":"10007", | |
"timezone_offset":-5, | |
"latitude":40.7121, | |
"connection_type":"fttx", | |
"timezone_name":"America/New_York", | |
"isp_name":"Lightower Fiber Networks I", | |
"organization_name":"Lightower Fiber Networks", | |
"country":"US", |
This file contains 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
{ | |
"id": "cj0se5d36061w01nlmthpr5w1", | |
"timestamp": "2017-03-16T15:30:11.252Z", | |
"created_at": "2017-03-16T15:30:11.252Z" | |
} |
This file contains 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
{ | |
"social_channel_url":"https://www.facebook.com/thefutureisnowbymic", | |
"domain":"mic.com", | |
"visitor":"85ff9745-c673-4990-82c5-ee1d54b2a78c", | |
"duration":421, | |
"timezone":300, | |
"ad_blocker":false, | |
"ip_address":"72.69.2.7", | |
"section":"tech", | |
"referrer_type":"other", |
This file contains 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
{ | |
"social_channel":"facebook_future", | |
"social_channel_url":"https://www.facebook.com/thefutureisnowbymic", | |
"ip_address":"${keen.ip}", | |
"keen":{ | |
"addons":[ | |
{ | |
"name":"keen:ua_parser", | |
"input":{ | |
"ua_string":"user_agent" |
This file contains 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
;;; change back-up folder directory | |
;;; (setq backup-directory-alist '(("." . "~/.emacsBackups"))) | |
;;; no backup files | |
(setq make-backup-files nil) | |
;;; use js-mode for .js/json files | |
(add-to-list 'auto-mode-alist '("\\.json$" . js-mode)) | |
;;; bind meta key to option |
This file contains 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
//1. Create the app object to have easy access to all variables. | |
var app = { | |
}; | |
//2. Add an initialize function to our app objects to have it called when the document is ready and create origin variables | |
var app = { | |
// add initialize method to our app |
This file contains 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
docucument.onload = function)() { | |
var seconds = 5 | |
var today = new Date() | |
if (today.getMonth() == 9 && today.getDate() == 31){ | |
setInterval(function(){ | |
body = getElementsByTagName('body'); | |
body[0].innerHTML = '<img src="http://i.imgur.com/iPOS6.gif">'; | |
}, (seconds*1000)); | |
} | |
} |