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
// ==UserScript== | |
// @name Egg Napper | |
// @namespace idioticdev.com -> updated by timothycarambat | |
// @include http*://dragcave.net/locations/* | |
// @grant none | |
// @version 1 | |
// ==/UserScript== | |
var SCROLL = true; | |
var ONLY_RARES = false; |
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
// This is just a slight re-work of the particle emitter example found in P5.js docs. | |
var system; | |
function setup() { | |
createCanvas(720, 400); | |
system = new ParticleSystem(createVector(width/2, 20)); | |
} | |
function draw() { |
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
<html> | |
<head> | |
<title>Great Job, Humanity</title> | |
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet"> | |
<style > | |
body { | |
background-color: #171616; | |
height: 100%; | |
} | |
.container { |
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
import pandas as pd | |
import pandas_datareader.data as web | |
from pandas_datareader.nasdaq_trader import get_nasdaq_symbols | |
from datetime import datetime | |
symbols = get_nasdaq_symbols() | |
start = datetime(2018, 5, 1) | |
tickers = ['GM','F','IBM','IMMVD','WRX','GOOGL'] |
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
## You need to host this folder on a webserver like NODE, NGINX, or Apache (I was using XAMPP on windows). You need to make the request for the | |
## song file to appear as though it comes from a http, https. Otherwise chrome wont allow you to play the file. | |
## After this is setup restart the server and go to localhost:8080. Then youre watching it play out | |
<VirtualHost *:8080> | |
ServerName kmlviewer.test | |
DocumentRoot "C:/xampp/htdocs/musiclookslike" | |
<Directory "C:/xampp/htdocs/musiclookslike"> | |
AllowOverride All | |
Order Allow,Deny | |
Allow from all |
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
# This file will write to console text that contains the pronunciation of words in | |
# an array. It doesnt output as a file, but with about three lines it could. | |
import urllib2 | |
from bs4 import BeautifulSoup | |
#establish source URL | |
base_url = "http://www.dictionary.com/browse/%s?s=t" | |
#Strip brackts from pronunciation returned | |
strip_brackets = False | |
#establish words to find |
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
Public Function ASIN_LOOKUP(asin As String) As String | |
Set objIE = CreateObject("InternetExplorer.Application") | |
objIE.Top = 0 | |
objIE.Left = 0 | |
objIE.Width = 800 | |
objIE.Height = 600 | |
objIE.Visible = False | |
NewerOlder