Free Web Hosting

Google Chrome - New Clean Web Browser

September 5th, 2008 Bala Krishna Posted in Bhopal, Blogging, Browser Stuff, General, Gmail Stuff, Web Design, Web Technology 2 Comments »

I am fan of Safari for clean and minimal design that allow faster web browsing experience then opera, firefox and IE. Just found Google Chrome browser that look like similar to safari in terms of its minimal design. The blue theme is simple stylish and clean just like GTalk. There is no Linux version is released yet, Google guy still working on Mac and Linux version. Hope, mac and Linux geeks will get these versions soon. They have used Apple’s WebKit and Mozilla’s Firefox components and the code is open source to collaborate with web commun ity.

Google Chrome Snapshot

Learn more in Google Chrome video

AddThis Social Bookmark Button

Multiple Blog Posting With WBlogger Offline Mass Blogging Tool

September 5th, 2008 Bala Krishna Posted in Advertising, Blogging, Browser Stuff, Firefox, Firefox Add-On, General, Internet Explorer, Internet Marketing, Social Networking, Tips and Tricks, Web Technology, Window Application, windows xp No Comments »

I was wondering if i could have a tool that can write post to my blogs offline as well as post to multiple blog. A little effort landed me on w.blogger page. W.Blogger is ultimate tool for blog publising from destop. If you have a long list of your blogs then this certainly for you. It simplify publising process and save your lot of time that you can invest in other blogging activity. w.bloggar is compatible with most of the blog platform available that allow you to manage several blogs using different publishing platform from one user interface.

Excellent WBlogger Features:

  • Ability to Post on most popular blog platform
  • Ability to edit post offline
  • Post can be save locally for future update and publising
  • Ability to import post from text files
  • Ability to post on Multiple Categories
  • HTML tags menu alllow you to format text quickly
  • Option to XHTML compliance
  • Add links and images
  • Format text font and alignment
  • Multiple accounts and blogs
  • Post preview
  • Find/Replace option
  • Post to many blogs at the same time
  • Title and Category Fields
  • Spell Checking
  • File and Image Upload
  • Import and Export Settings
  • Ping to Weblogs.Com, blo.gs, Technorati and ping-o-matic New!
AddThis Social Bookmark Button

12seconds.tv Video Twitter Clone

August 21st, 2008 Bala Krishna Posted in General No Comments »

12seconds.tv is video version of twitter allows you to record and share short video updates about what and where you are doing. It is more natural and appealing to update via a video rather then a text message. The user can easily update through webcam or cellphone camera, today this is common and most of the person always having these stuff. As the domain name says, 12seconds.tv allow you to record and publish 12 seconds video message. Currently, 12seconds.tv is in alpha testing stage and you can only sign up if you have invitation. Yuo can submit here your email to recieve an invitation

AddThis Social Bookmark Button

Instantly Clear Google Search Box History

August 19th, 2008 Bala Krishna Posted in Browser Stuff, Bug Fix, General, Internet Explorer, Internet Marketing, PHP Programming, Social Media, Tips and Tricks, Web Design, Web Development, Web Technology No Comments »

Google Search Box History is a good tool for web surfer who want to track of their search history. It is very useful sometime when we forget what we have browsed. But at the same time it curious for the people who love their privacy. Because it make available to open what you have accessed though your web browser. Google do not store your browser activity, All such form data saved by browser itself. Note that Google Web Search History is different from Search Box History. If you login in to Google account, Google track your search activity to deliver better search result according to your habits.

Let see how we can stop browser habit to stop your search activity.

Instant Method:

Click on the search box drop down. Click on the “Clear Search History” to instantly clear search history. This method is same for IE and Firefox. Also work on google tool bar search box as well as Firefox search box. You can do this easily before leaving your computer.


AddThis Social Bookmark Button

Useful Linux Shell Commands

August 7th, 2008 Bala Krishna Posted in General, Linux, Linux Commands, PHP Programming, PHP Tutorial, Tips and Tricks, Web Technology No Comments »

