Skip to content

Instantly share code, notes, and snippets.

@wsidell
wsidell / gist:6737445
Created September 28, 2013 01:33
FFMpeg Rake
#Created by kolyvan_ru. @ https://github.com/kolyvan/kxmovie
#Modified by kinglonghuang @ https://github.com/kinglonghuang/kxmovie
require "pathname"
require "fileutils"
def system_or_exit(cmd, stdout = nil)
puts "Executing #{cmd}"
cmd += " >#{stdout}" if stdout
system(cmd) or raise "******** Build failed ********"
@wsidell
wsidell / gist:5069159
Last active December 14, 2015 09:59
iPhone Get MAC Address without network connection
#include <sys/types.h>
#include <stdio.h>
#include <string.h>
#include <sys/socket.h>
#include <net/if_dl.h>
#include <ifaddrs.h>
#define IFT_ETHER 0x6
- (NSString *) macaddress{