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
[{ | |
executables: { | |
win32: ["100orange.exe"] | |
}, | |
name: "100% Orange Juice" | |
}, { | |
executables: { | |
win32: ["20xx.exe"] | |
}, | |
name: "20XX" |
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
str = activeDocument.selection.bounds.toString(); | |
str = str.replace(/ px/g,""); //" px"要らないので削除 | |
array = str.split(","); //","で分割 | |
var w = app.activeDocument.width.toString().replace(' px', ''); | |
var h = app.activeDocument.height.toString().replace(' px', ''); | |
str = parseFloat(array[0] /w) + "f," + // x | |
parseFloat(array[1] /h) + "f," + // y | |
parseFloat((Number(array[2]) ).toString() /w)+ "f," + //width | |
parseFloat((Number(array[3]) ).toString() /h)+ "f"; //height |
#tu.sh
Bascially it's a bunch of spaghetti I made in an afternoon.
It will only shutdown the server and update when the new build is publically avaliable.
##Usage
./tu.sh
Check for a force update file
./tu.sh online
Check build id with lastest public version
##Setup It requires jq, this is on apt-get or whatever, but not the required versions, download it from github
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
steam.styles | |
{ | |
colors | |
{ | |
// colors section can include colors in "R G B A" form, or references to already defined colors; | |
// it can also include just general settings controls can pull from for extra customization | |
// FORMAT THE FOLLOWING VALUES TO SET YOUR CUSTOM COLOURS! | |
baseBackground="27 27 27 255" |
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
if (window.browser !== undefined) { | |
(function () { | |
Object.defineProperty(window, "chrome", { | |
get: delayInitchrome, | |
configurable: true, | |
enumerable: true | |
}); | |
function delayInitchrome() { | |
var wrapchrome = Object.defineProperties({}, { |
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
;It's pretty spaghetti | |
hex2r(CR) | |
{ | |
H := InStr(CR, "0x") ? CR : (InStr(CR, "#") ? "0x" SubStr(CR, 2) : "0x" CR) | |
r:= (H & 0xFF0000) >> 16 | |
return r | |
} | |
hex2g(CR) | |
{ | |
H := InStr(CR, "0x") ? CR : (InStr(CR, "#") ? "0x" SubStr(CR, 2) : "0x" CR) |
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 | |
// A Steam API Key is required so as to be able to contact steam and get a users profile image and name | |
// You can get a Steam API Key by visiting http://steamcommunity.com/dev/apikey | |
// Don't worry about the web address, it won't have any effect so just type in any web site | |
// Once you have your steam API Key simply paste the key below. (Make sure the quotation marks are still there or else it won't work) | |
$SteamAPIKey = ""; | |
// Don't edit any of the PHP stuff here or else you may break the script |
NewerOlder