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
""" | |
Converts a large CSV into SQL, can process some of the smaller chunks | |
Based on https://plot.ly/python/big-data-analytics-with-pandas-and-sqlite/ | |
Original code probably from https://github.com/chriddyp | |
""" | |
import pandas | |
from sqlalchemy import create_engine | |
import tqdm |
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
/** | |
* To apply the theme: | |
* 1) Open dev tools with CTRL + SHIFT + I | |
* 2) Go to the console | |
* 3) Paste the following code | |
* Note: You will have to do this again whenever Github Desktop updates | |
*/ | |
var html_file = require("path").join(process.resourcesPath, "app/index.html"); | |
var html = require("fs").readFileSync(html_file, "utf8"); | |
var link_to_inject = '<link href="https://cdn.rawgit.com/ObserverOfTime/07e862ec7240d995e672818f43513bc7/raw/06c86e69c94935962b07b5302c195f7d6465eacd/desktop-dark.css" rel="stylesheet">'; |
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
/* | |
* author: Tres Finocchiaro, updated by Alethea Rose | |
* date: 2017-07-10 | |
* license: Public Domain; Use as you wish. | |
* source: http://qz.io | |
*/ | |
const cmds = { | |
FO: 2, | |
PW: null, |