Top 10 Features of HTML5
List of Top 10 Features of HTML5 New Doctype Still using that pesky, impossible-to-memorize XHTML doctype? <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN”…
Audio Video Control in HTML5
Audio Video Control in HTML5 Audio Support No longer do we have to rely upon third party plugins in order to render audio. HTML5 now offers the <audio> element. Well, at least, ultimately, we won’t have to worry about these plugins. For the time…
Create Sliders with the Range Input in HTML5
How to Create Sliders with the Range Input in HTML5 HTML5 introduces the new range type of input.<input type=”range”> Most notably, it can receive min, max, step, and value attributes, among others. Though only Opera seems to…
Basic AS/400 command abbreviations
Basic AS/400 command abbreviations Command Abbreviations–Verbs ADD – Add CFG – Configure CHG – Change CPY – Copy CRT – Create DLT – Delete DSP – Display GO – Go to a Menu RMV – Remove STR…
Creating a Data File in AS400
Creating a Data File in AS400 To create a file named FTPOUT that is 100 characters in length: CRTPF FILE(MYLIB/FTPOUT) RCDLEN(100) The AS/400 actually creates a file named FTPOUT, a member named FTPOUT and a field of length 100 that is named FTPOUT. To…
How to Create an iSeries Database File
How to Create an iSeries Database File Procedure Launch a BlueZone iSeries Display session. From the BlueZone MenuBar, choose Transfer:Send/Receive. The BlueZone Host File Transfer desktop user interface will launch. From the Host File Transfer MenuBar…
Creating Modal Window or Highslide window using HTML5
Creating Modal Window or Highslide window using HTML5 The modal window is one of the most common UI that we can find in websites. It is commonly used to carry a subscription form, uploading forms (like the one in WordPress), displaying notifications and…
Organizing and Sorting CSS
Organizing and Sorting CSS Compared to other web-related languages, CSS is relatively straightforward and easy to write. But at the same time, it is also hard to organize, particularly when it comes to codes that consist of thousands of lines.…
Add or Remove HTML classes in Jquery
Add or Remove HTML classes in Jquery Adding new HTML class is a no-brainer You can do this with jQuery. This example function below will add and remove my-new-class to the <div>. // ## add class…
How to write code in BASIC Programming Languages
How to write code in BASIC Programming Languages 10 CLS 20 PRINT “Hello, world!” 30 PRINT “I’m learning about commands in BASIC.” 40 PRINT “This text is being printed via the PRINT command.” 50 PRINT “On…