Skip to content

Instantly share code, notes, and snippets.

View MasahiroSakoda's full-sized avatar

masahiroSkd MasahiroSakoda

  • Kanagawa Pref. Japan
View GitHub Profile
@MasahiroSakoda
MasahiroSakoda / extract_multiple_audio.sh
Last active April 30, 2024 12:00
ffmpeg audio cheatsheet
# extract single audio stream video from multiple streamed video
ffmpeg -i input.mp4 -c:v copy -c:a copy -map 0:v -map 0:a:2 output.mp4
@MasahiroSakoda
MasahiroSakoda / Bowerfile
Created May 21, 2015 15:07
bower-railsでRailsのフロントエンド開発を少し幸せにする ref: http://qiita.com/MasahiroSakoda/items/1595b9605ed96c38e0c5
asset 'jquery-ujs'
asset 'bootstrap-sass'
asset 'fontawesome'
@MasahiroSakoda
MasahiroSakoda / vagrant_tutorial.md
Last active August 29, 2015 14:01
Vagrant Tutorial

Vagrant Tutorial

Agenda

  • target
  • what is vagrant?
  • prepare
    • install VirutalBox
  • Install Vagrant
  • Create box
  • Initialize box
- (void)locationManager:(CLLocationManager *)manager didRangeBeacons:(NSArray *)beacons inRegion:(CLBeaconRegion *)region { NSString *message = nil;
for (CLBeacon *beacon in beacons) {
switch (beacon.proximity) {
case CLProximityImmediate:
message = @"CLProximityImmediate";
break;
case CLProximityNear:
message = @"CLProximityNear";
break;
case CLProximityFar:
@MasahiroSakoda
MasahiroSakoda / Guard.md
Created January 16, 2014 01:24
Guard tutorial

Guard is CLI tool to handle events on filesystem modifications

Getting Started

Installation

install with gemfiile

group :development do
 gem 'guard'
@MasahiroSakoda
MasahiroSakoda / Podfile
Created January 13, 2014 08:47
Collection of Basic CocoaPods module
# Test Frameworks
pod 'gh-unit'
pod 'kiwi'
## Mock Frameworks
pod 'OCMock'
# Debugging/Logging
pod 'UALogger'
@MasahiroSakoda
MasahiroSakoda / rbenv_install.sh
Created May 2, 2013 06:30
rbenv install script environment: Mac OSX, using zsh
#/bin/bash
# move to home directory
cd ${HOME};
# clone rbenv into home directory
git clone git://github.com/sstephenson/rbenv.git ~/.rbenv
# set env path for zsh
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.zshenv
@MasahiroSakoda
MasahiroSakoda / ajax_func.coffee
Created April 22, 2013 10:06
Ajax function on jQuery 1.8 style by CoffeeScript
ajax_req = (param, beforeReq, doneReq, afterReq) ->
beforeReq = null if typeof beforeReq == 'undefined'
doneReq = null if typeof doneReq == 'undefined'
afterReq = null if typeof afterReq == 'undefined'
$.ajax 'http://www.example.com/blah',
type:'GET'
dataType:'json'
beforeSend: (jqXHR, settings) ->
console.log settings
<!-- Add the following lines to theme's html code right before </head> -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
<script src="http://static.tumblr.com/fpifyru/VCxlv9xwi/writecapture.js"></script>
<script src="http://static.tumblr.com/fpifyru/AKFlv9zdu/embedgist.js"></script>
<!--
Usage: just add <div class="gist">[gist URL]</div>
Example: <div class="gist">https://gist.github.com/1395926</div>
-->
@MasahiroSakoda
MasahiroSakoda / gist:3009337
Created June 28, 2012 05:37
Windows PowerShell Alias settings
Windows PowerShell Alias settings
alias behave like UNIX system