Today's Question:  What does your personal desk look like?        GIVE A SHOUT

 HTML


  Rails and Web Development - Take the First Step

Getting started with web development isn’t easy. Looking back to when I started, the first few weeks were the toughest to stick with it. For someone who is new to text editors and the terminal – the installation process can be really overwhelming. I recently went through the process of helping some of my friends get set up with Ruby on Rails and after doing it a few times, I realized it would be helpful to write a post that others looking to get started could refer to.The following is not going to fully explain the steps (which at some point will be important to understand). Inst...

2,167 0       WEB DESIGN RUBY RAIL RUBY ON RAILS


  Disable directory listings

Preventing directory listings can be very useful if for example, you have a directory containing important '.zip' archive files or to prevent viewing of your image directories. Alternatively it can also be useful to enable directory listings if they are not available on your server, for example if you wish to display directory listings of your important '.zip' files.To prevent directory listings, create a .htaccess file following the main instructions and guidance which includes the following text:IndexIgnore *The above lines tell the Apache Web Server to prevent directory listings of director...

2,456 0       .HTACCESS DISABLE DIRECTORY LISTING INDE


  Using an Image Submit Button within an HTML Web Page Form

If you're using an HTML form on your web site and would like to use an image submit button instead of the boring standard submit button, this HTML code is for you.In order for your form's input box and your image submit button to line up properly, you will need to place it within an HTML table. In addition, unless your image has a transparent background, you will need to set the table background color to the same color as the image background so that it will seamlessly blend together. <FORM METHOD=post ACTION="/cgi-bin/example.cgi"><TABLE BORDER="0" CELLS...

2,705 0       HTML SUBMIT BUTTON IMAGE


  List of Web Safe Fonts

Here is the list of websafe fonts that I use in my own personal web development. Websafe (or "web safe", "safe for the web") fonts are supposedly fonts that are common among all versions of Windows, Mac, Linux, etc. Fonts that you expect everyone viewing your webpage to have. Please contact me if you know of any other web-safe fonts that should be added to this list. These font names are in typical font-family CSS format, in other words (first choice font), (second choice font), (third choice font), etc. I made them that way so you could easily copy and paste them into your...

4,973 0       WEB CSS FONT SAFE FONT FONT LIST FONT FA


  Web Technologies Need an Owner

Many people seem to assume that the Web will one day become the one and only client computing platform on Earth, therefore it must not be controlled by anyone. This is a dangerous assumption. The HTML, CSS, and JavaScript triumvirate are just another platform, like Windows and Android and iOS, except that unlike those platforms, they do not have an owner to take responsibility for them.The Web has no one who can ensure that the platform acquires cutting edge capabilities in a timely manner (camera access, anyone?). The Web has no one who can ensure that the platform makes real developers happy...

1,914 0       INNOVATION WEB DOMAIN OWNER LEAD CHANGE


  5 Free Open Source Chat Applications For Developers

A chat application allows users to communicate with others via texting, messaging, video and audio conferencing. While developing a web application web masters always think that they should communicate with their audience directly rather than emails, phone or contact forms, or chat applications can be used in various web applications such as social networking sites, business sites for live support etc.We understand the needs of webmasters and that’s why we searched and explored myriad of Google’s pages to find out these 5 free open source chat applications, webmasters can us...

113,127 0       AJAX OPEN SOURCE WEB PR CHAT CHAT SYSTEM


  Roundup on Parallel Connections

A lot of blogging and follow-up discussion ensued with the announcement that IE8 supports six connections per host. The blogs I saw:IE8: The Performance ImplicationsIE8 speeds things upIE8: 6 Connections Per HostIE 8 and PerformanceTesting IE8.s Connection ParallelismIE 8 Connection Parallelism IssuesIt’s likely that Firefox 3 will support 6 connections per server in an upcoming beta release, which means more discussion is expected. I wanted to pull all the facts into one place and make several points that I think are important and interesting. Specifically I talk about:the HTTP/1.1 RFC...

3,040 0       BROWSER CONCURRENT CONNECTION PERSISTENT


  Share on Twitter link

Ever wanted to give your readers, or your client’s readers a chance to share the post quickly on Twitter?The code is straight forward:<a href=”http://twitter.com/home?status=Currently reading http://www.test.com/post-url” title=”Click to share this post on Twitter”>Share on Twitter</a>If you’re using WordPress and want to automate this, simply use the following to insert the link to the current post in the loop into your link:<a href=”http://twitter.com/home?status=Currently reading <?php the_permalink(); ?>” title=”C...

1,973 0       TWITTER SHARE BUTTON CUSTOM CUSTOMIZE