I hereby claim:
- I am farktronix on github.
- I am farktronix (https://keybase.io/farktronix) on keybase.
- I have a public key whose fingerprint is 7C47 1696 354A 0D45 F97C 97E8 ACE2 F3A0 B9BD 49AC
To claim this, I am signing this object:
.banking-ipd-message { | |
display: none; | |
} | |
.marketing-ipd-tsa-widgets { | |
display: none; | |
} | |
.experts-header-item { | |
Display: none; |
static const char *kMyQueueSentinel = "🐔"; | |
- (instancetype)init { | |
... | |
_serialQueue = dispatch_queue_crete("com.my.serialqueue", DISPATCH_QUEUE_SERIAL); | |
dispatch_queue_set_specific(self.serialQueue, kMyQueueSentinel, (void *)1, NULL); | |
... | |
} | |
static inline void _performOnSerialQueue(dispatch_block_t myBlock) { |
_setupQueue = dispatch_queue_create("com.fark.setup", DISPATCH_QUEUE_SERIAL); | |
_setupSource = dispatch_source_create(DISPATCH_SOURCE_TYPE_DATA_OR, 0, 0, _setupQueue); | |
dispatch_source_set_event_handler(_setupSource, ^{ | |
[weakSelf _reload]; | |
}); | |
dispatch_resume(_setupSource); | |
... | |
- (void)_signalAccountReload { |
// | |
// StateMachineExample | |
// | |
// Created by Jacob Farkas on 6/4/14. | |
// | |
#import <Foundation/Foundation.h> | |
#define DownloadTempPath "/tmp/tacosXXXXXX" |
I hereby claim:
To claim this, I am signing this object:
static void _MemoryPoolReleaseCallback (CFAllocatorRef allocator, const void *value) { | |
if (value != NULL) CFRelease((CFTypeRef)value); | |
} | |
static CFArrayCallBacks MyMemoryPoolCallbacks = { | |
0, | |
NULL, | |
&_MemoryPoolReleaseCallback, | |
&CFCopyDescription, | |
NULL |
#!/usr/bin/ruby | |
require 'fileutils' | |
include FileUtils::Verbose | |
$rickRollFile="/Volumes/Media/.RickRoll.mp3" | |
def rickRollDir(sourceDir, destDir) | |
for filename in Dir.entries(sourceDir) | |
next if filename=~/\.\.?$/ |
==================== | |
(0) | Mr. Olson | | |
==================== | |
| | | |
==================== ==================== | |
(a) | Contributors | | Contributors | | |
==================== ==================== | |
| | | |
==================== ==================== |
$ gcc-4.0 -arch x86_64 -o varg varg.c && ./varg | |
ERROR: execlp failed with errno 14: Bad address | |
Child process started with pid 51425 | |
Parent process complete. |