Session 4: jQuery for the real world (in spanish)

So, are you looking for a good course to become a ninja in jQuery programming? well, start this course and at the end of it, you will understand this awesome library and you will be able to create front-end applications from scratch! This is the fourth session of this course, in this video you will…

Session 3: jQuery for the real world (in spanish)

Hi friends! Here is the new session of our jQuery course, enjoy and share the video. This class includes: Creating events in the most optimized way How to use “chaining” Accessing Data attributes (HTML5) Tips about responsive web design with Bootstrap 3 Visit the repository on Github to get all the code: https://github.com/alex-arriaga/jquery-para-el-mundo-real

How to compile Java programs by using command line

So, do you need to compile your Java code using the command line? Don’t worry, just follow type command and it will be very easy! // If we are in the root of the application javac -d ./bin -classpath /Applications/eclipse/servers/apache-tomcat-7.0.50/lib/servlet-api.jar src/com/base22/servlets/*.java -d: destination directory. In our example, the packages with bytecode will be generated into…

Session 2: jQuery for the real world (in spanish)

Hi again! Here is the second session of our jQuery course, please feel free to share it, download it or watch it as many times you want, it is totally free! In this session following topics are shown: Validation and use of  jQuery from a CDN Generation of content dinamically Iterating into Arrays and exploring…

How to print Attributes enumeration in Java (javax naming directory Attributes)

This is only a little piece of code to print all the IDs and values of a javax.naming.directory.Attributes. If you want to know more about this interface, please see official documentation (http://docs.oracle.com/javase/7/docs/api/javax/naming/directory/Attributes.html), but here, you have a little explanation about it: This interface represents a collection of attributes. In a directory, named objects can have…