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
| #NoTrayIcon | |
| #Region ;**** Directives created by AutoIt3Wrapper_GUI **** | |
| #AutoIt3Wrapper_Icon=spotify.ico | |
| #AutoIt3Wrapper_Outfile=MPCHotkey.exe | |
| #AutoIt3Wrapper_Res_requestedExecutionLevel=asInvoker | |
| #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI **** | |
| Const $MPC_EXE = "mpc-hc.exe" | |
| Const $DEFAULT_HOTKEYS[5][2] = [ _ | |
| [4, 0], _ | |
| ["PlayPause", "!e"], _ |
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
| /* | |
| class Duck { | |
| public void quack() { System.out.println("quack"); } | |
| } | |
| interface Quacker { | |
| public void quack(); | |
| } | |
| { |
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
| function newSlider(document, window) { | |
| function start($slider, images, currentImage, interval, fadeInDuration) { | |
| var currentBuffer = 0; | |
| var $buffers = [ | |
| document.createElement("img"), | |
| document.createElement("img") | |
| ]; | |
| for(var i=0; i<$buffers.length; i++) { | |
| $buffers[i].src = images[currentImage]; | |
| $buffers[i].style.position = "absolute"; |
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 requests | |
| import re | |
| import os | |
| pages = ( | |
| 'http://www.radioeins.de/programm/sendungen/modo1619/zwiegespraeche_mit/index.htm/page=0.html', | |
| 'http://www.radioeins.de/programm/sendungen/modo1619/zwiegespraeche_mit/index.htm/page=1.html', | |
| 'http://www.radioeins.de/programm/sendungen/modo1619/zwiegespraeche_mit/index.htm/page=2.html', | |
| 'http://www.radioeins.de/programm/sendungen/modo1619/zwiegespraeche_mit/index.htm/page=3.html', | |
| 'http://www.radioeins.de/programm/sendungen/modo1619/zwiegespraeche_mit/index.htm/page=4.html', |
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
| package main | |
| import ( | |
| "encoding/json" | |
| "errors" | |
| "flag" | |
| "fmt" | |
| "io" | |
| "math/rand" | |
| "net/http" |
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 sys | |
| import os | |
| import pickle | |
| import errno | |
| import random | |
| import codecs | |
| class RenPyArchive: |
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 string | |
| import sys | |
| import re | |
| if __name__ == "__main__": | |
| args = sys.argv[1:] | |
| decode = len(args) >= 2 and "d" == args[0] | |
| if decode: | |
| reDec = re.compile("(\d+)\*([^\d\*]*)") | |
| for s in args[1:]: |
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
| function Queue() { | |
| var queue = []; | |
| var offset = 0; | |
| this.enqueue = function(item) { | |
| queue.push(item); | |
| }; | |
| this.dequeue = function() { | |
| if (queue.length == 0) return undefined; | |
| var item = queue[offset]; | |
| if (++ offset * 2 >= queue.length){ |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <CheatTable CheatEngineTableVersion="19"> | |
| <CheatEntries> | |
| <CheatEntry> | |
| <ID>56</ID> | |
| <Description>"Items (change this to the address of first item)"</Description> | |
| <LastState Value="" RealAddress="00000000"/> | |
| <ShowAsHex>1</ShowAsHex> | |
| <VariableType>Array of byte</VariableType> | |
| <ByteLength>0</ByteLength> |
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
| package main | |
| import ( | |
| "archive/zip" | |
| "encoding/json" | |
| "errors" | |
| "flag" | |
| "fmt" | |
| "io" | |
| "log" |