I’ve stopped updating this a while ago because some people made a proper respository with a few necessary fixes and changes. Just get this version from now on: https://github.com/Infiziert90/getnative
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 hexchat | |
__module_name__ = 'Twitch' | |
__module_author__ = 'TingPing, frumpy4, StepS' | |
__module_version__ = '6.8' | |
__module_description__ = 'Better integration with Twitch.tv' | |
# Commands from http://help.twitch.tv/customer/portal/articles/659095-chat-moderation-commands | |
# Enable the "commands" and "membership" caps for the best effect | |
# See https://github.com/justintv/Twitch-API/blob/master/chat/capabilities.md for an up-to-date list. |
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
export script_name = "Count Layout Lines" | |
export script_description = "Counts the number of layout lines produced on the canvas per subtitle line." | |
export script_version = "0.1.0" | |
export script_author = "line0" | |
export script_namespace = "l0.CountLayoutLines" | |
DependencyControl = require "l0.DependencyControl" | |
depRec = DependencyControl { | |
feed: "https://raw.githubusercontent.com/TypesettingTools/line0-Aegisub-Scripts/master/DependencyControl.json", |
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: discord-bot-bridge.pl | |
# Author: carstene1ns < dev f4ke de > | |
# Date: 2017-08-04 | |
# License: This code is put in the public domain. | |
use strict; | |
use warnings; | |
use utf8; | |
use v5.26.0; | |
use HexChat; |
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
sampler s0 : register(s0); | |
#define const_1 ( 16.0 / 235.0) | |
#define const_2 (235.0 / 219.0) | |
float4 main(float2 tex : TEXCOORD0) : COLOR | |
{ | |
// original pixel | |
float4 c0 = tex2D(s0, tex); |
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 | |
# Short script that loads a Trackma anime list and converts it | |
# to a MyAnimeList XML file. This way you can import your list | |
# in sites that support this format. | |
# | |
# Usage: | |
# ./trackma_export.py ~/.trackma/<user>.mal/anime.list | |
# | |
# It saves it as mal.xml in the working directory. |
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
""" | |
File Strip. | |
Licensed under MIT | |
Copyright (c) 2012 - 2019 Isaac Muse <[email protected]> | |
""" | |
import re | |
LINE_PRESERVE = re.compile(r"\r?\n", re.MULTILINE) | |
JSON_COMMENTS_PATTERN = re.compile( |
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
-- autosave.lua | |
-- | |
-- Periodically saves "watch later" data during playback, rather than only saving on quit. | |
-- This lets you easily recover your position in the case of an ungraceful shutdown of mpv (crash, power failure, etc.). | |
-- | |
-- You can configure the save period by creating a "lua-settings" directory inside your mpv configuration directory. | |
-- Inside the "lua-settings" directory, create a file named "autosave.conf". | |
-- The save period can be set like so: | |
-- | |
-- save_period=60 |
OlderNewer