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
#!/bin/bash | |
sudo pkill -f Backblaze | |
# /Library/Backblaze.bzpkg/bzfilelist -urgent_refresh_all | |
# /Applications/Backblaze.app/Contents/MacOS/bzserv | |
# /Library/Backblaze.bzpkg/bzbmenu.app/Contents/MacOS/bzbmenu | |
sudo launchctl unload /Library/LaunchDaemons/com.backblaze.bzserv.plist | |
sudo rm /Library/LaunchDaemons/com.backblaze.bzserv.plist | |
launchctl unload /Users/morpheous/Library/LaunchAgents/com.backblaze.bzbmenu.plist | |
sudo rm /Users/morpheous/Library/LaunchAgents/com.backblaze.bzbmenu.plist |
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
#!/bin/bash | |
/Applications/Zotero.app/Contents/MacOS/zotero -P |
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 python3 | |
import sys | |
import json | |
# pip install google-api-python-client | |
from googleapiclient.discovery import build | |
from pprint import pprint | |
import isodate | |
api_service_name = "youtube" | |
api_version = "v3" |
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 python3 | |
import time | |
import os | |
import sys | |
import signal | |
from pprint import pprint | |
from box import Box | |
import datetime | |
import uuid | |
import jwt |
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 requests | |
from pprint import pprint | |
import json | |
import csv | |
import folium | |
import time | |
from folium.plugins import MarkerCluster | |
API_KEY = 'asdf' |
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 python3 | |
from FlightRadar24 import FlightRadar24API | |
from flydenity import Parser as FlydenityParser | |
import airportsdata | |
from bs4 import BeautifulSoup | |
import requests | |
from pprint import pprint | |
import time | |
import math | |
import folium |
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 sounddevice as sd | |
import numpy as np | |
import tensorflow as tf | |
import queue | |
from collections import defaultdict , deque | |
import time | |
# https://storage.googleapis.com/mediapipe-models/audio_classifier/yamnet/float32/latest/yamnet.tflite | |
# https://github.com/tensorflow/models/blob/master/research/audioset/yamnet/yamnet.py | |
# https://research.google.com/audioset/ontology/index.html |
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 numpy as np | |
from pprint import pprint | |
import librosa | |
import tensorflow as tf | |
# https://storage.googleapis.com/mediapipe-models/audio_classifier/yamnet/float32/latest/yamnet.tflite | |
# https://github.com/tensorflow/models/blob/master/research/audioset/yamnet/yamnet.py | |
# https://research.google.com/audioset/ontology/index.html | |
# https://storage.googleapis.com/mediapipe-tasks/audio_classifier/yamnet_label_list.txt |
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 python3 | |
import sys | |
import time | |
import json | |
import requests | |
from pprint import pprint | |
import mimetypes | |
from tqdm import tqdm | |
from concurrent.futures import ThreadPoolExecutor | |
from box import Box |
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
package main | |
import ( | |
"fmt" | |
"math" | |
"github.com/gordonklaus/portaudio" | |
) | |
const sample_rate = 44100 | |
const buffer_size = 64 // Number of samples per buffer |
NewerOlder