Skip to content

Instantly share code, notes, and snippets.

View taross-f's full-sized avatar

Taro Furuya taross-f

View GitHub Profile
@taross-f
taross-f / checkzip.cs
Created October 30, 2017 06:20
check zip
void Main()
{
var a = new[] { 1, 2, 3 };
var b = new[] { 4, 5, 6, 7, 8};
a.Zip(b, (x, y) => (x: x, y: y)).Dump();
b.Zip(a, (x, y) => (x: x, y: y)).Dump();
}
@taross-f
taross-f / static_trap_csharp.cs
Created August 22, 2017 04:44
static_trap_csharp
void Main()
{
var c = new bbb();
var cc = new bb();
var ccc = new bbb();
B.b.Dump();
bbb.b.Dump();
bb.b.Dump();
}
@taross-f
taross-f / add_profile.sh
Created August 16, 2017 02:44
delete_local_branches
echo alias gitbranchdel="git branch --merged master | grep -vE '^\*|master$|develop$' | xargs -I % git branch -d %" >> .bash_profile
@taross-f
taross-f / python_check
Created April 28, 2017 16:56
python_check
pyenv which python
{
"python.pythonPath": "/Users/username/.pyenv/versions/TensorFlow/bin/python"
}
@taross-f
taross-f / AnimationText.cs
Created April 28, 2017 05:24
AnimationText.cs
using DG.Tweening;
using UnityEngine;
using UnityEngine.UI;
public class AnimationText : MonoBehaviour
{
Text _text;
void Awake() { _text = gameObject.GetComponent<Text>(); }
@taross-f
taross-f / post_slack.js
Created March 28, 2017 03:32
post_slack_by_gas
function _postSlack(title, titleUrl, text, color) {
color = color || "good";
var options = {
'method' : 'post',
'payload' : JSON.stringify({
"attachments": [
{
"color": color,
"title": title,
"title_link": titleUrl,
@taross-f
taross-f / spotlight_on_win.ahk
Created March 22, 2017 05:18
spotlightっぽいショートカットをwinで実現する with autohotkey
sc03a&{Space}::
Send, #{q}
@taross-f
taross-f / Resume.md
Last active April 24, 2023 15:52
Resume

Resume

基礎情報

  • 古屋 太郎 | Furuya Taro
  • 埼玉県川越市在住

スキル(業務経験あり)

Golang, Python, TypeScript, C#
Gin, Gorm, Docker, Unity, Django Rest Framework, FastAPI, Flask,Angular, React.js, OpenVINO, Terraform

@taross-f
taross-f / aggregate_check.cs
Created March 14, 2017 04:34
aggregate check
void Main()
{
new int[0].DefaultIfEmpty().Aggregate((x, y) => x + y).Dump();
new int[0].DefaultIfEmpty().Dump();
new int[0].Aggregate((x, y) => x + y).Dump(); // dead
}
@taross-f
taross-f / chk_connection.sql
Created March 1, 2017 08:33
TooManyConnectionsでたら
show global variables like 'wait_timeout';
show global variables like 'max_connections';