I hereby claim:
- I am n-b on github.
- I am nb_ (https://keybase.io/nb_) on keybase.
- I have a public key whose fingerprint is 7986 EEEE 8135 07D0 F9AB C21E 87FD 5957 5246 035A
To claim this, I am signing this object:
| #! ruby | |
| module Foo_é | |
| def self.bla | |
| puts "bla" | |
| end | |
| end | |
| module Foo_é | |
| def self.baz | |
| puts "baz" |
I hereby claim:
To claim this, I am signing this object:
| #EXTM3U | |
| #EXTINF:-1,C'est pas sorcier - Sel de la mer à la terre | |
| https://www.youtube.com/watch?v=ChUai6Wbm78 | |
| #EXTINF:-1,C'est pas sorcier -PESTICIDES | |
| https://www.youtube.com/watch?v=Cqm6Ztr-ndg | |
| #EXTINF:-1,C'est pas sorcier -CUISINE DE CHEF : la science des saveurs | |
| https://www.youtube.com/watch?v=Kc2fjylFIa4 | |
| #EXTINF:-1,C'est pas sorcier - BANANES : sorciers à plein régime | |
| https://www.youtube.com/watch?v=xguEgpLQV3k | |
| #EXTINF:-1,C'est pas sorcier -CHAMPAGNE : LES SORCIERS SE FONT MOUSSER |
| in UITableViewCell: | |
| _tableView (<UITable_UITableViewCellDelegate>*): nil | |
| _layoutManager (id): <UITableViewCellLayoutManager: 0x6080000150a0> | |
| _target (id): nil | |
| _editAction (SEL): (null) | |
| _accessoryAction (SEL): (null) | |
| _oldEditingData (_UITableViewCellOldEditingData*): nil | |
| _editingData (id): nil | |
| _rightMargin (double): 0 | |
| _indentationLevel (long): 0 |
| @import Foundation; | |
| int main() { | |
| for (int i=0; i<100; i++) { | |
| NSDate * date = NSDate.date; | |
| printf("%p\n",date); | |
| } | |
| } |
| @import Foundation; | |
| @interface A : NSObject | |
| @end | |
| @interface B : A | |
| @end | |
| // Private objc ivars are really private: | |
| @implementation A | |
| { |
| #!/usr/bin/env objc-run | |
| @import Foundation; | |
| @interface NSBlock // bite me | |
| @end | |
| @implementation NSBlock (invoke) | |
| - (void) invoke | |
| { |
| //#!/usr/bin/env objc-run | |
| #import <Foundation/Foundation.h> | |
| #import <objc/runtime.h> | |
| #import <objc/message.h> | |
| /// | |
| /// Typedefs | |
| typedef id (^TargetMethod)(id arg); |
| (lldb) po [@"Hello World" dataUsingEncoding:4] | |
| <48656c6c 6f20576f 726c64> | |
| (lldb) po [[@"Hello World" dataUsingEncoding:4] lowercaseHexStringWithoutSpaces] | |
| 48656c6c6f20576f726c64 | |
| (lldb) po [[@"Hello World" dataUsingEncoding:4] uppercaseHexStringWithoutSpaces] | |
| 48656C6C6F20576F726C64 | |
| (lldb) po [[@"Hello World" dataUsingEncoding:4] CKHexString] |
| @import UIKit; | |
| #pragma mark - Main View Controller | |
| @interface ViewController : UITableViewController | |
| @end | |