Skip to content

Instantly share code, notes, and snippets.

View dealforest's full-sized avatar

Toshihiro Morimoto dealforest

View GitHub Profile
@dealforest
dealforest / AES256Cipher.java
Created March 1, 2012 13:39
AES256 encryption on Android
package net.dealforest.sample.crypt;
import javax.crypto.BadPaddingException;
import javax.crypto.Cipher;
import javax.crypto.IllegalBlockSizeException;
import javax.crypto.NoSuchPaddingException;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
import java.security.InvalidKeyException;
@dealforest
dealforest / MnistImageType.swift
Last active January 14, 2020 03:33
the model automatically generated from mlmodel
//
// MnistImageType.swift
//
// This file was automatically generated and should not be edited.
//
import CoreML
/// Model Prediction Input Type
@dealforest
dealforest / post-checkout
Last active October 10, 2018 15:10
When you switch branch, run the `pod install`. install to `path/to/.git/hooks/`
#!/bin/sh
set -e
prev="$1"
new="$2"
branch_switch="$3"
if [ -z "$branch_switch" ] || [ $branch_switch -eq 0 ]; then
exit 0 # this was a file checkout
@dealforest
dealforest / slack.py
Last active January 24, 2018 01:53
send to slack in LLDB
#!/usr/bin/env python
import lldb
def slack(debugger, command, result, internal_dict):
frame = lldb.debugger.GetSelectedTarget().GetProcess().GetSelectedThread().GetSelectedFrame()
path = command
lldb.debugger.HandleCommand("""
expr -l swift --
#!/bin/bash -eu
temp_dir=`mktemp --directory`
target_dir=/Applications/Xcode-beta.app/Contents/MacOS
if [ -e $target_dir/Xcode.signed ]; then
echo "already exists Xcode.signed"
exit 1
fi
define pv
if $argc == 0
po [[[UIApplication sharedApplication] keyWindow] recursiveDescription]
end
if $argc == 1
po [$arg0 recursiveDescription]
end
end
define st
@dealforest
dealforest / gist:3987175
Created October 31, 2012 14:00
ActiveRecord exexute sample
/* データ
> select * from hoge;
+------+------+
| fuga | foo |
+------+------+
| 1 | 2 |
| 3 | 4 |
| 5 | 6 |
+------+------+
*/
@dealforest
dealforest / appmodelsconstants.rb
Created October 22, 2012 20:16
about settingslogin on Rails
class Constants < Settingslogic
source "#{Rails.root}/config/constants.yml"
namespace Rails.env
end
@dealforest
dealforest / gist:1004361
Created June 2, 2011 12:49
node.js websocket server
var sys = require('sys');
var ws = require('websocket-server');
var host = 'localhost';
var port = 10000;
var webSocket = ws.createServer();
webSocket.addListener("connection", function (connection) {
sys.puts("connect: " + connection._req.socket.remoteAddress);
connection.addListener("message", function (message) {
#!/usr/bin/perl
use strict;
use warnings;
use JSON::Syck;
use Data::Dumper;
my $a = { hoge => 'fuga' };
my $b = { foo => $a, bar => $a };
warn Dumper $b;