Saturday, July 18, 2015
Top searched keywords on Google by people
This summary is not available. Please
click here to view the post.
Sunday, July 5, 2015
How to add GoogleMaps to an iOS Application?
Steps to follow
Step 1: Create a new iOS project in XCode (Single View Application)
Step 2: Locate GoogleMaps.Framework and GoogleMaps.bundle from your local system ( if you do not find these files, please download them from Google)
Step 3: Drag these two files into your project. Check the box which says "Copy Items..." and click "Finish"
Step 4: Go to "Build Phases" under targets and expand "Link Binary With Libraries"
Step 5: Click the "+" button to add the following Frameworks
Step 1: Create a new iOS project in XCode (Single View Application)
Step 2: Locate GoogleMaps.Framework and GoogleMaps.bundle from your local system ( if you do not find these files, please download them from Google)
Step 3: Drag these two files into your project. Check the box which says "Copy Items..." and click "Finish"
Step 4: Go to "Build Phases" under targets and expand "Link Binary With Libraries"
Step 5: Click the "+" button to add the following Frameworks
- AVFoundation.framework
- CoreData.framework
- CoreLocation.framework
- CoreText.framework
- GLKit.framework
- ImageIO.framework
- libc++.dylib
- libicucore.dylib
- libz.dylib
- OpenGLES.framework
- QuartzCore.framework
- SystemConfiguration.framework
Step 6: Add a new file to your project folder of the type "Objective-C File" and click "Next" button
Step 7: Give any name to the file ( Ex- Test) and click "Create")
Step 8: Now, XCode will bring up a message " Would you like to configure an Objective-C bridging header?"
Step 9: Click "Yes" to create a "Bridging Header" file which will act like a bridge between your SWIFT and Objective-C
Step 10: Delete the file "Test.m" which is automatically created
Step 11: Open the xxxx-Bridging-Header.h and type #import<GoogleMaps/GoogleMaps.h>
Step 12: Please go to "Build Settings" tab and search for other linker flags
Step 13: Enter -ObjC in the value (Note the - sign and capital letters)
Step 14: Go to link given below "https://console.developers.google.com" and click "Create Project"
Step 15: Here you will find a button named "Create a new key", just click that button
Step 16: Here it show four types of Key formats, select the "iOS Key"
Step 17: Here it will display a blank text box, put the "Bundle Identifier" (Ex- com.example.trymaps)
Step 18: Click "Create" and it will create an API Key
Step 19: Go to AppDelegate.swift file and under the method "didFinishLaunchingWithOptions" add the line "GMSServices.provideAPIKey("AIzaSyAeMHNmiIzWrtul1TCsssHaf4arGwVrXyw")
Step 20: Replace the generated API Key from step 18 in the above line
Step 21: Go to main story board and select the "identity inspector", there it displays many text boxes.
Step 22: Click the scrolling bar in front of the label " Class" and select the "GMSMapView"
Step 23: Now run the project and see the GoogleMap on your project. If you get it, then Congratulations :)
Article by - Praveen Kumar and Abhay Shukle
Thursday, November 6, 2014
Campus Recruitment Drive, Synechron - A glance at BNCOE, Pusad, Maharashtra
Imagine going for a Campus drive to a town, which is not as big as Pune or Bangalore which is 5 hours drive from nearest airport!!
What did I see?
A little bit of scenery?
Something very amazing at BNCOE, Pusad. An English Lab!!
(Left Top) : A Central Controller dashboard which controls all the computers in the Lab
(Right Top): High-Tech english Lab with the latest of the softwares and equipment
(Left Down): Ruchir Godbole, a very dynamic Professor in college running the whole show
(Right down): Post selections in Campuses
One of the softwares that Prof. Ruchir Godbole uses has pre-recorded practice situations where students can practice "conversations" like they happen in real life.
I was amazed to see situations like "US Immigration counter" where the officer asks for a Passport and you have to respond in English and the conversation continues!!
Prof. Godbole, showed us how they are training students in English.
They have very good headsets and mike
An LCD TV for projecting videos to watch, listen, and learn
Deepika Padukone? or Katrina Kaif?
OR
?
I’ve been doing Technology for years. In that time I’ve reviewed and written hundreds of articles, whitepapers and blogs about technology, management, design principles, photography, travel — whatever came to my mind. When I reviewed my server logs in the last few months, I had a few pages that had a few thousand hits and more.
Who is more popular, Deepika Padukone or Katrina Kaif? Now how is this relevant to Technology or blogs?
?? 
Katrina Kaif - Katina Kaif is a ravishing beauty and very attractive and there must be millions across the world following her like crazy. Some of her famous movies are Dhoom 3, Namastey London, Bang Bang, Jab Tak Hai Jaan, Ek Tha TIger, Singh is King, Yuvraaj, Race, New York and more..





