Archive for November, 2007

Halo 3 Pickup Lines

Thursday, November 29th, 2007

bsangel at hawtymcbloggy.com comes up with a Top Ten List that Master Chief fans are sure to enjoy. I have to admit - some of these are actually very good! Check it out!

hawtymcbloggy.com

Your Cellphone is going Open Source! so what?

Wednesday, November 28th, 2007

For those of us tired of carrying around 4 or 5 gadgets in your pocket right now or tired of their $200.00 brick of a phone, this article may be encouraging.

Over the past year, new advances have been emerging in the area of the mobile phone industry that’s have cellphone makers raising their eyebrows. Among the major pieces of news was the fact that Google is introducing a new standard to develop mobile applications using their Android SDK. The toolkit has everything from the Linux 2.6 kernel, Webkit, SQLite, OpenGL and other libraries built with C/C++ so that you may be able to build your application from the ground up and as you see fit.Apple is going Open

The Apple iPhone, seen as the trailblazer for next-gen mobile systems are also reluctantly opening it’s phone to third party developers. So much can be done with it’s UI system ( the term “blank slate” is fitting here ) that it just makes sense to allow developers a shot at creating applications for it. Initially Apple had a very closed attitude about letting developers at the heart of their sleek machine but realizing the competition, they finally had to concede. Regardless of what they say, my gut feeling is that Apple’s definition of “open” might only be as deep as the core libraries and NOT the OS itself.

And now it seems like Verizon is joining the Open Source Movement by announcing today that it will be opening up their network to outside devices and applications by the end of the first fiscal quarter next year. It will work something like this: You will be able to sign up for a Verizon plan with any network authorized phone that you purchase. Applications can also be built for the phones but the safety of these applications will not be monitored by Verizon.

(more…)

Android SDK: Separating Presentation and Logic

Tuesday, November 27th, 2007

The Android SDK borrows a lot of it’s UI philosophy from the world of web applications. It attempts to use XML files to give the developer an easier way to manage layout issues. This reduces the “spaghetti code” that gets produced when munging logic with presentation.Imagine the Possibilities!

The file structure of these XML-based layout files are very simple to grasp. Each class that is a descendant of View can be represented as an element within the layout. The attributes that belong to that element determine how much of the properties of that layout element. The XML files are placed within the res/ folder of your project along with any other assets that your application would require such as images, videos, etc.

Using these XML based layouts, development the User Interface becomes easy. So, you get something like:

public void onCreate(Bundle icicle) {

super.onCreate(icicle);
TextView tv = new TextView(this);
tv.setText(”Hello Android”);
setContentView(tv);
setContentView(R.layout.main);

}

Becoming a better blogger

Monday, November 5th, 2007

So today’s interesting find comes to us from the washingtonpost.com on how to get your blog noticed. I thought it had a lot of interesting information.

In a nutshell:

  • Tell compelling and relational stories.
  • Offer something unique whether it be through your writing tone, style, or area of interest.
  • Make your website aesthetically pleasing, simple, and engaging.
  • Create and visit blogrolls.
  • Create widgets for your page using third party sources.
  • Spend time being responsive to other blogs.
  • It wouldn’t hurt to get noticed by the bigger fish in the pond.
  • Get noticed through blogging awards.
  • Be consistent in your posting habits.
  • Join blogging community sites such as DCBlogs.com and Indiebloggers.org to promote your site.

Definitely something good to chew on. Here’s the link