Entrepreneur is someone who doesnt know anything about Entrepreneurship and doesn't care a bit about it but is just surviving.
 
 
Picture
Publication Date: June 6, 2011 | ISBN-10: 0393339750 | ISBN-13: 978-0393339758
Finalist for the 2011 Pulitzer Prize in General Nonfiction: ìNicholas Carr has written a Silent Spring for the literary mind.îóMichael Agger, Slate

ìIs Google making us stupid?î When Nicholas Carr posed that question, in a celebrated Atlantic Monthly cover story, he tapped into a well of anxiety about how the Internet is changing us. He also crystallized one of the most important debates of our time: As we enjoy the Netís bounties, are we sacrificing our ability to read and think deeply? 

Now, Carr expands his argument into the most compelling exploration of the Internetís intellectual and cultural consequences yet published. As he describes how human thought has been shaped through the centuries by ìtools of the mindîófrom the alphabet to maps, to the printing press, the clock, and the computeróCarr interweaves a fascinating account of recent discoveries in neuroscience by such pioneers as Michael Merzenich and Eric Kandel. Our brains, the historical and scientific evidence reveals, change in response to our experiences. The technologies we use to find, store, and share information can literally reroute our neural pathways. 

Building on the insights of thinkers from Plato to McLuhan, Carr makes a convincing case that every information technology carries an intellectual ethicóa set of assumptions about the nature of knowledge and intelligence. He explains how the printed book served to focus our attention, promoting deep and creative thought. In stark contrast, the Internet encourages the rapid, distracted sampling of small bits of information from many sources. Its ethic is that of the industrialist, an ethic of speed and efficiency, of optimized production and consumptionóand now the Net is remaking us in its own image. We are becoming ever more adept at scanning and skimming, but what we are losing is our capacity for concentration, contemplation, and reflection. 

Part intellectual history, part popular science, and part cultural criticism, The Shallows sparkles with memorable vignettesóFriedrich Nietzsche wrestling with a typewriter, Sigmund Freud dissecting the brains of sea creatures, Nathaniel Hawthorne contemplating the thunderous approach of a steam locomotiveóeven as it plumbs profound questions about the state of our modern psyche. This is a book that will forever alter the way we think about media and our minds.

 
 
- (UIImage*)screenshot

{

    // Create a graphics context with the target size

    // On iOS 4 and later, use UIGraphicsBeginImageContextWithOptions to take the scale into consideration

    // On iOS prior to 4, fall back to use UIGraphicsBeginImageContext

    CGSize imageSize = [[UIScreen mainScreen] bounds].size;

    if (NULL != UIGraphicsBeginImageContextWithOptions)

        UIGraphicsBeginImageContextWithOptions(imageSize, NO, 0);

    else

        UIGraphicsBeginImageContext(imageSize);

    

    CGContextRef context = UIGraphicsGetCurrentContext();

    

    // Iterate over every window from back to front

    for (UIWindow *window in [[UIApplication sharedApplication] windows])

    {

        if (![window respondsToSelector:@selector(screen)] || [window screen] == [UIScreen mainScreen])

        {

            // -renderInContext: renders in the coordinate space of the layer,

            // so we must first apply the layer's geometry to the graphics context

            CGContextSaveGState(context);

            // Center the context around the window's anchor point

            CGContextTranslateCTM(context, [window center].x, [window center].y);

            // Apply the window's transform about the anchor point

            CGContextConcatCTM(context, [window transform]);

            // Offset by the portion of the bounds left of and above the anchor point

            CGContextTranslateCTM(context,

                                  -[window bounds].size.width * [[window layer] anchorPoint].x,

                                  -[window bounds].size.height * [[window layer] anchorPoint].y);

            

            // Render the layer hierarchy to the current context

            [[window layer] renderInContext:context];

            

            // Restore the context

            CGContextRestoreGState(context);

        }

    }

    

    // Retrieve the screenshot image

    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();

    

    UIGraphicsEndImageContext();

    

    return image;

}



 
 
If you are looking for a way to hide some of bar buttons, just do this

[startSlideShowBB setWidth:0.01f];

 
 
In ios, there are plenty of 3rd party code that you can add to your project. Be it for graphs or animations or some other thing. If you are building you project as ARC compliant and if these external projects are not ARC, then it wont build.

To solve this, go to Build Phases - Compile Sources . For the files of external project, add compiler flag -fno-objc-arc


This tells the compiler to ignore ARC while compiling those codes. A project can have both ARC and NON ARC code running together.
 
 
 UIFont *font = [UIFont boldSystemFontOfSize:11.0f];

NSDictionary *attributes = [NSDictionary dictionaryWithObject:font
                                                     forKey:UITextAttributeFont];
[segmentedControl setTitleTextAttributes:attributes forState:UIControlStateNormal];

 
 
Uri smsUri = Uri.parse("tel:100861");

Intent intent = new Intent(Intent.ACTION_VIEW, smsUri);

intent.putExtra("sms_body", details);

intent.setType("vnd.android-dir/mms-sms"); 

context.startActivity(intent);

 
 
final Intent emailIntent = new Intent( android.content.Intent.ACTION_SEND);

emailIntent.setType("plain/text");

emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL,

new String[]{"hashir@mobware4u.com"});

emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Feedback Prayer Time App v" + PrayerTimeActivity.VERSION);

emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "");

startActivity(Intent.createChooser(emailIntent, "Send mail..."));