most of these require logout/restart to take effect
# Enable character repeat on keydown
defaults write -g ApplePressAndHoldEnabled -bool false
# Set a shorter Delay until key repeat| // DataManager.h | |
| #import <Foundation/Foundation.h> | |
| #import <CoreData/CoreData.h> | |
| extern NSString * const DataManagerDidSaveNotification; | |
| extern NSString * const DataManagerDidSaveFailedNotification; | |
| @interface DataManager : NSObject { | |
| } |
This allows you to use the following video streaming services outside of the US from your Mac without having to use a proxy or VPN, so no big bandwidth issues:
| # Installation | |
| brew install ffmpeg --with-vpx --with-vorbis --with-libvorbis --with-vpx --with-vorbis --with-theora --with-libogg --with-libvorbis --with-gpl --with-version3 --with-nonfree --with-postproc --with-libaacplus --with-libass --with-libcelt --with-libfaac --with-libfdk-aac --with-libfreetype --with-libmp3lame --with-libopencore-amrnb --with-libopencore-amrwb --with-libopenjpeg --with-openssl --with-libopus --with-libschroedinger --with-libspeex --with-libtheora --with-libvo-aacenc --with-libvorbis --with-libvpx --with-libx264 --with-libxvid | |
| # Easy Peasy | |
| ffmpeg -i video.mp4 video.webm |
| class Client < ActiveRecord::Base | |
| has_many :projects | |
| scope :active, -> { where(active: true) } | |
| end | |
| class Project < ActiveRecord::Model | |
| belongs_to :client | |
| scope :active, -> { |