Skip to content

Instantly share code, notes, and snippets.

View CompewterTutor's full-sized avatar
:shipit:

Compewter Tutor CompewterTutor

:shipit:
View GitHub Profile
@CompewterTutor
CompewterTutor / SMBDIS.ASM
Created July 3, 2018 12:44 — forked from 1wErt3r/SMBDIS.ASM
A Comprehensive Super Mario Bros. Disassembly
;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
@CompewterTutor
CompewterTutor / .vimrc
Last active March 22, 2019 21:21
vimrc temp file
" call plug#begin()
" Make sure you use single quotes
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
@CompewterTutor
CompewterTutor / app.js
Created January 28, 2019 19:51
laura disney trivia
// (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 = [];
@CompewterTutor
CompewterTutor / app.js
Created February 12, 2019 18:25
laura
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({
@CompewterTutor
CompewterTutor / liri.js
Created February 28, 2019 23:05
laura2
require("dotenv").config();
var keys = require("./keys.js");
var Spotify = require('node-spotify-api');
var spotify = new Spotify(keys.spotify);
const fs = require('fs');
const moment = require('moment');
const axios = require('axios');
var base_omdb_url = "http://www.omdbapi.com/?apikey=" + keys.omdb.api_key + "&";
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
{{!-- <link rel="icon" href="../../../../favicon.ico"> --}}
@CompewterTutor
CompewterTutor / App.js
Created May 16, 2019 05:27 — forked from Thomas-Smyth/App.js
Reactstrap App.js Example for create-react-app
import React, { Component } from 'react';
import {
Collapse,
Navbar,
NavbarToggler,
NavbarBrand,
Nav,
NavItem,
NavLink,
Container,
@CompewterTutor
CompewterTutor / App.js
Created June 1, 2019 17:30
file changes (client/src/App.js client/src/components/Carousel.js client/src/components/pages/home.js
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import { Link } from 'react-router-dom';
import axios from 'axios';
import logo from './logo.svg';
import './App.css';
import './components/pages/home';
import HomePage from './components/pages/home';
@CompewterTutor
CompewterTutor / gist:40166088069aa868d900be16cd4abfbb
Created June 18, 2020 23:24 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: ๐Ÿ˜„ :smile: ๐Ÿ˜† :laughing:
๐Ÿ˜Š :blush: ๐Ÿ˜ƒ :smiley: โ˜บ๏ธ :relaxed:
๐Ÿ˜ :smirk: ๐Ÿ˜ :heart_eyes: ๐Ÿ˜˜ :kissing_heart:
๐Ÿ˜š :kissing_closed_eyes: ๐Ÿ˜ณ :flushed: ๐Ÿ˜Œ :relieved:
๐Ÿ˜† :satisfied: ๐Ÿ˜ :grin: ๐Ÿ˜‰ :wink:
๐Ÿ˜œ :stuck_out_tongue_winking_eye: ๐Ÿ˜ :stuck_out_tongue_closed_eyes: ๐Ÿ˜€ :grinning:
๐Ÿ˜— :kissing: ๐Ÿ˜™ :kissing_smiling_eyes: ๐Ÿ˜› :stuck_out_tongue:
@CompewterTutor
CompewterTutor / rsync_backup.py
Created July 8, 2020 12:02 — forked from seebk/rsync_backup.py
Python rsync backup script
#!/usr/bin/python3
#######################################################
# Python rsync Backup script
# Sebastian Kraft, 24.06.2013
#
#######################################################
#-----------------------------------------------------
# Config