Skip to content

Instantly share code, notes, and snippets.

# Mail Get Count to Clipboard
tell application "Mail"
# Get all local emailboxes
set emailBoxes to every mailbox
# Or Get From Specific User
# set userAccount to account "userName"
# set emailBoxes to every mailbox of userAccount
@youandhubris
youandhubris / Config Submodule.md
Last active April 4, 2018 11:59
Configure submodule to be able to commit and update from another repository

On the submodule repository:

git config receive.denyCurrentBranch updateInstead

Reference

# Auto detect text files and perform LF normalization
* text=auto
@youandhubris
youandhubris / Gitattributes-linguist-vendored.md
Created April 12, 2018 11:11
Force GitHub to properly detect your repositories main language(s)

Create/Edit .gitattributes, and declare what to ignore, like so:

.make linguist-vendored

Example

Reference/Credits to Monica Powell

@youandhubris
youandhubris / GLFW - Error-65544 - Windows Fix.md
Last active April 12, 2018 23:26
Possible fix for GLFW error 65544 on Windows

GLFW error 65544: No monitor found.

Go to Device Manager > Monitors and check if the correct device is enabled and properly installed. Do Update Driver.

@youandhubris
youandhubris / Bash-newPATH.md
Created April 13, 2018 14:03
Bash - Adding a new PATH on macOS

Example

Manually

(edit ~/.bash_profile and append)

# Setting PATH for something
PATH="/new/dir/location/bin:${PATH}"
export PATH
# TO DO
# https://superuser.com/questions/688024/how-can-i-determine-if-an-application-is-not-responding
# Check For Process With Schedule
# File > Export
# File format: Application
# Options: Stay open after run handler
# Notes
# Words like 'path' are reserved.

With you get something like:

dyld: Library not loaded: @rpath/ffmpeg/lib/osx/libavutil.55.dylib Referenced from: /Users/studio/Work/Repositories/Cannula/HAPTest/bin/HAPTest.app/Contents/MacOS/HAPTest Reason: image not found

On Xcode > Build Settings > Other Linker Flags > Debug AND Release (not using AppStore), change:

@loader_path/../../../OFReleases/OF0101/addons/ofxHapPlayer/libs

@youandhubris
youandhubris / Update All Submodules in Source Tree.md
Last active January 5, 2021 01:53
Update all Submodules, using a Custom Action, in Source Tree

Update all Submodules, using a Custom Action, in Source Tree

  1. Go to Actions > Custom Actions > Edit > Add

  2. Menu Caption Update All Submodules

  3. Check Show Full Output

  4. Script to run /usr/bin/git

    If installed in default location

  5. Parameters submodule update --recursive --remote

@youandhubris
youandhubris / FFmpeg.md
Last active March 8, 2022 14:47
FFmpeg & FFprobe

Convert

To HAP Alpha

ffmpeg -i in.mp4 -vcodec hap -format hap_alpha out.mov

To HEVC (x265) GPU

ffmpeg -hwaccel cuvid -i in.mkv -c:v hevc_nvenc -preset slow -b:v 8M -maxrate:v 8.5M -pix_fmt yuv420p out.mkv



Extract

Aiff from H264