Skip to content

Instantly share code, notes, and snippets.

View cerkut's full-sized avatar
🎯
Focusing

Cumhur Erkut cerkut

🎯
Focusing
View GitHub Profile
@cerkut
cerkut / CODE.org
Created November 16, 2018 14:54
MAC: How to compile JUCE projects from terminal
@cerkut
cerkut / taskdiary.org
Last active September 22, 2018 06:58
How to merge audio m4a and video mp4 using ffmpeg [0/0] :MAC:

ffmpeg -i videoplayback.mp4 -i videoplayback.m4a -c:v copy -c:a copy output.mp4

@cerkut
cerkut / taskdiary.org
Last active September 22, 2018 06:58
How to handle Apple Store updates with CLI? :GITHUB:
# show all installed applications and their product identifiers
mas list

# list all applications with pending updates.
mas outdated

# install all pending updates
mas upgrade
@cerkut
cerkut / git-branches-by-commit-date.sh
Last active September 12, 2018 21:14 — forked from jasonrudolph/git-branches-by-commit-date.sh
List remote Git branches and the last commit date for each branch. Sort by most recent commit date.
# Credit http://stackoverflow.com/a/2514279
for branch in `git branch -r | grep -v HEAD`;do echo -e `git show --format="%ci %cr" $branch | head -n 1` \\t$branch; done | sort -r
@cerkut
cerkut / mojave.org
Last active September 19, 2018 07:14
How to get the book JUCE examples
@cerkut
cerkut / taskdiary.org
Created August 2, 2018 14:33
How to gist from emacs

[#C] Howto use github gists from org-mode? [0/0]

Create a new Gist

better use gist.el

@cerkut
cerkut / gist:45a791b12525de7290654d6814e60008
Last active November 9, 2018 09:35
JUCE to Unity Native Audio Plugin on Mac :GIST:CODE:

A. Checkout the developer version of JUCE

git clone -b develop https://github.com/WeAreROLI/JUCE.git 

(For consequent updadets, you just need to)

git checkout develop; git fetch; git pull

B. Build Projucer, where JUCE is the root of your clone

xcodebuild -project JUCE/extras/Projucer/Builds/MacOSX/Projucer.xcodeproj 

b. Optionally build DemoRunner and AudioPluginHost