Skip to content

Instantly share code, notes, and snippets.

View Tim-Machine's full-sized avatar

Tim Smith Tim-Machine

  • Cohezion.ai
  • Cary,NC
  • 04:30 (UTC -04:00)
View GitHub Profile

Gamerlytics.gg

Know Yourslef, Know your Enemy

What we are trying to do


We want to bring true gaming insights to gamers. Most sites show you basic historical data but do not provide you insight on how well you play a specific champion, which champions you are strong agasint, or which champions you may be weak with. We plan to use the data from each game to give you a custom tailored experince into your skill set. We want to help you be a better gamer.

Teams


Professional or trying to break into the professional scene your team needs in-depth team analytics. This want be a day one feature but it is without a doubt on our road map! We want to help you figure out what team compositions and strategies work for you. We plan to work with pro teams to help identifiy key performance metrics.

Gamerlytics.gg

Know Yourslef, Know your Enemy

What we are trying to do


We want to bring true gaming insights to gamers. Most sites show you basic historical data but do not provide you insight on how well you play a specific champion, which champions you are strong agasint, or which champions you may be weak with. We plan to use the data from each game to give you a custom tailored experince into your skill set. We want to help you be a better gamer.

Teams


Professional or trying to break into the professional scene your team needs in-depth team analytics. This want be a day one feature but it is without a doubt on our road map! We want to help you figure out what team compositions and strategies work for you. We plan to work with pro teams to help identifiy key performance metrics.

atom-beautify@0.29.7
atom-jade@0.3.0
drunken-php@0.2.1
language-elixir@0.12.3
linter@1.11.4
linter-elixirc@1.1.8
meteor-api@2.20.0
meteor-helper@0.27.0
php-integrator-linter@0.3.0
shrink-whitespace@0.2.3
adding this package to phoenix https://hex.pm/packages/velkoz causing this error ::
Conflict on poison from 1.5.0 to 1.5.2
ecto 1.1.5: ~> 1.0
phoenix 1.1.4: ~> 1.5 or ~> 2.0
phoenix_ecto 2.0.1: ~> 1.3
velkoz 1.0.1: ~> 2.0
Conflict on poison from 2.0.0 to 2.1.0
phoenix 1.1.4: ~> 1.5 or ~> 2.0
@doc """
takes a map and converts it to a query string
example build_qeury_string %{locale: "en_US", another: "test"}
"""
def build_query_string(data) when is_map(data) do
data = for {key, val} <- data, into: [], do: "#{key}=#{val}"
Enum.join(data, "&")
end
i = 0
while (i < 0){
console.log({})
}
// this crashes the browser
JSON = (loadfile "json.lua")()
local serpent = require "serpent0272"
local inflate = require "deflatelua"
local base64 = require "base64"
function parse(data)
if (string.sub(data, 1, 8) ~= "do local") then
-- Decompress string
local output = {}
local input = base64.dec(data)
// This is ran on the server to check validity of the string
var convertDataToBinary, parseBluePrint;
convertDataToBinary = function(dataURI) {
var array, i, raw, rawLength;
raw = window.atob(dataURI);
rawLength = raw.length;
array = new Uint8Array(new ArrayBuffer(rawLength));
i = 0;
while (i < rawLength) {
@Tim-Machine
Tim-Machine / luaTableToJson.coffee
Last active November 18, 2022 13:02
Little script to convert lua tables into json
pako = require('pako') ## https://www.npmjs.com/package/pako
convertDataURIToBinary = (dataURI) ->
raw = window.atob(dataURI)
rawLength = raw.length
array = new Uint8Array(new ArrayBuffer(rawLength))
i = 0
while i < rawLength
array[i] = raw.charCodeAt(i)
i++
function MedievalSoldier(type, weapon, attack) {
//properties:
this.type = type;
this.weapon = weapon; // some type of modifer
this.damage = 5;
this.level = 1;
//methods:
this.attack = null;
}
var mySolider = new MedievalSoldier("pikeman", "spear");