Articles Archive for March 2009
Google, Wordpress »
Some of the useful wordpress plugins i use. This makes my website convinient for my users. Let make your website convinient one.
1) Add to Any Share/Save/Bookmark Button:
Helps readers share, save, bookmark, and email your posts and pages using any service, such as Delicious, Digg, Facebook, Twitter, and over 100 more.
http://wordpress.org/extend/plugins/tags/addtoany
2)Akismet:
Automattic Kismet (Akismet for short) is a collaborative effort to make comment and trackback spam a non-issue and restore innocence to blogging, so you never have to worry about spam again.
http://wordpress.org/extend/plugins/akismet/
3)All in One SEO Pack:
Automatically optimizes your Wordpress blog for Search …
Google, Wordpress »
To avoid clicking our own google adsense, there is a hack..
This will save our adsense account.
C:\Windows\System32\drivers\etc
From the above path you can able to see hosts file just open that with Notepad
you might able to see the below line.
127.0.0.1Â Â Â Â Â Â localhost
Just add the following on the another line.
127.0.0.1 pagead2.googlesyndication.com
Â
Now open your website in browser… ah wow google ads are blocked and there is nochance of clicking our own ads..
If you clicked your own Google Adsense..follow the link.
https://www.google.com/adsense/support/bin/answer.py?answer=23921
Design »
Patterns make our website background great, instead of using plain background we shall got for pattern background to make our sites look better.
But keep in mind, when you using patterns that should match our website and that should not look different from the website.
There are site where you can download patterns directly for free.
Squid
Â
Â
Ava
Â
DinPattern
Â
Everyday Icons
Â
Â
IF you want to create your own patterns.. no problem there are site where we can generate our own
patterns.
Â
 StripMania
Â
Â
StripDesigner
Â
Â
Tartan
Â
Â
Pixelknete
Â
Cheers
RED5 »
Last friday i tried to install RED5 0.7 but i was not sucessful with that installation after hours
of effort spend on the installation.
Then and tried install RED5 0.6 and that was working awesome.
I just want to share what are the things i had done to make that configuration sucessful.
Some of the prerequisites are
Check whether you system has jre1.5/JDK 5 with JAVA_HOME and CLASSPATH variables are set
properly.If not download it here
Here is my Setings
CLASSPATH: .;C:\Program Files\Java\java1.5\lib\ext\QTJava.zip;C:\Program Files\Java\java1.5\bin
JAVA_HOME:C:\Program Files\Java\java1.5
After Checking both are set properly.
Follow the steps
1) Download the Red5 v0.6.3 final exe …
Wordpress »
Adding Google adsense to Wordpress blog is a few steps away and there is no need for plugins.
And to add Google adsense to wordpress blog we are going to use text widget available in wordpress.
So momentize your blog with Google Adsense. And make money from your blog.Earn money from blog.
Step 1: Login to your wordpress as administrator
Step 2: Click on Appearance
Step 3: Select Widgets
Step 4: Add Text widget
Step 5: Click on Edit widget
Step 6: Enter some caption that attracts users.
Step 7: Page your Google Adsense code in the text area.
CR XI, Crystal Reports »
Symptom
CR by default will not sort the report based on ASCII values.
Dificulty:
Intermediate – Expert
Workaround:
You need to create a formula with following code :
Â
ASC({tablename.fieldname})
Sort the report based on this field. Now, you can see that the report is sorted based on ASCII values.
Above steps will help to sort the report based on ASCII values.
Â
CR XI, Crystal Reports, Uncategorized »
Symptom
In Crystal Reprots Normally the number of entries in the drop-down list box in the “Select
Expert†window is limited since the database has more values:
Difficulty:
Intermediate – Expert
Solution:
To increase the number of entries in the drop-down list box in the “Select Expert†window,
try the following steps:
1. Close the Crystal Reports XI.
2. On the ‘Start’ menu, click ‘Run’.
3. Type ‘Regedit’ in the ‘Open’ text box, and then click ‘OK’.
4. In the Windows Registry Editor, navigate to the following sub key:
Update the following registry:
HKEY_LOCAL_MACHINE\SOFTWARE\Business Objects\Suite 11.0\Crystal Reports\ DatabaseServer\
Select the string “MaxNBrowseValuesâ€, right click …
ActionScript 2.0, ActionScript 3.0 »
We can trace as many variables or Objects with single trace statements in both Actionscript 2.0 and Actionscript 3.0 without concat operator ‘+’
Actionscript 2.0
var one:Number = 1;
var two:String = “two”
trace([one, two]);
Actionscript 3.0
var one:Number = 1;
var two:String = “two”
trace(one, two);
one difference is that no need to use square brackets in AS3.0
ActionScript 3.0 »
In Flash CS3 + AS3 there is no ReleaseOutside Event, so there is a hack or trick to simulate the ReleaseOutside in AS3.
This tutorial we are going to create a draggable object and going to simulate the ReleaseOutside Event on it. One more thing what we going cover is how to access Stage class in Class type programming.
Before covering the topic ReleaseOutside Event in AS3 let us have a look at accessing Stage variables in Class type programming.
Error:
TypeError: Error #1009: Cannot access a property or method of a null …
