Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View uyjulian's full-sized avatar

Julian Uy uyjulian

View GitHub Profile
@uyjulian
uyjulian / gist:7254270
Created October 31, 2013 18:11
better ROBLOX join.ashx
--(Hash here)
-- Vars generated by ashx --
local isTeleporting = false
local waitingForCharacterGuid = "520a3c95-6fbc-4d2c-8613-1e278289ce15"
local rbxApiTicket = "63fca81e923f421db20345a7e5e4943c"
local isSuperSafeChat = false
local isUnder13
@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
{
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';})();
@uyjulian
uyjulian / README.md
Last active March 21, 2018 15:15
Hate Plus torrent fix

Hate Plus torrent patch

Looking for the torrent? 49d9123bd5fe62d9aac5b45615ea4305f5fb6d31 (use google)

Older torrents (they are broken): BEB8587DFD95907D0AD61E9D592321D8C04A5253 11D742E3C9A638F476E56B5D6C7E5D8DAC4D7069

Note:

@uyjulian
uyjulian / benrg.cpp
Created March 10, 2015 09:30
s3rc cleaned up
#include "dbpf.h"
#define assert(expr)
struct word
{
byte lo, hi;
};
struct dword
{