View index.js
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
const puppeteer = require("puppeteer"); | |
const fs = require("fs"); | |
const request = require("request"); | |
let scrapeUrls = async () => { | |
const browser = await puppeteer.launch({ headless: false }); | |
const page = await browser.newPage(); | |
page.setViewport({ width: 1600, height: 1200 }); | |
await page.goto('https://www.artic.edu/collection?is_public_domain=1') |
View solr.rb
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
class Solr < Formula | |
desc "Enterprise search platform from the Apache Lucene project" | |
homepage "https://lucene.apache.org/solr/" | |
url "https://www.apache.org/dyn/closer.cgi?path=lucene/solr/6.0.0/solr-6.0.0.tgz" | |
mirror "https://archive.apache.org/dist/lucene/solr/6.0.0/solr-6.0.0.tgz" | |
sha256 "abf5ae9f16a752ddbb2184c97ce62249a0d9f28642c62fa3333adc1c27916672" | |
bottle :unneeded | |
depends_on :java |
View .zpreztorc
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
# | |
# Sets Prezto options. | |
# | |
# Authors: | |
# Drew Lustro <drewlustro@gmail.com> | |
# Sorin Ionescu <sorin.ionescu@gmail.com> | |
# | |
# | |
# General |
View batch-flac-mp3-convert.sh
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
#!/usr/bin/env bash | |
find . -type f -iname '*.flac' -print0 | xargs -0 -n 1 -P 8 -I {} sox {} -C 320 -V2 {}.mp3 |
View Remapkey.bat
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
Remapkey.exe |
View part-of-artist.js
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
componentDidMount: function () { | |
var that = this; | |
$.ajax({ | |
url: '/api/artists', | |
type: 'GET', | |
success: function (result) { | |
that.setState({ | |
artists: result | |
}); |
View svn-repo-restore.log
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
~/dev-local/makeshift-online/site/live | |
☻ svn info master a685ae7 ✗ | |
svn: E155036: Please see the 'svn upgrade' command | |
svn: E155036: The working copy at '/Users/drew/dev-local/makeshift-online/site/live' | |
is too old (format 8) to work with client version '1.9.4 (r1740329)' (expects format 31). You need to upgrade the working copy first. | |
~/dev-local/makeshift-online/site/live | |
☻ svn upgrade master a685ae7 ✗ | |
svn: E155019: Can't upgrade '/Users/drew/dev-local/makeshift-online/site/live' as it is not a working copy root, the root is '/Users/drew/dev-local/makeshift-online/site' |
View raspi-util-functions.sh
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
# subset of functions.sh from https://github.com/drewlustro/dotfiles | |
# put in your .bash_profile or .zshrc | |
function toolbelt-raspi-image-dump() { | |
local now=$(date +"%Y-%m-%d__%H-%M-%S"); | |
local host=${2:="raspi"}; | |
local diskNumber=${1:--1} | |
local bs="1M" | |
local cmd="sudo dd if=/dev/rdisk$1 bs=$bs | gzip > ~/Desktop/$host-$now.pi.gz" | |
local usage="Usage: $0 [sdCardDiskN] [hostname='raspi']" |
View lowercase-files.sh
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
# http://stackoverflow.com/questions/7787029/how-do-i-rename-all-files-to-lowercase | |
for f in *; do mv "$f" "$f.tmp"; mv "$f.tmp" "`echo $f | tr "[:upper:]" "[:lower:]"`"; done |
View install.sh
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
# sources | |
# http://www.scipy.org/install.html | |
# http://sohliloquies.blogspot.ru/2015/07/setting-up-deep-dream-google-researchs.html | |
# https://github.com/BVLC/caffe/wiki/Ubuntu-14.04-VirtualBox-VM | |
# ~2gb dependencies | |
mkdir deep-dream && cd deep-dream | |
sudo apt-get install -y subversion cmake |
NewerOlder