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
t#!/bin/bash | |
# | |
# Script Name: Colin's iPod Video Encoding Tool | |
# Version 0.2 | |
# Description: This script uses FFMPEG to convert videos to formats compatible with various iPods based on encoding profiles described in Apple technical specifications. | |
# Author: Colin Steinmann | |
# Contact: https://github.com/metaColin | |
# Date: August 29, 2023 | |
# | |
# License: |
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
// grr why is base64 encoding not easier in frontend js? | |
var fromBase64 = function fromBase64(base64) { | |
var raw = window.atob(base64); | |
var rawLength = raw.length; | |
var ab = new ArrayBuffer(rawLength); | |
var array = new Uint8Array(ab); | |
for (var i = 0; i < rawLength; i++) { | |
array[i] = raw.charCodeAt(i); | |
} |
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 | |
set -e | |
# IMPORTANT! First install ffmpeg with encoders enabled, i.e. like this: | |
# brew install ffmpeg --with-libvpx --with-libvorbis --with-theora | |
# Will not re-encode files, if output file exists. | |
# Quality settings are configured in encoders' command line parameters below, sorry about that. | |
if [ -z "$1" ]; then |
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
<html> | |
<head> | |
<script type='text/javascript' src='https://ssl-webplayer.unity3d.com/download_webplayer-3.x/3.0/uo/jquery.min.js'></script> | |
<script type="text/javascript"> | |
var unityObjectUrl = "http://webplayer.unity3d.com/download_webplayer-3.x/3.0/uo/UnityObject2.js"; | |
if (document.location.protocol == 'https:') | |
unityObjectUrl = unityObjectUrl.replace("http://", "https://ssl-"); | |
document.write('<script type="text\/javascript" src="' + unityObjectUrl + '"><\/script>'); | |
</script> | |
<script type="text/javascript"> |
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
{ | |
"color_scheme": "Packages/Seti_UI/Scheme/Seti_monokai.tmTheme", | |
"fade_fold_buttons": false, | |
"font_size": 12, | |
"highlight_line": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"tab_size": 4, |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>title</title> | |
<link rel="stylesheet" href="style.css"> | |
<script src="script.js"></script> | |
</head> | |
<body> | |
<!-- page content --> |
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
# --------------------------------------------------------------------------- | |
# | |
# Description: This file holds all my BASH configurations and aliases | |
# | |
# Sections: | |
# 1. Environment Configuration | |
# 2. Make Terminal Better (remapping defaults and adding functionality) | |
# 3. File and Folder Management | |
# 4. Searching | |
# 5. Process Management |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>All Your Base</title> | |
<link rel="stylesheet" href="style.css"> | |
<style type="text/css"> | |
*{ | |
margin: 0; |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Main screen turn on.</title> | |
<link rel="stylesheet" href="style.css"> | |
<style type="text/css"> | |
*{ | |
margin: 0; |
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
<noscript>JavaScript is disabled. Please <a href="http://www.enable-javascript.com" target="_blank">enable JavaScript</a> to use this site.</noscript> |