Skip to content

Instantly share code, notes, and snippets.

View ggomagundan's full-sized avatar
🎧
Working Working

ggomagundan

🎧
Working Working
View GitHub Profile
@ggomagundan
ggomagundan / starttmux.sh
Created January 21, 2021 09:55 — forked from todgru/starttmux.sh
Start up tmux with custom windows, panes and applications running
#!/bin/sh
#
# Setup a work space called `work` with two windows
# first window has 3 panes.
# The first pane set at 65%, split horizontally, set to api root and running vim
# pane 2 is split at 25% and running redis-server
# pane 3 is set to api root and bash prompt.
# note: `api` aliased to `cd ~/path/to/work`
#
session="work"
@ggomagundan
ggomagundan / Cargo.toml
Last active March 13, 2020 10:02
Actix Web
[package]
name = "btoz_video"
version = "0.1.0"
authors = ["Kai <byeongsangp@tripbtoz.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "2.0"
@ggomagundan
ggomagundan / Cargo.toml
Last active May 12, 2020 05:01
Finish Topic
[package]
name = "move_origin"
version = "0.1.0"
authors = ["Kai <ggogun@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aws_lambda_events = "^0.3.0"
@ggomagundan
ggomagundan / Cargo.toml
Last active June 10, 2020 09:32
S3-Mediaconvert
[package]
name = "rusoto"
version = "0.1.0"
authors = ["Kai <kai.park1201@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rusoto_core = "0.44.0"
[package]
name = "poloniex"
version = "0.1.0"
authors = ["Kai <ggogun@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = "0.10.0-alpha.2"
@ggomagundan
ggomagundan / youtube_checker.rb
Created April 4, 2019 04:43
Youtube Subscribers count parsing
# youtube_checker.rb
require 'json'
require 'httparty'
require 'dotenv'
Dotenv.load
# Need to install
# gem install httpart
# gem install dotenv
@ggomagundan
ggomagundan / photo-touch.rb
Created December 7, 2018 17:54
Update Image EXIF Informations
#!/usr/bin/ruby
# encoding: utf-8
#
# Script for changing photo creation timestamp (in EXIF metadata and filesystem)
# If you're using rvm, please run script as `ruby photo-touch.rb`
# Tested in ruby-2.5.1
#
# Install ExifTool: http://www.sno.phy.queensu.ca/~phil/exiftool/install.html
#
# You need next gems for script to work (use gem install gem_name)
0xc55Ce9041cd205006Ed4b7aa6941981FEee77741
0x80727e2724BC5B0F9ce93612eea3C651C2DfC145
@ggomagundan
ggomagundan / FLToken.sol
Last active July 3, 2017 15:19
FleaMarket Token
pragma solidity ^0.4.11;
// Token standard API
// https://github.com/ethereum/EIPs/issues/20
// And add Increase and Decrease
// https://github.com/ethereum/EIPs/pull/621