jQueryMobile Jump Start PRO
On friday december 20th 2013 I delivered a short jump start lecture about jQueryMobile and its relevance for mobile hybrid applications development. The lecture took place in HIT. You can find my slides at http://www.slideshare.net/lifemichael/jquerymobile-jump-start201312. I will be more than happy to get your feedback about my lecture. More info about my new coming professional courses can […]
MongoDB Jump Start PRO
On friday december 20th I delivered a short jump start lecture about MongoDB and about no-sql databases in general. The lecture took place in HIT. You can find my slides at http://www.slideshare.net/lifemichael/mongodb-jump-start201312. I will be more than happy to get your feedback about my lecture. More info about my new coming professional courses can be found at http://tinyurl.com/lifemichaelhitcourses.
Tips for Learning Programming PRO
On friday december 20th I delivered a short lecture that covered my personal tips for learning programming. The lecture took place in HIT. You can find my slides at http://www.slideshare.net/lifemichael/tips-for-learningprogramming201312. I will be more than happy to get your feedback about my lecture. More info about my new coming professional courses can be found at http://tinyurl.com/lifemichaelhitcourses.
Chrome Web Browser Console PRO
The Chrome web browser provides us with useful capabilities for debugging our code. I have recently updated the Debugging slides in my JavaScript Programming course with fresh new video clips that explain vairous practical capabilities. You can find my JavaScript Programming course community version available for free at http://abelski.lifemichael.com.
The Numeral.js JavaScript Library PRO
The Numeral.js JavaScript library assists us with getting the required formats for the numbers our program uses. The following code sample shows how simple it is to use this library in order to manipulate the format of the numeric values we use in our code. <!DOCTYPE html> <html> <head> <title>numeral.js demo</title> <script src=”http://cdnjs.cloudflare.com/ajax/libs/numeral.js/1.4.5/numeral.min.js”> </script> </head> […]
The Pixastic.js JavaScript Library PRO
The Pixastic JavaScript library allows us to perform various operations on images we use in our code. The following code sample shows how simple it is to use this JavaScript library in our code. <!DOCTYPE html> <html> <head> <title>pixastic.js demo</title> <script src=”pixastic.core.js”></script> <script src=”glow.js”></script> <script type=”text/javascript”> function changepix(img) { var newpix = Pixastic.process(img, “glow”, {amount:0.2}); newpix.onmouseout […]
The List.js JavaScript Library PRO
The List.js JavaScript library allows us to manipulate lists, tables and other similar structures in our code. Using this library we can easily filter, sort and allow the user to perform the basic CRUD operations. The following code sample shows how simple it is to use this JavaScript library. <!DOCTYPE html> <html> <head> <title>pixastic.js demo</title> […]
Gliffy Diagrams Review PRO
The Gliffy Diagrams application can be installed on your Chrome for free. It allows you to draw various types of diagrams, such as basic UML and flow charts. I chose to use it in my introduction to programming course. The tools itself is fairly basic and misses the finish we would have expected from a […]
jQueryMobile, Ajax, WebSockets, MongoDB & PhoneGap Free Lectures INFO
On December 20th, I am goimg to deliver 6 short jump start free lectures in Holon Institute of Technology. The first lecture starts at 0800 and it covers my personal tips for learning programming languages. I will overview my recommened tips and share my experience. This lecture is highly recommended for every person who wants […]
Debugging in Slim Framework PRO
The Slim framework allows us to enable a debugging mode. Once doing it, each time an exception is thrown the Slim framework will generate a detailed debugging message. The following code sample shows how to do it. <?php namespace Com\LifeMichael\Samples; require ‘Slim/Slim.php’; \Slim\Slim::registerAutoloader(); $application = new \Slim\Slim(array(‘debug’ => false)); $application->get( ‘/dbg’, function () { $temp […]