ls : List files/directories in a current directory, equivalent to dir command in dos/windows.
ls -al : Shows all files and directories with the details attributes for each file.

cd : Change directory
Examples:
cd ~ : Change your directory to your home directory.
cd - : Change to the last directory you were in.

tail : Reads and display the end of the file
Examples:
tail /var/www/me.txt : Display last 20 lines (by default) lines of the given file.
tail -f /var/www/me.txt : Watch the file continuously, while it’s being updated.
tail -400 /var/www/me.txt : Print last 400 lines of the file to the screen.

more : Open file one screen at a time.
Examples:
more /etc/log.txt : Opens the file one screen at a time rather than all at once. Press Space to go to next page.

pico : easy to use file editor
Examples:
pico /home/mysite/public_html/you.html : edit the you.html file from the public_html directory.

vi : popular editor in linux, have lots of features but harder to use
Examples:
vi /home/mysite/public_html/you.html : edit the you.html from the public_html directory.

grep : looks for certain patterns in files
Examples:
grep root /etc/passwd : shows all matches of root in /etc/passwd
grep -v root /etc/passwd : shows all lines that do not match root

touch : create an empty file
Examples:
touch /home/mysite//public_html/new.html : create an empty file called new.html in the directory /home/mysite//public_html/

ln : create’s “links” between files and directories
Examples:
ln -s /usr/local/apache/conf/httpd.conf /etc/httpd.conf : Now you can edit /etc/httpd.conf rather than the original. changes will affect the orginal, however you can delete the link and it will not delete the original.

rm : delete a file
Examples:
rm filename.txt : Deletes filename.txt, It will confirm you before deleting file.
rm -f filename.txt : Deletes filename.txt without confirmation.
rm -rf tmp/ : Recursively deletes the directory tmp, and all files in it, including subdirectories.

last : shows who logged in with the time
Examples:
last -20 : shows only the last 20 logins
last -20 -a : shows last 20 logins, with the hostname in the last field

netstat : shows all current network connections.
netstat -an : shows all connections to the server, the source and destination ips and ports.
netstat -rn : shows routing table for all ips bound to the server.

top : shows useful live system info
processes in a table format, memory information, uptime and other useful info. This is excellent for managing your system processes, resources and ensure everything is working fine and your server isn’t bogged down. top then type Shift + M to sort by memory usage or Shift + P to sort by CPU usage

ps: ps is short form of process status, equivalent to the top command. It’s used to show currently running processes with their PID.

A process ID is a unique number that identifies a process, with that you can kill or terminate a running program on your server (see kill command).
Examples:
ps U username : shows processes for a certain user
ps aux : shows all system processes
ps aux –forest : shows all system processes like the above but organizes in a hierarchy that’s very useful!

file : attempts to guess what type of file a file is by looking at it’s content.
Examples:
file * : prints out a list of all files/directories in a directory

du : shows disk usage.
Examples:
du -sh : shows a summary of total disk space used in the current directory, including subdirectories.
du -sh * : same as above, but for each file and directory. helpful when finding large files taking up space.

wc : word count
Examples:
wc -l filename.txt : tells how many lines are in filename.txt

