This is the reference point. All the other options are based off this.
|-- app
| |-- controllers
| | |-- admin
| // Core Animation Example: eggs falling out of a tree | |
| // This was glommed from iphonedevsdk: http://www.iphonedevsdk.com/forum/iphone-sdk-development/65632-animation-sample-code-our-newest-app.html | |
| // This is the main animation routine. | |
| - (IBAction) doorEasterEggAction; | |
| { | |
| //treeDoorImageView | |
| CATransform3D theTransform; | |
| UIImageView* anEgg; |
| // This function implements anonymous creation logic. | |
| function loadOrCreateAnonymousProfile(req, res, next) { | |
| var sess = req.session, | |
| auth = sess && sess.auth; | |
| if (!auth || !auth.userId) { | |
| dbCounter('anonymousUsers', function(err, counter) { | |
| if (err) { | |
| console.log('Error getting anonymous users counter', err); | |
| next(); |
In August 2007 a hacker found a way to expose the PHP source code on facebook.com. He retrieved two files and then emailed them to me, and I wrote about the issue:
http://techcrunch.com/2007/08/11/facebook-source-code-leaked/
It became a big deal:
http://www.techmeme.com/070812/p1#a070812p1
The two files are index.php (the homepage) and search.php (the search page)
| #import <UIKit/UIKit.h> | |
| #import <ImageIO/ImageIO.h> | |
| #import <MobileCoreServices/MobileCoreServices.h> | |
| static UIImage *frameImage(CGSize size, CGFloat radians) { | |
| UIGraphicsBeginImageContextWithOptions(size, YES, 1); { | |
| [[UIColor whiteColor] setFill]; | |
| UIRectFill(CGRectInfinite); | |
| CGContextRef gc = UIGraphicsGetCurrentContext(); | |
| CGContextTranslateCTM(gc, size.width / 2, size.height / 2); |
| /* Sample JavaScript file added with ScriptTag resource. | |
| This sample file is meant to teach best practices. | |
| Your app will load jQuery if it's not defined. | |
| Your app will load jQuery if jQuery is defined but is too old, e.g. < 1.7. | |
| Your app does not change the definition of $ or jQuery outside the app. | |
| Example: if a Shopify theme uses jQuery 1.4.2, both of these statements run in the console will still return '1.4.2' | |
| once the app is installed, even if the app uses jQuery 1.9.1: | |
| jQuery.fn.jquery => "1.4.2" | |
| $.fn.jquery -> "1.4.2" | |
| */ |
| - (void)viewDidLoad | |
| { | |
| [super viewDidLoad]; | |
| // Great tutorial: http://www.raywenderlich.com/22167/beginning-core-image-in-ios-6 | |
| // Official docs: https://developer.apple.com/library/ios/#documentation/GraphicsImaging/Conceptual/CoreImaging/ci_intro/ci_intro.html#//apple_ref/doc/uid/TP30001185-CH1-TPXREF101 | |
| // Alt-click on function names for more! | |
| // Make any old label, with our frame set to the view so we know it's there. | |
| UILabel *label = [[UILabel alloc] initWithFrame:self.view.frame]; |
| "use strict" | |
| var Promise = function () { | |
| this.state = 'pending' | |
| this.thenables = [] | |
| } | |
| Promise.prototype.resolve = function (value) { | |
| if (this.state != 'pending') return | |
| this.state = 'fulfilled' |
| var mongoose = require('mongoose'), | |
| // Load User model | |
| User = mongoose.model('User'), | |
| // Create Thing schema | |
| thingSchema = new mongoose.Schema({ | |
| _user: { | |
| type: ObjectId, |