FSX and ESD SDK, what is the difference? - simulation

I am interested in SimConnect for FSX. I find the SimConnect SDK docu under ESP - is this the same SimConnect as featured under the FSX SDK?
If there is a difference, what is it?

I found the answer here: http://www.fsdeveloper.com/forum/showthread.php?t=175529
Basically it is the same, find the details in the answer above.

Related

Scalameta's Semantic API

In Scalameta's tutorial, it notes that the Semantic API can be used for name resolution (println => _root_.scala.Predef.println). The FAQ "How do I use the Semantic API?" links to scalafix, but I was unable to find a tutorial or concrete examples. So I'm still unclear. Can someone point me to some specific examples or a tutorial?
Thanks!
Received the following answer from Ólafur Páll Geirsson on gitter:
you can try InteractiveSemanticdb
https://github.com/scalameta/scalameta/blob/master/scalameta/interactive/src/main/scala/scala/meta/interactive/InteractiveSemanticdb.scala
it's part of the interactive module
With it I was able to answer all my questions.

Is there an *up to date* Facebook login example or documentation?

My question is - is there any example documentation or example project showing how to do authentication with Facebook that is up to date for iOS7?
Because trying to go through bad documentation is hard enough, but when the documentation is out of step with the source code, when both use deprecated iOS methods, or show evidence of bugs being present, or say to use nonexistent methods then its just beyond frustrating.
In particular:
The documentation says on the app becoming active to call [FBSession.activeSession handleDidBecomeActive]. But no such method exists.
So looking at what the scrumptious sample code does, it does nothing, instead it talks about a bug they have in their code. BUG: for the iOS 6 preview we comment this line out to compensate for a race-condition in our state transition handling
So should an app do anything on the app becoming active and if so what?
The documentation and sample implement application:openURL:sourceApplication:sourceApplication however its deprecated. Therefore is there an alternative?
I'm a little confused by this question.
handleDidBecomeActive is a method in FBSession, see https://developers.facebook.com/docs/reference/ios/current/class/FBSession/
application:openURL:sourceApplication:annotation has NOT been deprecated for UIApplicationDelegate (see https://developer.apple.com/library/ios/documentation/uikit/reference/UIApplicationDelegate_Protocol/Reference/Reference.html#//apple_ref/occ/intfm/UIApplicationDelegate/application:openURL:sourceApplication:annotation:). Perhaps you were thinking about application:handleOpenURL:?
What version of the sdk are you using? The ones >= 3.8 have been updated for iOS 7.

Where can I find a feed of App Store new releases?

Not sure this is the correct forum for this, and if it isn't, my apologies in advance.
Is there a feed of App Store new releases somewhere? Or a feed/list of apps with their category and release date?
This listing is gone from the App Store proper and I'd like to see if it would be possible to make an app to replace it's functionality.
https://itunes.apple.com/us/rss/newapplications/limit=100/xml
You can build your own category-specific feed here: https://rss.itunes.apple.com/us/
PS: Only added this answer because Linuxios' answer leads to a page with an XML error because 300 results doesn't seem allowed. I tried with 200 and it worked so it seems a bit odd.

iOS: Foursquare shout or creating event

I am working with foursquare a for the first time, having hard time with this: Is there any API from the foursquare that supports function to allow shout out? If there is can someone tell me the link. I am really stuck with this stuff..
there is a good example in github for this,hope that helps you. :
https://github.com/Constantine-Fry/Foursquare-iOS-API
This is latest and working FSQDemo works with iOS5 and Xcode4.2 tested. Please read Readme.md first, you need to create your application and put your clientid as mentioned in it.
When you run the application you can get check in and before you do that you have to click on obtain access token.
According to this A shout is Foursquare’s version of a status update or a tweet and from this forum discussion it is passing shout as parameter to url. So there may/must be a way from this sample as it allows check in.
Hope this helps.
Got it.. Thanks with this > https://github.com/baztokyo/foursquare-ios-api/blob/master/README.md

iphone paint application

is there any complete source code available for developing a image editing,paintng application in iphone???if anyone knows plese help me
thankzz
GLPaint, available from Apple...
http://developer.apple.com/library/ios/#samplecode/GLPaint/Introduction/Intro.html%23//apple_ref/doc/uid/DTS40007328-Intro-DontLinkElementID_2
Berkeley had a hw assignment. Students submitted them via wiki so maybe look at those?
http://vis.berkeley.edu/courses/cs160-sp10/wiki/index.php/Individual_Programming_Assignment_3
There is an application named TouchPainter and its source code is available. It contains drawing, color blending, Undo/Redo (Amazing..!!), Save/Open drawings..
Note : It may require very deep level knowledge of Objective C. The whole application's source code is explained in this book "Apress.Pro.Objective-C.Design.Patterns.for.iOS.Mar.2010" available and source code is also available here :
http://www.apress.com/apple-mac/objective-c/9781430233305
I hope it will be helpful to you.. :) Good luck..