Can someone explain WebKit? [closed] - webkit

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am trying to understand WebKit properly. I understand its the browser engine. But its not clear to me what exactly it contains and more importantly what does it not contain? The one thing I am having trouble placing is the JS engine. Is the DOM implementation part of WebKit?
Where does the JS engine (like V8) fit? Going by this page I assume that the SubResourceLoader towards the end of the image is loading the JS. But the JS also changes the DOM (or uses the DOM) so it needs to be integral part of the WebKit engine.
So can some one explain what WebKit does and more importantly what it does not do?
Thanks a lot for your help.
EDIT: I found this document which explains all I need very clearly.

Have you looked at the documentation? This part describes the various components.
Also, Paul Irish wrote a decent overview that you should read.

Related

markdown to uiview/nsview [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am trying to process a markdown string to display it in either a scrollable UIView or NSView on iOS and OSX in Objective-C/Cocoa. Is there a library available to implement this?
I have had a quick look on Google and there doesn't seem to be any obvious library to use.
I'm not sure if there is a library out there for Markdown, but if I had to add support for it in my app I'd directly translate it to HTML markup and show that in a webview. Provided it doesn't have to be editable, of course.
Following up on what Lvsti said, if you make use of one of the many Javascript Markdown interpreters through a Webview, you wouldn't even need to do the translation yourself; just make sure the script is loaded in your Webview and fire the appropriate Javascript selector to feed in the Markup.

How to make a clickable map in iOS [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I've done this with Flash and Actionscript but does anyone know how I'd even begin to make a clickable map in iOS?
Is using cocos2d a good approach?
I want to make a clickable map of countries into a mini-game.
Did you know you can create iOS applications utilizing Flash 5.5?
http://www.adobe.com/devnet/logged_in/abansod_iphone.html
Some other good resources:
http://www.gotoandlearn.com/play.php?id=116
Just some food for thought.
I have done a few simple things thus far like Rss readers with no issues. Never done a large game.

objective-C basic concepts [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I have recently started developing iPhone apps without any prior theoretical knowledge about iOS or Objective-C, could someone tell where should i start reading about objective C ?
An excellent starting point is the Apple documentation. There are some good books around, too.
After grasping the language constructs, your next stop for more specific information about any iOS controls, concepts and techniques, can be the iOS Developer Library, which is full of guides, references and FAQs.
My favorite site is given below, It includes most of the tutorials and stuff. Hope that helps you. Also you can start with guide from apple
http://www.raywenderlich.com/tutorials
http://www.codeproject.com/Articles/88929/Getting-Started-with-iPhone-and-iOS-Development
I recommend the following link
http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/ObjectiveC/Introduction/introObjectiveC.html
You can also use Objective-c tutorial by lynda.com

Improving the SEO of my website [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I have recently uploaded a website for basic web designing tutorials with proper examples and demos. I wanna improve it, such that it comes in google results. ? can anyone please suggest me what to do for the same.I have already used meta tags in my website
http://sillythingsthatmatter.in/
Thanks :)
I don't now yet, but I was told not to use dirty trick in SEO (like white text on white background etc.), since once google discovers it, you'll get a big penalty, a lot of negative points!

Can anybody explain the structure of the Apache server? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
How does the Apache web server work? Can someone explain it in detail?
Start with the Apache architecture overview to understand the basic components and data flows for Apache. Then, you probably want to go into the developer documentation, as the list module configuration options in the docs is not too helpful in understanding how does everything work.
Finally, comparing Apache to other popular open-source servers such as Lighttpd would show you what tasks are approached in a similar way by different programs, and where there are trade-offs (speed vs. features, for example) that differentiate between the servers.
It's magic. Don't even bother trying understand it.