Posts

Showing posts with the label html5

Web now serving out drawing applications!

Image
Html5 is at this time the future of the web especially in terms of graphics. If you do a web search on html5+canvas, you will fine a boatload of information and usable snippets. Starter html5 web based drawing programs. The first one is for younger kids. Napkin notes: (aka canvas paint) Another canvas snippet. aka Canvasshop. This next program draw.io is definitely going on the server! Canvas.io: https://github.com/wtayyeb/draw.io Free book code: http://www.html5canvastutorials.com/cookbook/ $  wget -B http://www.html5canvastutorials.com/cookbook/ -r http://www.html5canvastutorials.com/cookbook/ Online tutorials: http://www.html5canvastutorials.com/tutorials/html5-canvas-element/ Cheatsheet: http://cheatsheetworld.com/programming/html5-canvas-cheat-sheet/ Free book teasers: http://filepi.com/i/LjiT0Uy http://filepi.com/i/uwCVDwS

Tinymce + Simplenote

Image
No install software such as a simple editor, can be a real advantage. Here are two. A no install web editor is tinymce ( http://www.tinymce.com/index.php ) The demo version is nothing to look at, but if you download the development version and change one line of code, it becomes a bit more powerful. Original: <!DOCTYPE html> <html> <head><!-- Hosted --> <script src="tinymce.js"></script> <script>tinymce.init({selector:'textarea'});</script> </head> <body> <textarea>Your content here.</textarea> </body> </html>   With the development package it becomes: <!DOCTYPE html> <html> <head><!-- CDN hosted by Cachefly --> <script src="tinymce.dev.js"></script> <script>tinymce.init({selector:'textarea'});</script> </head> <body>     <textarea>Your content here.</textarea> </body...

Android development.

You can develop for the Android platform: Directly:      Android development kit      http://developer.android.com/sdk/android-4.0.html      http://phonegap.com/ Semi-directly:      Develop the app on the android using web languages.      http://ofps.oreilly.com/titles/9781449383268/      http://www.w3schools.com/ Indirectly: (requires use of a web server)      Develop regular web apps that the Andoid device can access.      http://www.instructables.com/id/Uses-for-your-own-private-cloud/      http://www.w3schools.com/