Older blog entries for jbaker (starting at number 11)

Baker Designz 2.0

So I’ve been working on my design skills as of late, and I really wanted to redesign the site and build a cms for it. So, here’s a preview of the new design:

Turn your images on..

Syndicated 2008-11-29 14:08:46 from Baker Designz

Erlang, and the future.

I’m convinced that Erlang is going to see a large increase in popularity in the future. After reading about how the people at Ericsson, where it saw its birth, wrote a electronic switching system with a few million lines of code that should only fail one second every 30 years or every billion seconds. I’ve also read of YAWS ( Yet Another Web Server ), a web server wrote in Erlang that out performs Apache in parallel connections. (See it here) This means that things wrote in Erlang are very scalable. Erlang applications are  also suited to solve heat issues you could find at a data center.

Okay.. So that’s the good.. but what’s the bad? Well first off it has a different paradigm that what many people are accustomed to. It is not Object Oriented, but Concurrency Oriented. Its syntax isn’t C-like to make it easier for you to learn.

Want to learn more? Visit Erlang’s Website

Syndicated 2008-11-05 16:06:54 from Baker Designz

CSS circles using border radius.

After I began using border radius to give elements rounded corners, I began to wonder if circles could be created this way. The corners would have to be half of the height and width. This technique worked in Firefox 3, but not Safari 3.Any ways, I made a circle with that technique.

Works in FF3, Safari 3

view it at http://bakerdesignz.com/code/circle.html .

Syndicated 2008-09-18 21:51:49 from Baker Designz

Google Chrome is great!

Today, Google released their own open source web browser, Chrome. The Javascript rendering engine, v8, that Google uses for Chrome is super fast. The browser was built for speed, security, and the future.  Each separate tab runs in its own sandbox, so if a single tab crashes, it and only it will crash.  It is built from existing open source components including Web Kit and v8. This means that you need not learn how to make hacks sites for Chrome, because if your site already works in Safari, it will work in Chrome.

Oh, and the logo for the project ( Chromium) Looks like a Poke’ Ball!

Syndicated 2008-09-02 22:58:43 from Baker Designz

Frameworks killed the javascript star

After playing around today with prototypejs and scriptaculous, I began to think: “How did the world work without this!?”.  If you compare using a javascript framework for XHR, as opposed to writing the code for each one, there’s no competition between the two. Frameworks, whether  or not they are server-side or client-side, simply do the task they are designed to do: cut development time in half.

Frameworks also bridge the gaps of browser incompatibilities *cough* IE. Code only has to be written in one way, unlike without a framework where you can end up with a lot of ugly try and catches.

One thing frameworks cannot do is write the code for you. You still need an experienced developer to write the code using the framework.  After all, wheres the fun if you don’t have to do anything?

Syndicated 2008-08-20 19:58:47 from Baker Designz

Ruby on Rails is amazing.

Who agrees with me?  I know that has been around since 2004-2005, but why hasn’t it taken over the world yet?  It’s like you can have your cake and eat it too! It comes pre-packaged with my favorite javascript framework, Prototypejs, and the amazing scriptaculous  effects library.  In the screencasts shown on the Ruby on Rails site, a weblog is made using 58 lines of code.    Who uses this wonderful framework you ask?

Well.. just a few..

Twitter, Basecamp, Odeo,43 Things, Backpack, Strongspace, A List Apart.

It goes on and on.

Ruby on Rails is just plain amazing :).

- Justin B

Syndicated 2008-08-17 13:44:46 from Baker Designz

New Site Design!

The previous one left me unsatisfied. This one looks much better in my opinion and is XHTML Strict Validating and CSS 2.1 validating. Comments on it?

Syndicated 2008-07-16 12:41:08 from Baker Designz

A New Project,

I’ve begun full-on development on a new project, Project Moji. This project will be open-source, GPL licensed,

with a heavy implementation of Prototype/Scriptaculous in the UI.

Basically, it will be a photo site, with microblogging, and some social networking features such as messaging.

It is ,  and will continue to be 100% OOP PHP.

Anyone interested in helping development or testing, email me at justin [at] bakerdesignz.com

Syndicated 2008-07-04 17:23:36 from Baker Designz

Why is Prototypejs so great?

For one, it’s no doubt the easiest framework out there. You can use $(’element’) instead of document.getElementById(element). I know that I’m lazy and I prefer using this :).
And going off of an example on protypejs.org, $(’comments’).show() will take an element with the id “comments” and show it if it was previously hidden.

JSON ( JavaScript object notation ) is a fast alternative to XML for transporting data via api’s that is commonly used by many sites such as Vimeo and Twitter . Prototype has a great JSON encoding and parsing support. Used in conjuction with the built it Ajax capabilities that Prototype has, Ajax is relatively easy :) .

Oh yeah, that reminds me of  how great Prototype handles Ajax. It offers a simple cross-browser way to address ajax. How about: new Ajax.Request(’/some_url’, { method:’get’ }) ? I would much rather type 3-7 lines for an Ajax function that 20 plus that does the same thing.

I’m not even going to discuss Jquery here. That’s for another day, another post.

-Justin B

Syndicated 2008-06-29 21:08:10 from Baker Designz

Bigger is not always better!

I just changed Bakerracingtech.com to use 3 files ( besides CSS,images,javascript). 6,641 bytes total.
Aren’t Dynamic pages + cruft-free URL’s the best?

Syndicated 2008-06-28 15:01:21 from Baker Designz

2 older entries...

New Advogato Features

New HTML Parser: The long-awaited libxml2 based HTML parser code is live. It needs further work but already handles most markup better than the original parser.

Keep up with the latest Advogato features by reading the Advogato status blog.

If you're a C programmer with some spare time, take a look at the mod_virgule project page and help us with one of the tasks on the ToDo list!