Skip to content

Instantly share code, notes, and snippets.

test
function unhash(target){
var letters = "acdegilmnoprstuw";
var str = "";
var max = letters.length;
while(target > 7) {
var mod = target % 37;
if (mod > max)
throw new Exception("This isn't a valid hash!");
str = letters[mod] + str;
test
test
2014-11-30 17:46:18 -0600
./configure
--disable-debug
--prefix=/usr/local/Cellar/mkvtoolnix/7.3.0
--without-curl
--with-boost=/usr/local/opt/boost
--with-extra-includes=/usr/local/opt/libogg/include;/usr/local/opt/libvorbis/include;/usr/local/opt/wxmac/include
--with-extra-libs=/usr/local/opt/libogg/lib;/usr/local/opt/libvorbis/lib;/usr/local/opt/wxmac/lib
--enable-gui
2014-11-30 17:46:41 -0600
./configure
--disable-debug
--prefix=/usr/local/Cellar/samba/3.6.23
--with-configdir=/usr/local/Cellar/samba/3.6.23/etc
--without-ldap
--without-krb5
SAMBA VERSION: 3.6.23

I think there are a couple tags that could reasonably apply to http://sakuga.yshi.org/post/show/10423/animated-artist_unknown-smears-sora_no_woto that don't exist right now:

"camera_movement" or "camera_rotation" or similar, for a cut where a significant amount of additional keyframing is done in order to show the virtual "camera" moving in some way other than a simple vertical or horizontal translation. These kinds cuts are often done in CG these days, but when they're not they can be really impressive, and I don't think it applies to a large fraction of current material.

"on_ones", for a cut where the foreground/character animation has an individual frame drawn for each frame of video, rather than duplicating frames. Sure, this is commonly seen for quick movements that only last a few frames, but entire cuts done on ones are abnormal, even for sakugabooru content.

Thoughts?

@rcombs
rcombs / gist:904e423a3d343e76ed0b
Created November 4, 2014 03:27
ASSv5 Font Families

Font Families

Format:

Family: FamilyName,PSName,Weight,Bold,Italic

Example:

Family: Helvetica,Helvetica,400,-,-
[00:24:17] *** Joins: cntrational ([email protected])
[02:05:32] *** Quits: cntrational ([email protected]) (Quit: o/)
[02:14:35] *** Quits: nemo ([email protected]) (Ping timeout: 182 seconds)
[02:16:02] *** Joins: nemo ([email protected])
[02:16:03] *** ChanServ sets mode: +h nemo
[03:48:35] *** Joins: CO2 ([email protected])
[04:17:41] * CO2 charges up the theremin for some good doctor who themes
[04:21:49] *** Joins: flicky ([email protected])
[04:23:25] <Kliment> Your theremin needs charging?
[04:27:37] <CO2> yeah, it's a 300kV one
module libjass {
export class ASSStream {
public ASS: ASS;
private buffer: string;
private state: boolean;
constructor() {
this.state = 0;
this.buffer = "";
}
append(raw: string): boolean {