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
// By /u/loolo78. Use at you will. | |
// Find the Flair ID by inspecting your flair selection box. | |
// This script unfortunatly is not very "user" friendly. | |
// | |
var $flairs = $('.flairselectbtn'); | |
var config = { attributes: true, childList: true, characterData: true, subtree: true }; | |
function wait(index){ | |
var $flair = $flairs.eq(index), |
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
var request = require("request"); | |
var util = require('util'); | |
//var WebSocket = require('ws'); | |
var WebSocketClient = require('websocket').client; | |
var ws; | |
var message = ""; | |
var i = 0; | |
var latex = {}; |
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
// save as C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\cfg\whatever.cfg | |
// then edit autoexec.cfg in that same directory and add: exec whatever.cfg | |
// for more info on what weps mean: http://www.hattongames.com/2012/06/how-to-create-custom-buy-binds-for-csgo/ | |
echo "running custom config..." | |
// voice_scale .5 (mute all = 0) | |
// mm aka. match-making | |
// min. 50.000000 max. 350.000000 - Longest preferred ping to dedicated servers for games | |
"mm_dedicated_search_maxping" = "100" |
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 | |
/** | |
* Recurses each directory and runs PHP's lint function against each file | |
* to test for parse errors. | |
* | |
* @param string $dir the directory you would like to start from | |
* @return array the files that did not pass the test | |
*/ | |
function lint( $dir = 'C:\dev\\' ) |
NewerOlder