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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Ocean Animation</title> | |
<style> | |
.overlay { |
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
# This file was generated by Tor; if you edit it, comments will not be preserved | |
# The old torrc file was renamed to torrc.orig.1, and Tor will ignore it | |
ClientOnionAuthDir D:\Program Files\Tor Browser\Browser\TorBrowser\Data\Tor\onion-auth | |
DataDirectory D:\Program Files\Tor Browser\Browser\TorBrowser\Data\Tor | |
GeoIPFile D:\Program Files\Tor Browser\Browser\TorBrowser\Data\Tor\geoip | |
GeoIPv6File D:\Program Files\Tor Browser\Browser\TorBrowser\Data\Tor\geoip6 | |
# SafeSocks 1 # Apparently only needed for Socks4 proxies -- Tor is using Socks5 | |
TestSocks 1 |
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
################################################################ | |
# Author: Jamil Voss (2023) | |
# MIT License (free to use open-source license) | |
# Language: Python | |
# About: | |
# Python script to generate random pseudo-language paragraph. | |
# Uses arrays of vowel and consonant phonemes and | |
# a normally distributed random index generator | |
# to concatenate phonemes. | |
# |
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
// This is a function that performs the discrete fourier transform | |
// on an input array and returns a magnitude from 0-1 indicating | |
// detection strength (1 being prominent and 0 being silent) | |
// Additionally, it's also implemented here as an example | |
#include <iostream> | |
#include <math.h> | |
#define _USE_MATH_DEFINES | |
using namespace std; |
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
:: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: | |
:: windowsSleepTimer.py is in a folder called deps in this implementation | |
:: this folder is in the same folder as windowsSleepTimer.py | |
:: | |
:: Usage: | |
:: To control time until audio silence: | |
:: > sleepTimer.bat <minutesUntilSilence> | |
:: To use the default setting: | |
:: > sleepTimer.bat | |
:: Example: |
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
# This script mutes your windows audio after a certain amount of entered time | |
# Requires PyCaw (>pip install pycaw) | |
# Usage: | |
# > python sleepTimer.py <minutes until silence> | |
import sys | |
if(len(sys.argv)<2): | |
exit("Error. No countdown time provided") |
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
// This is a sleep timer for Pandora. To work this, just copy this entire file to notepad, | |
// edit the number at the bottom where it says, "Sleep time in minutes," putting | |
// how many minutes you'd like, then copy all of that, go to Pandora, | |
// press F12, then in the box near the bottom of the window that shows up, paste the code and | |
// press enter. | |
// This is useful if you need a sleep timer for Pandora. | |
// If this stops working, or if you'd like a sleep timer on a different site, | |
// try to find something like a pause or mute button, then right-click it, | |
// select "inspect" (in Chrome -- not sure what it says in other browsers) |
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
# May need to run multiple times to settle dependencies | |
cordova plugin ls | grep -o "^\S*" | while read i;do cordova plugin rm $i; done; |
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
# Drawn from http://stackoverflow.com/a/15649857/2016196 | |
# To make a new table | |
CREATE TABLE YourNewTable | |
SELECT * | |
FROM mygrist_tables | |
WHERE suic_att>=5 AND gender='M'; | |
# To copy to an existing table | |
INSERT INTO YourNewTable |
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
print contents of .css: | |
find /home/user/appfolder/ | grep '\.css' | while read -r i; do cat $i; done | |
print contents of .js: | |
find /home/user/appfolder/ | grep '\.js' | while read -r i; do cat $i; done | |
print contents of .js or .css:?? | |
find /home/user/appfolder/ | grep '\.c{0,1}[sj]s$' | while read -r i; do cat $i; done | |
css: |
NewerOlder