It's not too often, but every once in a while music artists may choose to release the official stems or instrumentals of their songs. I think these are really cool to explore, so I thought I'd compile a list of instances where artists I like have done this.
You will need:
- A vector font file (TTF, OTF, whatever -- as long as FontForge supports it)
- FontForge
- BitsNPicas (which requires Java)
- Open your TTF (or whatever) in FontForge.
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
| #!/usr/bin/env python3 | |
| # | |
| # MIT License | |
| # | |
| # Copyright 2020 Hayden Schiff | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to deal | |
| # in the Software without restriction, including without limitation the rights | |
| # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
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
| #! /usr/bin/env python3 | |
| from lxml import etree | |
| import requests | |
| import argparse | |
| import csv | |
| from pprint import pprint | |
| import time | |
| import urllib3 | |
| urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) |
Docs (ffmpeg manual - Codecs - Filters) - Wiki
See https://trac.ffmpeg.org/wiki/Concatenate
To cut a video from 00:11:22 to 00:33:44:
ffmpeg -i INFILE -ss 00:11:22 -to 00:33:44 -c copy outfile
Some of the best open directories I know of:
- the-eye.eu 140TB with data of all types
- doc.lagout.org 450GB of documentation for computer science, electronics, etc
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
| // ==UserScript== | |
| // @name ArchiveTeam tracker log cleaner | |
| // @namespace https://schiff.io/ | |
| // @version 0.1 | |
| // @description make the log for the AT tracker a little bit easier to read | |
| // @author Hayden Schiff (oxguy3) | |
| // @match http://tracker-test.ddns.net/* | |
| // @match http://tracker.archiveteam.org/* | |
| // @grant none | |
| // ==/UserScript== |
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
| function runParsers() { | |
| var parsers = [ | |
| parseBandcamp, | |
| parseFlickr, | |
| parseSportsEngine, | |
| parseTwitter, | |
| parseWikimedia, | |
| parseYouTube, | |
| ]; |
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
| { | |
| "variables": [], | |
| "info": { | |
| "name": "Humble Bundle Android", | |
| "_postman_id": "4279719d-083a-5656-6524-c00e77975f62", | |
| "description": "", | |
| "schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json" | |
| }, | |
| "item": [ | |
| { |
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
| // ==UserScript== | |
| // @name Dark Horse Downloader | |
| // @namespace http://schiff.io/ | |
| // @version 0.1 | |
| // @description Download a DRM-free copy of your Dark Horse digital comics. | |
| // @author Hayden Schiff (oxguy3) | |
| // @match https://digital.darkhorse.com/read/* | |
| // @match https://digital.darkhorse.com/bookshelf* | |
| // @include https://*.cloudfront.net/* | |
| // @grant GM_xmlhttpRequest |
NewerOlder