Skip to content


Speaking at 2012 Turkey e-Commerce Conference & Expo

On May 30, 2012, I’ll be speaking at the e-Commerce Conference and Expo in Istanbul, Turkey (note: the linked site is in Turkish, but if you view it in Google Chrome, for example, it will translate the pages for you). This is a one-day event, from 9:30 am until 5:00 pm. From 1:40 to 2:25, I’ll be presenting “Creating a Successful E-commerce Venture, or Failing Gracefully” as the conference’s technology session. At the end of this post is the presentation’s description.

If you’re in Turkey specifically, or nearby, I’d recommend you attend. And if anyone has any recommendations as to what I should do while I’m in Istanbul, please let me know!

Continued…

Posted in Web Development.

Tagged with , , , .


What HTML5 Features Are Safe to Use?

One of the great qualities of HTML5 is that even though it has not been standardized yet, you don’t have to wait to use it. Well, if you’re prudent about what HTML5 features you use, that is. For example, in my “Modern JavaScript: Develop and Design” book, I use several of the new HTML5 form elements as they get treated as plain text elements on browsers that don’t support HTML5. Similarly, several new form attributes will be ignored by browsers that don’t recognize them. By adopting select HTML5 features, you can provide a better experience to those using better, current browsers, and rest assured that those using older browsers, or Internet Explorer, will still be able to use your site. The question, then, is what HTML5 features are safe to use and what ones are not?

One good resource for answering that question is HTML5 Please, created by the same brilliant minds that created the HTML5 Boilerplate and the Modernizr library. HTML5 Please covers HTML5, CSS3, and related technologies and while the information is good, the interface is even better. Through a single page and some sweet JavaScript, you can find out all you need to know. There’s a search box at the top and a series of demo filters you can use to quickly find the feature you’re thinking about using. These filters include specific versions of IE, support on mobile device, including older ones, and more. For example, you can quickly find out that the new date input type can be used with caution along with a “polyfill”. As defined by Remy Sharp, a polyfill is:

…a piece of code (or plugin) that provides the technology that you, the developer, expect the browser to provide natively.

So, for example, you can safely use the new HTML5 elements, such as footer, nav, and article, if you also use the html5shiv polyfill.

An alternative resource is When can I use… The interface isn’t as clean as HTML5 Please, but the site provides a lot of information and uses table to present most of its data. When can I use… covers CSS, HTML5, JavaScript APIs, SVG, and much more.

Let me know if there’s a good HTML5 resource that you’ve come to rely upon!

 

Posted in Web Development.

Tagged with .


“The Five Biggest JavaScript Misconceptions” Article Published Online

Peachpit Press has published online an article I wrote titled “The Five Biggest JavaScript Misconceptions“. This is one of three articles I wrote in support of my “Modern JavaScript: Develop and Design” book. In the article, as the title states, I discuss what I believe are the five biggest JavaScript misconceptions, and by “biggest”, I mean both “popular” and “egregious”. It’s a quick read, so check it out. Thanks!

Posted in JavaScript.

Tagged with , .


Under the Hood of Yii’s Component Architecture

If you haven’t yet seen it, Steven O’Brien wrote an in-depth series of articles on the Yii framework’s component architecture, posted at phpmaster. In the series, O’Brien looks at the CComponent base class in detail. Every class in Yii is an extension of CComponent, so understanding what it brings to the table can be quite useful to the Yii developer. Part 1 looks at the classes key properties and methods. Part 2 discusses events. And part 3 explains the behaviors. If you’re using Yii, it’s worth reading these to better understand what’s going on at the fundamental level.

Posted in MySQL, PHP, Web Development.

Tagged with , , .


What is Larry Thinking? #52 => Twitter and More!

In this edition…

Continued…

Posted in JavaScript, Mac OS X, Web Development.

Tagged with , , , , , , , , .