Yes, the long waited my new MacBook Pro finally arrived. It came with 2.4GHz Intel Core 2 Duo processor with 3MB on-chip shared L2 cache running 1:1 with processor speed, Multi-Touch trackpad for precise cursor control; supports two-finger scrolling, pinch, rotate, three-finger swipe, four-finger swipe, tap, double-tap, and drag capabilities and glossy LED-backlit widescreen display.
Follow this link for the more details & the full spec.
http://www.apple.com/macbookpro/features-15inch.html
Click here for more photos.
PS: I still couldn’t find a good laptop bag for this in Sri Lanka. I tried ODEL & PG Martin but they didn’t had anything that I could satisfy with. Any suggestions?
Finally I managed to upgrade the blog in to the latest version of Wordpress. Since I had some hack attack on my blog I suppose do this long time back. But only yesterday night I got some time to do this.
And here goes the list of updats;
OK, That’s all for today. Hopefully next update will be about a new skin!!!
So finally I have updated the About page. Since I left the Aranxa last week thinking of updating this page but finally today got a time to do it.
Chamara
My name is Chamara Peiris, UI Lead/Information Architect living in Panadura, Sri Lanka, a small beautiful island in the Indian ocean. My blog is an online source for topics ranging from XHTML/CSS to web technologies to news relates to Sri Lanka.I began my career in 2001 as a Trainee Web Developer. The first 2 years were mainly filled with UI Work with some more development work.
From 2003 onward, designing websites and user interfaces was my main focus.
In 2004 I’ve discovered Web Standards after seeing the CSS Zen Garden. Since then I’m actively promoting the benefits of Web Standards through my blog and trying to popular and implementing web standards in Sri Lanka.
Minlo Technologies
In 2006 I’ve co-founded Minlo Technologies together with Damitha Wickramasinghe. I’m the CTO of Minlo Group. We have been working with some local clients as well as with couple of foreign collaborations.My vision is to make the web better WEB for ALL.
So this is the first time i am blogging from out of Sri Lanka.
Since i am going to London for some office work my transit is Doha airport. So I am putting this short blog post from Doha airport.
Hoping to blog from London with some photos, but it will depend on the office work as I will be at London only for 7 days.
අදට à·€à·à¶© ඉවරයි. ගෙදර ගිහිල්ල෠මà·à¶»à¶à¶±à·Š à¶‘à¶š දුවන්නං. මෙහෙ ව්දුලිà¶à·Š කොටනâ€à·€à·.
මේක à¶à¶¸à¶ºà·’ à¶‘à¶´à·à¶¸ කරන à·€à·à¶©à·š. ටෙලිෆà·à¶±à·Š එකෙන් වරු ගනන් මීටින් à¶à·’à¶¶à·Šà¶¶à¶§ පස්සෙ à·€à·à¶© කරන්න වෙලà·à·€à¶šà·Š à¶±à·à·„à·. ඉà¶à·’න් à¶Šà¶§ පස්සෙ රෑ වෙනකන් හිටපන්කො! “පීට්සු à¶šà·à¶½à· “රෙඩ් බුල්” à¶¶à·“à¶½ ලඟදිම ලෙඩක් හද෠ගන්නâ€à·€ කියල à¶…à¶´à·™ අම්ම කිවිවà·.
සිංහල බ්ලොග් මà·à¶»à¶à¶±à·Š à¶‘à¶š පටන් à¶œà¶à·Šà¶ à¶’à¶à·Š මම à¶à·à¶¸à¶à·Š â€à¶”â€à·†à·’ස් à¶‘à¶šà·š. මොනව කරන්නද, ලංකà·à·€à·™ හිටියට සුද්දගෙ වෙලà·à·€à¶§ à¶‘à¶´à·à¶ºà·’ à·€à·à¶© කරන්න. මම මේ අලුà¶à·Š සයිට් à¶‘à¶šà¶šà·Š හදන ගමන්.
Wish everyone a happy & prosperous year!!! and hope this will be a great year for Web Standards
As most of people aware, my birthday was at couple of days back. And today morning I got a lovely birthday card from our UK office fellow Proportians.
In that card our “Creative Handyman” and famous rebel from “Young Soul Rebels“, Danny, The Daddy Barnes, has wrote a creative birthday wish in CSS way
This is it
#chamara {
birthday: happy;
returns: many happy;
arrack: too much;
next-day-illness: none;
}
Great work Danny and thanks for it and to all Proportians…
PS: Danny we are still waiting for YSR T-shirts
The implementation of valid/standard methods, guidelines and best practices will help to produce high quality websites that are accessible to as many as possible. By building valid websites you can save time and money for the development and provides a better experience for the visitor.
Validation is also an important part of web development. Many errors that are hard to find can discover during validation. This is like spell checking and proofreading for grammar and syntax in a document. but is much more precise and reliable than any of those processes because it is dealing with precisely-specified machine languages, not with nebulously-defined human natural language. You can validate your (X)HTML page as well as your CSS.
Here I’m not going brief you about Web Standards, but I’m going to tell how we can use those best practices in Web standards to produce a valid (X)HTML page.
DOCTYPE declaration at the beginning of the file. A DOCTYPE (short for “document type declaration”) informs the validator which version of (X)HTML you’re using, and must appear at the very top of every web page. DOCTYPEs are a key component of compliant web pages: your markup and CSS won’t validate without them.<!DOCTYPE html PUBLIC "- //W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" />xmlns="http://www.w3.org/1999/xhtml" to the <html> element.</p> is not valid anymore.<P> becomes <p>.<hr> becomes <hr />.<p align="right">.<hr noshade="noshade" />.& in place of &. : <a href="foo.php?chapter=1&section=2 /><form> element should have to have a action attribute always: <form action="#"name & id attributes in input element, both should be in same name: <input name="field_name" id="field_name" />alt attribute always for <img> element: <img src="image.gif" alt="" />width & height attributes as in this order in <img> element: <img src="image.gif" width="100" height="100" alt="" /><script type="text/javascript" src="javascript.js"></script>tables only for TABULAR data.<th> for table headers & <td> for table data.<strong><em>…</em></strong>