cp : copy a file
Examples:
cp filename filename.backup : copies filename to filename.backup
cp -a /home/mysite/old/* /home/mysite/new/ : copies all files, retaining permissions form one directory to another.

kill: terminate a system process
Examples:
Syntax: kill -9 PID Examples: kill -9 431
Syntax: kill PID Examples: kill 10550

AddThis Social Bookmark Button

How To Make Speaker - Video Tutorial

July 30th, 2008 Bala Krishna Posted in General No Comments »

A complete guide for electronic guy to make speaker at home with the help of daily usable items.

AddThis Social Bookmark Button

How to fix “Task Manager has been disabled by your administrator” Error

July 30th, 2008 Bala Krishna Posted in General No Comments »

Sometime you try to open Windows Task Manager, the following error message appear: “Task Manager has been disabled by your administrator”. This could happen due to change in registry setting by some unauthorized program or Trojan. You may also be restricted or block to use Task Manager by changing “Local Group Policy” or “Domain Group Policy”.

Solution:

Follow these step to resolve the issue.

  • Go to “Start” -> “Run” -> Write “Gpedit.msc” and press on “Enter” button.
  • Navigate to “User Configuration” -> “Administrative Templates” -> “System” -> “Ctrl+Alt+Del Options”
  • In the right side of the screen verity that “Remove Task Manager”" option set to “Disable” or “Not Configured”.
  • Close “Gpedit.msc” MMC.
  • Go to “Start” -> “Run” -> Write “gpupdate /force” and press on “Enter” button.

Registry Setting Change

Note: Backup your registry before doing any change. Changing registry can cause serious problem and unstable your computer.

Go to “Start” -> “Run” -> Write “regedit” and press on “Enter” button.

Navigate to the following registry keys and verity that following settings set to default:

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
“DisableTaskMgr”=dword:00000000

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Group Policy Objects\LocalUser\Software\Microsoft\Windows\CurrentVersion\Policies\System]
“DisableTaskMgr”=dword:00000000

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system\]
“DisableTaskMgr”=dword:00000000

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]
“DisableCAD”=dword:00000000

Reboot your computer.

AddThis Social Bookmark Button

How to Block Website Redirection from FireFox Browser

May 30th, 2008 Bala Krishna Posted in General No Comments »

Redirecting to other website while browsing is a known common issue. This behaviour of WWW annoy users and sometime end up with frustration to just click on cross button. But, If you are using FF then you can control redirection. you just need to follow these simple steps and instruct FireFox to ask you before redirecting to any other website.

  • Go to Tools - > Options
  • Select Advanced - > General Tab
  • Select check box “Warn me when web sites try to redirect or reload page” the click ok.
  • All Done..

Now Firefox will ask you before redirecting website to another place. You will only be redirected if you allow to redirect from confirmation box. Check snapshot below..

AddThis Social Bookmark Button

SECUNIA Personal Software Inspector

May 25th, 2008 Bala Krishna Posted in General No Comments »

SECUNIA is popular security agency that expose vulnerabilities against various software and web applications. SECUNIA is managed company work dedicately for higher levels of security. Vulnerabilities published on SECUNIA either exposed by Secunia security professionals or contributed by Secunia users. A software vulnerability is basically a programming error/flaw in a software application, that can be used by a hacker to perform actions, which have a security impact on your computer. These actions range from disclosure of sensitive information stored on your computer (like credit card numbers and account information) to automatic installation of viruses, trojans, keyloggers, or other code.

The Secunia has release a FREE security tool that is designed with the sole purpose of helping people secure their computer from software vulnerabilities. Software vulnerabilities can affect all applications installed on your computer, from the Operating System down to your email client, office application, instant messaging, and so on.

Download: https://psi.secunia.com/PSISetup.exe
License: Free for private use
Screenshots: https://psi.secunia.com/?page=screenshots

AddThis Social Bookmark Button

PHP Fatal Error Fix: Can’t use method return value in write context

May 15th, 2008 Bala Krishna Posted in Blogging, Browser Stuff, Bug Fix, General, Linux, Linux Commands, PHP Function, PHP Programming, PHP Tutorial, Tips and Tricks No Comments »

PHP compiler generate fatal error if you use function return value in read/write context. Although this is not applicable for all PHP supported function but PHP function like empty does not support use of the function in this way. In other words, php empty function cannot check the return value of a function or method. It can only check variables so use only variable inside empty function. Any other function or expression inside empty function will lead to generate fatal error.

Example Problem Solution:

Wrong
if(empty(trim($testimony))) echo “Empty”; else echo “Not Empty”;

Correct
$testimony = trim($testimony);
if(empty($testimony)) echo “Empty”; else echo “Not Empty”;

Wrong
if(empty($bobj->get_results(’post’)) { // Processing Code }

Correct
$tmp = $bobj->get_results(’post’);
if(empty($tmp)) { // Processing Code }

AddThis Social Bookmark Button