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
; This script is used to auto-generate the ranglist of correctly guessed anime. | |
; Usage: https://akatsuki-subs.net/forum/thread-1151.html | |
; Gist: https://gist.github.com/2367207 | |
; | |
; (c) FichteFoll, 2012-04-12 | |
#include <Array.au3> | |
#include <String.au3> | |
#include "LibCsv2_mod.au3" | |
;~ #include <_CSVLib_V1.3.au3> |
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
{ | |
"name": "FichteMarkDown", | |
"scopeName": "text.fmd", | |
"fileTypes": ["fmd"], | |
"patterns": [ | |
{ | |
"include": "#inline" | |
}, | |
{ | |
"include": "#list-heading" |
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
''' | |
@author Josh Bjornson | |
This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License. | |
To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/ | |
or send a letter to Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA. | |
''' | |
import sublime | |
import sublime_plugin | |
import os |
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
from sublime import Region | |
import sublime_plugin | |
""" | |
This plugin for Sublime Text 2 searches for tables with a style like: | |
| I'm a header | I'm second|lolol| | |
|:-|-:|::| | |
| I'm a cell | yeah, you bet || |
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
# A list of dicts will be run over every file or directory in the "current" directory. | |
# TODO: | |
# - 'directory' option: Use specified dir as "parent" | |
# - 'subdirs' option: Scan through subdirs (don't play with self-refering Junctions, if that's even possible) | |
import os | |
import re | |
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
/* | |
Adjustments for the Add-on "Tree Style Tabbar" and its "sidebar" skin | |
Made for (and with) FireFox 15b thru 31b (Australis) | |
@author FichteFoll | |
*/ | |
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); |
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
--[[ | |
A template script used for Automation 4 karaoke FXes with Aegisub | |
You will want to call `register()` at the end of your script or whenever at least `script_name` is defined. | |
Functions to be defined: | |
* init(subs, meta, styles) [optional] | |
Called after all possibly existing previous fx lines have been deleted and the karaoke lines restored. | |
Do whatever you like in here. Won't be called if `init` is nil. |
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 | |
# This script extracts all font attachments of a Matroska file | |
# Requirements: mkvtoolnix executables | |
import subprocess | |
import re | |
import os.path | |
from collections import namedtuple |
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
import sublime, sublime_plugin | |
import os, sys | |
import thread | |
import subprocess | |
import functools | |
import time | |
class ProcessListener(object): | |
def on_data(self, proc, data): | |
pass |
OlderNewer