I hereby claim:
- I am paralleltree on github.
- I am paralleltree (https://keybase.io/paralleltree) on keybase.
- I have a public key whose fingerprint is E4B9 95ED F0D3 8C8D 4C15 5201 90DC FAB0 F113 37C6
To claim this, I am signing this object:
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEditor; | |
namespace Paltee.Extensions | |
{ | |
public class ForceCrunchCompressionOff : AssetPostprocessor | |
{ | |
void OnPreprocessTexture() |
[settings] | |
api_key = xxxx | |
exclude=^(?!/home/paltee/repos) | |
hide_project_folder = true | |
status_bar_enabled = false |
I hereby claim:
To claim this, I am signing this object:
require 'date' | |
require 'oauth2' | |
require 'base64' | |
CLIENT_ID = 'xxxx' | |
CLIENT_SECRET = 'xxxx' | |
REDIRECT_URL = 'http://localhost:8888' | |
CREDENTIAL_CACHE = 'credentials.json' | |
class TokenStore |
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Runtime.InteropServices; | |
using System.Text; | |
using System.Text.RegularExpressions; | |
using System.Threading.Tasks; | |
namespace EmmBackupGen |
import sys | |
import json | |
import argparse | |
from datetime import date, time, datetime | |
import itertools | |
import nfc | |
from binascii import hexlify | |
from struct import pack, unpack | |
class Suica: |
require 'json' | |
require 'open-uri' | |
require 'net/http' | |
require 'slack-ruby-client' | |
API_BASE = ENV['API_BASE'] | |
SLACK_TOKEN = ENV['SLACK_TOKEN'] | |
Slack.configure { |config| config.token = SLACK_TOKEN } | |
client = Slack::RealTime::Client.new |
require 'optparse' | |
require 'pasori' | |
require_relative 'suica' | |
parser = OptionParser.new | |
args = {} | |
parser.on('--idm') { |v| args[:mode] = :idm } | |
parser.on('--balance') { |v| args[:mode] = :balance } | |
parser.on('--gate-history') { |v| args[:mode] = :gate_history } |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using Ched.Core.Notes; | |
namespace Ched.Plugins | |
{ |