I hereby claim:
- I am zaki on github.
- I am zaki (https://keybase.io/zaki) on keybase.
- I have a public key whose fingerprint is 24DF 308C 6D24 C5F2 4EF6 A5F1 C06E C0DE 915F 3569
To claim this, I am signing this object:
| using UnityEngine; | |
| public class Startup : MonoBehaviour | |
| { | |
| private GameObject game = null; | |
| [SerializeField] | |
| private string startScene = "Title"; | |
| public void Awake() | |
| { |
I hereby claim:
To claim this, I am signing this object:
| #encoding: utf-8 | |
| # Disclaimer: | |
| # This is a quick hack to display ios app store rankings. It works for me. | |
| # On your machine for all I know it could delete your hard drive, freeze your city's power grid, | |
| # start WWIII, or even lock Australian people out of their iPhones, so use with caution. | |
| require 'time' | |
| require 'json' | |
| # see genre codes here: https://www.apple.com/itunes/affiliates/resources/documentation/genre-mapping.html | |
| # main country codes (sf=) |
| alias st='stree' | |
| alias rpc='rake rpc' | |
| alias remas='rake master:copy && rake master:all' | |
| alias rest='remig test && s' | |
| alias gcozm='g checkout zaki-master' | |
| alias gpzm='g push zaki zaki-master:master' | |
| alias grhom='g reset --hard origin/master' |
| source "https://rubygems.org" | |
| gem "terminal-notifier" |
| # https://paiza.jp/poh/ec-campaign | |
| n, d = STDIN.gets.split(/ /).map(&:to_i) | |
| products = [] | |
| 1.upto(n) do |i| | |
| products << STDIN.gets.to_i | |
| end | |
| campaigns = [] |
| class Migration1 < ActiveRecord::Migration | |
| def change | |
| add_column :models, :test_1, :integer | |
| Model.update_first | |
| end | |
| end |
| source "https://rubygems.org" | |
| gem "mechanize" |
| using UnityEngine; | |
| using System.Collections; | |
| public class #SCRIPTNAME# : MonoBehaviour | |
| { | |
| void Awake() | |
| { | |
| } | |
| } |
| require 'json' | |
| require 'date' | |
| # SETTINGS | |
| PAGE = 1 | |
| PER_PAGE = 10 | |
| AUTH = "" # basic authentication info | |
| REPO = "" # eg zaki/dotfiles | |
| class PR |