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
<?php | |
echo 'hello world!'; | |
?> |
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 SharedForm() | |
{ | |
this.init(); | |
} | |
SharedForm.prototype = | |
{ | |
container: null, | |
close: null, |
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
<!-- C:\Users\shtrih\Salem\radar.xml --> | |
<radarConfig> | |
<group name="herb" show="true" tooltip="true" color="#ffff00"> | |
<marker match="gfx/terobjs/herbs/lime" text="Lime (Известь)" color="#ffb814" /> | |
<marker match="gfx/terobjs/herbs/flint" text="Flint (Кремень)" color="#aeaece" /> | |
<marker match="gfx/terobjs/herbs/granite" text="Granite (Гранит)" color="#CA6744" /> | |
<marker match="gfx/terobjs/herbs/coarsesalt" text="Coarse Salt (Необработанная соль)" color="#eeeeee" /> | |
<marker match="gfx/terobjs/herbs/autumngrass" text="Autumn Grass (Осенние травы)" color="#bab080" /> | |
<marker match="gfx/terobjs/herbs/seaweed" text="Seaweed (Морские водоросли)" color="#00bd97" /> |
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
// ==UserScript== | |
// @name Logs link grabber | |
// @namespace https://gist.github.com/shtrih/5604907 | |
// @version 0.3 | |
// @description enter something useful | |
// @match http://old.4otaku.org/logs* | |
// @copyright 2013+, shtrih | |
// ==/UserScript== | |
function scriptBody() { |
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
// ==UserScript== | |
// @name Minecraft dynmap translator | |
// @namespace https://gist.github.com/shtrih/ | |
// @version 0.1 | |
// @description Отображение чатлога мода «dynmap» нормальными сообщениями на русском языке, если нет возможности исправить мод на сервере (русский отображается как «ÝÞßàáâãäå») | |
// @match http://95.31.22.222:8123/* | |
// @copyright 2013+, shtrih | |
// ==/UserScript== | |
function scriptBody() { |
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
// ==UserScript== | |
// @name ASS | |
// @namespace http://4otaku.org/ | |
// @version 0.1 | |
// @description Art Sauce Search | |
// @match http://art.4otaku.org/* | |
// @copyright 2013+, shtrih | |
// ==/UserScript== | |
function scriptBody() { |
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
#!/bin/bash | |
src='/home/http/local' | |
patch='/home/http/rights' | |
#enable for loops over items with spaces in their name | |
IFS=$'\n' | |
for dir in `ls "$src/"` | |
do |
OlderNewer