Junior/Senior PHP Developer 
He or she will provide their technical expertise to lead a team of Junior Developers building a 3-tier web application. Will gather and analyze requirements, lead the design, development and implementation of the product. more...

Welcome to Web 3.0: Now Your Other Computer is a Data Center

This article is written by Marc Benioff, chairman and CEO of salesforce.com. He has been widely recognized for pioneering innovation with honors such as the 2007 Ernst & Young Entrepreneur of the Year, the SDForum Visionary Award, Alumni Entrepreneur of the Year by the University of Southern California (USC) Marshall School of Business, and being [...]



10 Ways To Get Design Approval

One of the most challenging parts of the web design process is getting design sign off. It can prove time consuming, demoralizing and if you are not careful can lead to a dissatisfied client. What is more you can end up with a design that you are ashamed to include in your portfolio. How then [...]



Mobile 2.0

Thinking 2.0 As web geeks, we have a thick skin towards jargon. We all know that “Web 2.0” has been done to death. At Blue Flavor we even have a jargon bucket to penalize those who utter such painfully overused jargon with a cash deposit. But Web 2.0 is a term that has lodged itself [...]



HOW TO easily verify your website design in different browsers/OS’s

Use the free open-source online service – Browsershots. Browsershots makes screenshots of your web design in different browsers. All you need to do is specify for which of the 40 browsers on Linux, 12 browsers on Windows & 4 browsers on Mac OS you want your screenshots and submit your web address. You can optionally [...]



HOW TO send an email programmatically using C# with GMail

This is derived from a forum posting. System.Net.Mail.MailMessage mail = new System.Net.Mail.MailMessage(); System.Net.NetworkCredential cred = new System.Net.NetworkCredential(“yourid@gmail.com”, “yourpwd”); mail.To.Add(“acme@acme.com”); mail.Subject = “subject”; mail.From = new System.Net.Mail.MailAddress(“yourid@gmail.com”); mail.IsBodyHtml = true; mail.Body = “message”; System.Net.Mail.SmtpClient smtp = new System.Net.Mail.SmtpClient(“smtp.gmail.com”); smtp.UseDefaultCredentials = false; smtp.EnableSsl = true; smtp.Credentials = cred; smtp.Port = 587; smtp.Send(mail); System.Net.Mail is the namespace used [...]



HOW TO make web pages “cross browser”

An oft repeated question on the online message-boards is how to make web pages render & behave the same in IE, Firefox and other popular browsers. This does not have an easy answer. The incompatibilities are due to the browser wars & the host of non-standard HTML & scripting features that the different browsers have introduced.



Page 5 of 12« First...3456710...Last »