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
| @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
| #main-window[chromemargin][sizemode="normal"]:not([inFullscreen]) | |
| #navigator-toolbox { | |
| overflow: visible; | |
| } | |
| #main-window[chromemargin][sizemode="normal"]:not([inFullscreen]) | |
| #nav-bar { |
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
| @purpose "This is just an example file to show how you can use this tool" | |
| // This at-rule is required | |
| @name "Example SCSScheme" | |
| // FLAGS | |
| $punctuation = true | |
| // The color palette (from http://serennu.com/colour/colourcalculator.php) | |
| // Don't try these at home! |
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_plugin | |
| # Override default command here that is restricted onto real views | |
| # (and also does not modify selection) | |
| class EnsureNewlineAtEofCommand(sublime_plugin.TextCommand): | |
| def insert_nosel(self, view, edit, p, text): | |
| """Insert text without changing selection. Use with care. | |
| """ |
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 | |
| import math | |
| import json | |
| # In this entire file, all levels will be referred to from 1 to 18 (and not 0!) | |
| def median(lst): | |
| sortedLst = sorted(lst) |
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_plugin | |
| import time | |
| import threading | |
| from functools import partial | |
| from collections import namedtuple | |
| class TimeoutThread(threading.Thread): |
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 | |
| from functools import partial | |
| function_names = ('input', 'commands', 'result_regex', 'indexing') | |
| # Cleanup | |
| if hasattr(sublime, 'logging_unbootstrap'): | |
| sublime.logging_unbootstrap() | |
| # Assure this exists |
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
| <ul id="linkbox" class="size32"> | |
| <li><a class="rss" href="http://fichtefoll.soup.io/rss"></a></li> | |
| <li><a class="lastfm" href="http://last.fm/user/fichtefoll"></a></li> | |
| <li><a class="twitter" href="http://twitter.com/fichtefoll"></a></li> | |
| <!-- <li><a class="wordpress" href="http://fichtefoll.akatsuki-subs.net"></a></li> --> | |
| <li><a class="youtube" href="http://youtube.com/yisery"></a></li> | |
| </ul> | |
| <p> | |
| Just a random collection of awesomeness or what I appreciate as awesome ;) | |
| <br /> |
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
| ; 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> |
OlderNewer