Skip to content

Instantly share code, notes, and snippets.

View 1lann's full-sized avatar

Jason Chu 1lann

View GitHub Profile
@1lann
1lann / round.c
Last active August 29, 2015 14:19
double myRound(double num, int decimalPlaces) {
int rounded = num * power10Of(decimalPlaces);
return (double)rounded / power10Of(decimalPlaces);
}
local vertexStart = {"RRLR", "RR", "", "L", "LRL", "LRLRL"}
local vertexRows = {6, 8, 11, 10, 8, 6}
local allVerticies = {}
for start = 1, #vertexStart do
local startTurn = "L"
if start == 3 then
startTurn = "S"
elseif start > 2 then
@1lann
1lann / effective power stacktrace.txt
Created May 31, 2015 17:14
Effective power stacktrace
Process: SpringBoard [67309]
Path: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/CoreServices/SpringBoard.app/SpringBoard
Identifier: SpringBoard
Version: 1.0 (50)
Code Type: X86-64 (Native)
Parent Process: launchd_sim [67295]
Responsible: launchd_sim [67295]
User ID: 501
Date/Time: 2015-05-31 21:11:00.575 +0800
@1lann
1lann / compress.go
Created July 4, 2015 09:04
LZ compression in Go
package compress
import (
"bytes"
"compress/lzw"
"io/ioutil"
)
func compress(input []byte) ([]byte, error) {
output := &bytes.Buffer{}
@1lann
1lann / rsa-keygen.lua
Last active October 11, 2015 10:54
RSA key generator in pure Lua for ComputerCraft
--
-- RSA Key Generator
-- By 1lann
--
-- Refer to license: http://pastebin.com/9gWSyqQt
--
--
-- Start of third-party libraries/helpers
--
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
)
type MasteryPageContainer struct {
@1lann
1lann / replays.md
Last active April 24, 2023 09:06
Storing and playing back replays in League of Legends

Storing and playing back replays in League of Legends

How it works

When you spectate a game in League of Legends, you tell the client to use a HTTP server, and make HTTP requests to it to retrieve data in chunks which make up a game. But what if you could return back the exact same data at a later time, simulating the spectate but viewing it at anytime? That's the concept behind replays and that's how they work.

There is some behavior in the API which I do not fully understand yet, so there are if statements to catch these edge cases.

Current game information

Before you can even get the game's metadata, you'll need to retrieve necessary information for the game. This call is part of the official Riot Games API.

/observer-mode/rest/consumer/getSpectatorGameInfo/{platformId}/{summonerId}

@1lann
1lann / rsa-crypt.lua
Last active April 1, 2024 02:52
RSA encryption and decryption library in pure Lua for ComputerCraft
--
-- RSA Encryption/Decryption Library
-- By 1lann
--
-- Refer to license: http://pastebin.com/9gWSyqQt
--
-- See gists comment at the bottom of the page for FAQ and updates!
--
--
@1lann
1lann / chatbox.go
Last active October 20, 2015 14:41
Chatbox backend for remote services.
package main
import (
"encoding/json"
"encoding/xml"
"errors"
"github.com/1lann/ccserialize"
"github.com/gorilla/mux"
"github.com/vincent-petithory/countries"
"io/ioutil"
@1lann
1lann / selfdestruct.java
Created October 24, 2015 08:56
Self destruct plugin for my server.
package io.chuie.selfdestruct;
import org.bukkit.plugin.java.JavaPlugin;
import org.bukkit.scheduler.BukkitTask;
import java.io.File;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.event.EventHandler;