Archive for Software

Flash ActionScript IDE : Dark Themed

Over the weekend, I was trying to redesign my Flash Actionscript IDE to look dark…looks like I’m addicted with Dark Themes now, my eye pupils are more relaxed on the new colors settings.  For those whom are using big CRT can consider this; what I heard was using darker themes tend to save energy and produce lesser heat. Anyway, take a look at my cool actionscript IDE now.

Here are my settings but, it does that few hours for your eyes to get accustomed with the sudden switch of light to dark theme. Is just like driving in heavy rain using sun glasses. Then again, you can always revert to default settings if you don’t like it.

Settings

Font Used (Windows) : Consolas
Font Size : 11 
Foreground : #FFFFFF
Background : #333333
Identifiers : #0066CC
Keywords : #FF3399
Comments : #808080
Strings : #99CC00

Surviving Microsoft Windows Vista SP1

Yeah, a biggy and vague topic. Those of you who wondered into my site probably read a lot of forums and technical blogs each stating their own style of installing Microsoft Windows Vista.

windows-vista-box

About a few months ago, I was trying to upgrade my Pentium 4 to Windows Vista SP1, but encounter tonnes of blue screen problem to system hangs on boot up. IT WAS A NIGHTMARE!

Then, I reformatted and stopped the SP1 from auto updating until I resolved this issue. Later, this month - I decided to get a new set with better hardware and hopefully having less trouble in installing to Vista. Prior to that I’ve done some research here and there.

I listed out some of the important pointers one should take before considering about installing Vista on your test machine.

Read the rest of this entry »

Aptana IDE Customization : Programming with Dark Theme

Normally editor such as notepad, editplus, notepad++, visual studio, devstudio and many more. They came with light theme by default, which means utilizing white as the background and the syntax as the colored ones. Have you ever seen a dark theme before?

 A dark theme looks like a classical o/s prompt command or linux terminal. I found a wonderful color customization from Boris Popoff that day, regarding the customization of color template for dark theme for Aptana IDE. After using Aptana IDE for quite some time, I find dark theme suits my vision better, cause I always thinks that white background on the lcd monitor can be way too bright. Well that’s just my field of vision.

 

For those who are new to Aptana IDE - Free javascript IDE can read my review here

 

php_small

 

The font used for this is MS-Consolas. When tweaked your IDE will look like the picture above.

To download this color customization template for Aptana IDE check out http://gueschla.com/labs/green-chaud/.

Handling Blue Screen of Death DIY (BSOD)

Today we are going to talk about the infamous Blue Screen of Death or known for short as BSOD. Microsoft named them as Stop errors designed to safeguard the system if the system encounters condition that compromises safe system operation. Ironically, I dont feel much of a pain when I was diagnosing BSOD for third party pcs however, I can get extremely desperate and frustrated if that BSOD happened to me.

 

Read the rest of this entry »

Adobe Spry AJAX LoadURL Method

Oh yeah, just in case I forget I’ll just post this one to remind me. Adobe Spry AJAX LoadURL is one of the method used by Spry Framework to post data accross site without refreshing of pages.

There’s other methods as well, such as Post Form using XHR method. But I’ll be posting on this one first

Like all AJAX you can customized your data to send and trigger a callback functions. Spry LoadURL is part of SpryData.js so make sure you include it in your script tag.

Let’s take a look of the parameters to use:-

var req = Spry.Utils.loadURL = function(method, url, async, callback, opts);

More info on how to use it at here. Here is my demonstration for php.

I wrote some sample on how I use loadURL to with sample effect for callback here.

Check out more on source code sample.

Read the rest of this entry »