[:np] Hello, my name is Perfect Paul and I’m here to introduce you to the
DECtalk speech synthesizer. In particular, the DECtalk DTC01 released in
1984. The DECtalk had revolutionary features for computer speech, but don’t
just take my word for it.
[:nb] I can agree with that. Hi, my name is Beautiful Betty and my voice
represents just one of the many ways the DECtalk is a flexible advanced
system. Today we’re going to take an in depth look at the DTC01 device
itself, and how it raised the bar for speech synthesis in ways that are
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
// By zer0xoms a tool for viewing Xebec MFM HDD transition data | |
// Written on Windows, sorry. :D | |
#include "stdlib.h" | |
#include "string.h" | |
#include "stdio.h" | |
#include "math.h" |
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
{ | |
"custom-styles": { | |
}, | |
"editor-colors": { | |
"BackgroundColor": "#090c1e", | |
"BracketMatching": "#4400aa", | |
"CodeFolding": "#002b26", | |
"CurrentLine": "#0c1130", | |
"CurrentLineNumber": "#d33d3d", | |
"IconBorder": "#060814", |
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/env bash | |
# This script works by using pdftotext and pdfgrep along with standard grep to make a faster PDF searching tool. | |
# PDF searching is slow, searching through plain text is fast. This tool extracts all plain text and stores it seperately. | |
# When a search is done it is checked against the plain text first where a list of matching files are stored. | |
# It then searches only the matching PDFs to get the page numbers and print the snipit of data. | |
# TODO - Add loose matching for bad OCR by doing multiple passes replacing visually similar characters and putting white space in query. |
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 | |
# Usage | |
# mderive source (TXT of dir paths or dir) destination | |
# Conversion Format | |
ext="mp3" | |
args="-c:a mp3 -b:a 320k" | |
over="-y" # Overwrite (-n/-y) |
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
fileType,{VCS video presets} | |
fileVersion,a | |
presetCount,1 | |
metadataCount,4 | |
name,{508x399 Hydro Thunder} | |
activatedByResolution,1,508,399 | |
activatedByRefreshRate,0,{Equals},60 | |
activatedByShortcut,0,ctrl+f1 | |
videoParameterCount,13 | |
verticalPosition,31 |
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/python3 | |
import serial | |
import sys | |
# DECtalk output over serial with command resetting | |
ser = serial.Serial('/dev/ttyUSB0',9600,timeout=1) # open serial port with 9600 8N1 defaults | |
print(ser.name) # check which port was really used | |
for line in sys.stdin: |
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 | |
counter=0 | |
files=(*) | |
count=${#files[@]} | |
dir=0 | |
for file in * | |
do | |
echo "File: `printf %03d $counter`-$file" |
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 | |
floppy="$1" | |
# Mount image and extract contents to folder | |
extract() { | |
file=$1 | |
echo "Mounting floppy: $file" | |
sudo mount -o loop $file /tmp/floppy | |
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 | |
echo "Youtube Member List HTML Parser" | |
yt_list="$(date --iso-8601)_yt-members.csv" | |
# Read HTML from file by line | |
while read -r line <&9 | |
do |
NewerOlder