Skip to content

Instantly share code, notes, and snippets.

View uyjulian's full-sized avatar

Julian Uy uyjulian

View GitHub Profile
{
if (!window.hasOwnProperty('tppuniquechatters')) {
var liveCount = $("#live-count");
var uniqueChattersSpan = $("<span class=\"stat\" id=\"unique-count\" original-title=\"Unique Chatters\">~</span>");
uniqueChattersSpan.insertBefore(liveCount);
var usernames = {};
setInterval(function () {
$('#chat_line_list').find('.nick').each(function (i, e) {
--Bitcoin checker wip
local httpService = game:GetService("HttpService");
local currentBitcoin = 0;
local encodedJSONString;
local decodedJSONTable;
local bitcoinAddress = "14fXxRQLPSNamBfR4F49vHFSVApV9a6asL";
local apiAddress = "https://blockchain.info/address/" .. bitcoinAddress .. "?format=json&limit=0";
local BitcoinValue = {
RECIEVED = 0,
UNCHANGED = 1,
--Dogecoin checker
local httpService = game:GetService("HttpService");
local currentDogecoin = 0;
local amountString;
local dogecoinAddress = "D8ZyeW3ZwEbN936N4svKM8emc2cm8UNcnn";
local apiAddress = "http://dogechain.info/chain/Dogecoin/q/addressbalance/" .. dogecoinAddress;
local DogecoinValue = {
RECIEVED = 0,
UNCHANGED = 1,
SENT = 2
var allowedNames = ["DaMrNelson", "Shedletsky", "ROBLOX", "YourName"]; // Models by these people will not be removed
var buttons = document.getElementsByClassName("noranslate");
var productInfoUrl = "https://api.roblox.com/marketplace/productinfo?assetId=";
var i = 0;
function doStuff() // My function naming is glorious
{
if (buttons[i] != null)
{
(function(){document.body.appendChild(document.createElement('script')).src='http://jpgohlke.github.io/twitch-chat-filter/chat_filter.user.js';document.body.appendChild(document.createElement('script')).src='http://cronoss.github.io/twitch-log-links/twitch-log-links.js';})();
(function(){document.body.appendChild(document.createElement('script')).src='http://jpgohlke.github.io/twitch-chat-filter/chat_filter.user.js';})();
2015-04-03 09:18:48 -0500
./configure
--prefix=/usr/local/Cellar/wine/1.7.40
--without-mpg123
checking build system type... x86_64-apple-darwin14.1.0
checking host system type... x86_64-apple-darwin14.1.0
checking whether make sets $(MAKE)... yes
checking for gcc... clang
@uyjulian
uyjulian / gist:7268421
Created November 1, 2013 16:58
Better c3 de
val = Color3.new(2,0,0)
deval = Color3.new(0,0,0)
if val.r >= 1 or val.g >= 1 or val.b >= 1 then
val = deval
elseif val.r <= 0 or val.g <= 0 or val.b <= 0 then
val = deval
end