I hereby claim:
- I am juliengrimault on github.
- I am juliengrimault (https://keybase.io/juliengrimault) on keybase.
- I have a public key ASAJr3Bwr0jvjisKY-bpuuNHSBB38m7sVWxa7HYn85_5pgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Terminal - go to | |
cd /Applications/Parallels\ Desktop.app/Contents/Library/Extensions/10.6 | |
sudo kextutil prl_hypervisor.kext/ | |
sudo kextutil prl_vnic.kext/ | |
sudo kextutil prl_hid_hook.kext/ | |
sudo kextutil -d ./prl_hypervisor.kext prl_netbridge.kext/ | |
sudo kextutil prl_usb_connect.kext |
Pod::Spec.new do |s| | |
s.name = 'RSOAuthEngine' | |
s.version ='1.3.1' | |
s.license = 'MIT' | |
s.summary = 'ARC based OAuth engine for MKNetworkKit.' | |
s.homepage = 'https://github.com/rsieiro/RSOAuthEngine' | |
s.authors = { 'Rodrigo Sieiro' => '[email protected]' } | |
s.source = {:git => 'https://github.com/rsieiro/RSOAuthEngine.git', :tag => '1.3.1'} | |
s.source_files = 'RSOAuthEngine/*.{h,m}' | |
Pod::Spec.new do |s| | |
s.name = 'MKNetworkKit' | |
s.version = '0.87' | |
s.summary = 'ARC ready Networking Framework with built in authentication and HTTP 1.1 caching standards support for iOS 5+ devices.' | |
s.homepage = 'https://github.com/MugunthKumar/MKNetworkKit' | |
s.author = { 'Mugunth Kumar' => '[email protected]' } | |
s.source = { :git => 'https://github.com/juliengrimault/MKNetworkKit.git' } | |
s.source_files = 'MKNetworkKit/*.{h,m}', 'MKNetworkKit/Categories/*.{h,m}' | |
s.ios.exclude_files = '**/*NSAlert*' |
(function ($) { | |
$.fn.serializeJSON = function () { | |
var json = {} | |
var form = $(this); | |
form.find('input, select').each(function () { | |
var val | |
if (!this.name) return; | |
if ('radio' === this.type) { |
// | |
// CrashlyticsLogger.h | |
// | |
// Created by Julien Grimault on 4/1/13. | |
// | |
// | |
#import "DDLog.h" | |
@interface CrashlyticsLogger : DDAbstractLogger |
- (RACSignal*)friendsId | |
{ | |
RACReplaySubject* subject = [RACReplaySubject subject]; | |
[self enqueueWithSubject:subject cursor:-1]; | |
return subject; | |
} | |
- (void)enqueueWithSubject:(RACSubject*)subject cursor:(NSInteger)cursor | |
{ | |
RACSignal* json = [self friendsIdAtCursor:cursor]; |
#!/bin/bash | |
_base_dir="${1:-.}" | |
echo "Building assets bundle in $_base_dir" | |
_dirContentBundle="$_base_dir/*.bundle" | |
for f in $_dirContentBundle; | |
do | |
echo "removing old bundle $f" | |
rm -rf "$f" |
@interface Engine | |
+ (id)sharedEngine; | |
- (MKNetworkOperation*)someOperation:(CompletionBlock)block onError:(ErrorBlock)errorBlock; | |
@end | |
@interface MyViewController : UITableViewController | |
@property (nonatomic, strong) MKNetworkOperation* operation; | |
@end |