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
| [HighlighterSetCollection] | |
| version=2 | |
| active_sets=026606ed58454b5998431e0023a381e6 | |
| sets\1\HighlighterSet\version=3 | |
| sets\1\HighlighterSet\name=Darktide Log | |
| sets\1\HighlighterSet\id=026606ed58454b5998431e0023a381e6 | |
| sets\1\HighlighterSet\highlighters\1\regexp=^\\d{2}:\\d{2}:\\d{2}.\\d{3} | |
| sets\1\HighlighterSet\highlighters\1\ignore_case=false | |
| sets\1\HighlighterSet\highlighters\1\match_only=true | |
| sets\1\HighlighterSet\highlighters\1\use_regex=true |
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
| { | |
| "request": [ | |
| { | |
| "enable": true, | |
| "name": "Ludum Dare", | |
| "ruleType": "redirect", | |
| "matchType": "regexp", | |
| "pattern": "^https?://www\\.ludumdare\\.com/(.*)$", | |
| "exclude": "", | |
| "isFunction": false, |
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
| euukraine visafree // unlock secret map | |
| // -noforcemparms // fix mouse acc |
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
| #Persistent | |
| #InstallKeybdHook | |
| #SingleInstance force | |
| SetWorkingDir %A_ScriptDir% | |
| CoordMode, Mouse, Screen | |
| SetTitleMatchMode, 3 | |
| DetectHiddenWindows, On | |
| SetTimer, NoExtWarning, 50 |
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
| # -*- coding: utf-8 -*- | |
| # LICENSE: GPLv3 | |
| from __future__ import unicode_literals | |
| from collections import OrderedDict | |
| import decimal | |
| from decimal import Decimal as D | |
| from decimal import ROUND_DOWN | |
| import re | |
| import sys | |
| import traceback |
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
| Param([string]$BzipDir = '.') | |
| Get-ChildItem -Path $BzipDir -File -Recurse | ForEach-Object ($_) { | |
| $File = $_.FullName | |
| & '.\bin\7z.exe' u -tbzip2 "$File.bz2" "$File" | |
| } |
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
| set noautofocus | |
| set nochangelog | |
| set smoothscroll | |
| set defaultnewtabpage | |
| let previousmatchpattern="((?!last)((?:上|前)一?(?:页|章|頁)|(?:较新|較新)文章|prev(ious)?|newer|back|«|less|<|‹| )+)" | |
| let nextmatchpattern="((?!first)((?:下|后)一?(?:页|章|頁)|(?:早期|較早)文章|(?:加载|加載|载入|載入|展开|展開)(?:更多|全文)|next|older|more|>|›|»|forward| )+)" | |
| let mapleader = "," | |
| let searchengine bing = "http://www.bing.com/search?q=%s" |