Deepika Padukone - Deepika Padukone has been rising to fame in the last few years with so many movies and gaining popularity due to her looks, acting, workout and more that she is beating the numbers set by Katrina Kaif.
Some
of Deepika Padukone;s famous movies are Ram Leela, Chennai Express,
Finding Fanny, Cocktail, Om Shanti Om, Happy New Year, Housefull, Race
2, Bachna Ae haseeno, Dum Maaro Dum and more...



“Why is Deepika and Katrina here?” you might ask. It’s the same question I had recently when I checked some server logs. I am experimenting a bit more about web analytics and Search Engine Optimization and I’m using this blog to keep trying new stuff . How can this benefit you? Are you here for Deepika and Katrina? If so, watch the pics, enjoy. Are you still reading because you got curious about my experiment? Then check it out! I will keep posting my stats soon and figure out how these numbers work. I am also planning to implement some more pages to include Cricketers like Sachin Tendulkar, the master blaster, Ringmaster, Top batsman of the world, Shikhar Dhawan, MS Dhoni, Virat Kohli the smartest cricket player, Suersh Raina and more.
The blogs will definitely not ignore the likes of Amir Khan and his arch competition Salman Khan and Shah Rukh Khan to see how many numbers they amass as opposed to internet searches for Deepika Padukone and Katrina Kaif and check the views generated by Page to try out the phenomenon.
hope you enjoyed reading the blog!
Praveen Kumar, President & Co-founder, Nanite Solutions
praveen.kumar@nanitesol.com
http://www.nanitesol.com
hope you enjoyed reading the blog!
Praveen Kumar, President & Co-founder, Nanite Solutions
praveen.kumar@nanitesol.com
http://www.nanitesol.com
Thursday, October 11, 2012
Basics and Fundamentals in .NET
Some Concepts you must know in Web
Cookie-less sessions
- Some users disable cookies in their browser. If SessionID is stored in cookies, it will not work.
- Cookie-less sessions embed the SessionID in the URL instead. (not the session values itself J )
- In some cases and countries, it's even illegal for an application to require cookies to work!
- is very easy to set in web.config
<sessionState
cookieless="true" />
Sliding expiration
- Cache will expire after a given time (for eg: 20 minutes) if no request is made within that 20 minutes
- If a request is made within the expiration time (20 minutes) it will reset the expiry time for another 20 minutes
string sDescription = "This product is very useful for blah blah....";
//Sliding Expiration
Cache.Insert("SlidingExpiration", sDescription, null,System.Web.Caching.Cache.NoAbsoluteExpiration, TimeSpan.FromMinutes(1));
CSS Sprites
ControlState
HTTPHandler
HTTPModule
eTags
Some concepts you must know in
Garbage Collection
Finalize and Dispose
Generations in Garbage Collection
Finalization Queue
Some concepts you must know in
Framework/C#
Static Constructors
Shadowing
MulticastDelegates
Anonymous methods
Anonymous types
Extension methods
Lamda Expressions
Patterns and Principles
Inversion of Control
SOLID
Singleton
Facade
Factory vs Abstract Factory
SQL
Having and Where clause
Common Table Expressions
Covering Index
Isolation Levels
candidate key, alternate key
SP Best practices
Subscribe to:
Posts (Atom)




