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 twitter_api_endpoint = "https://api.twitter.com/1.1/"; | |
var twitter_api_key = "5DlnOPnrtv2qBBo2KGlEvDNkt "; | |
var twitter_secret_apikey = "RT5oHsr6qZtdpOy6SGzsZrcFD2BKehX7oq54poIPC4OHJnktXO"; | |
var geo_trending_topics = []; | |
// on click that grabs in the input from the text box when submit is pressed | |
$("#button-override").on("click", function() { | |
var address = $("#input-override"); | |
var queryURL = "http://www.mapquestapi.com/geocoding/v1/address?key=Hh2Y6dWsZuA1C3ZM4fUcz1KEoUUAKHB2&location=" + address; | |
// ajax call of the URL | |
$.ajax({ |
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
// (function() { | |
// function triviaQuiz() { | |
// // need a place to store the HTML output | |
// const output = []; | |
// // for each question... | |
// myQuestions.forEach((currentQuestion, questionNumber) => { | |
// // want to store the list of answer choices | |
// const answers = []; |
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
" call plug#begin() | |
" Make sure you use single quotes | |
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim | |
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
;SMBDIS.ASM - A COMPREHENSIVE SUPER MARIO BROS. DISASSEMBLY | |
;by doppelganger (doppelheathen@gmail.com) | |
;This file is provided for your own use as-is. It will require the character rom data | |
;and an iNES file header to get it to work. | |
;There are so many people I have to thank for this, that taking all the credit for | |
;myself would be an unforgivable act of arrogance. Without their help this would | |
;probably not be possible. So I thank all the peeps in the nesdev scene whose insight into | |
;the 6502 and the NES helped me learn how it works (you guys know who you are, there's no |
NewerOlder