Hot Posts:

Apr 08

Solved: Component Failed to Render – Continuum


Are you using Continuum for managing automated builds?
Everything looks fine but when you start adding schedules you see this error “Component Failed to Render”; Don’t be panic. This happens because you have deleted the default schedule which gets added after creating new project. So simple fix – don’t remove it – just disable it.

Apr 08

Solved : The ftp Session Was Terminated


Have you setup your public_ftp account successfully but you can’t access it using internet explorer??
Whether it shows some message “Windows cannot access the folder make sure you typed the file name correctly or that you have permission to access the folder.”
Details: The FTP session was terminated.

Don’t be panic, I’ve solution for that.


- Just click OK on the message box.
- Right click somewhere in between the same window; You should able to see "Login As" option.
- Then just login using your UN & PWD, you are done :)
Apr 07

Simple Command To Find Out Process ID on Linux


Simple one line command can be used in Linux bash script to get Process ID for set of processes:
ps -ef | grep PROCESS_TO_FIND | grep -v grep | awk ‘{ print $2 }’

where
ps -ef : Lists all processes with details
grep : Looks for particular process
grep -v : Avoid default grep process
awk: To find process id

So it’s a simple of finding process id.

Apr 04

Simple Command to Check Folder Size on Linux


Simple command to check folder size on Linux:

  •  du -ah FOLDER_NAME 
    where
    du - Disk Usage
    a - All Files
    h - Human Readable Format
    
  •  To get top level directory size, just use
     du -h FOLDER_NAME 
    
  • You can control depth of directories using --max-level
    du --max-depth=2 -h FOLDER_NAME
    

More Options:
du MAN PAGE

Apr 02

Setting Up GTalk on Pidgin


Do you want to use Gtalk on Linux; Simple procedure for configuring GTalk account on Pidgin:

  1. After installing open source IMPidgin, go to
    'Accounts' -> 'Add/Edit'
  2. Click on
    'Add'

    & Use the following configuration

    # Protocol: XMPP
    # Screen Name: your Google Talk username (without any @ symbol or domain).
    # Server: gmail.com
    
  3. Check in for additional requirements
  4. 'Save'

    – You are done 😉

Apr 02

Sniffu – Social Network Integrated Friend Finder


If the first five seconds of every cell phone conversation were recorded, researchers would probably find that many start with the phrase

Mar 31

Maintain Same Pidgin Settings Across All Users


Copying profiles from one user to another:
Most of the applications on Linux, maintain separate profiles for each user. Similarly incase of IM clients like “Pidgin” each user maintains different profile. Suppose if you create a dummy user account or want to maintain same IM profile ( same accounts etc ), across all users, here are couple of tricks.
The Pidgin profiles are maintained under ~/.purple/ directory. Copying entire directory contents to your ~/.purple will allow you to maintain same profile across different users.

Mar 28

Will iPhone Blend ;)


Mystery for you, let’s see if iPhone blends?
[video:youtube:qg1ckCkm8YI]

Mar 25

Unpatched flaw leading to new Word attack


Microsoft on Friday warned that cyber criminals may be taking advantage of an unpatched flaw in the Windows operating system to install malicious software on a victim’s PC.
The reported attack, now under investigation by Microsoft, involves a malicious Word document, but there may be other ways of exploiting the flaw, Microsoft said.
“Do not open or save Word files that you receive from untrusted sources or that you receive unexpectedly from trusted sources,” Microsoft said in a security advisory posted to its Web site late in the day.
The flaw lies in the Jet Database Engine that is used by a number of products including Microsoft Access. Microsoft is investigating whether other programs may also be exploited in this type of attack.
For more info check out Infoworld

Mar 25

Best Memory Settings for Eclipse


Best Memory Settings for Eclipse:
Whether Eclipse has become homeground for you & it’s speed is frustating you? I will describe couple of settings which might be helpful in running multiple projects without a memory issue.
Default Eclipse settings are defined in eclipse.ini. My .ini file on Fedora Core 6 — Eclipse 3.3 Europa:

-showsplash
org.eclipse.platform
–launcher.XXMaxPermSize
128M
-vmargs
-Xms40m
-Xmx512m
-Dosgi.bundlefile.limit=100

where
-Xms <size> set initial Java heap size
-Xmx<size> set maximum Java heap size
Considering that you have enough memory on machine, change default values in eclipse.ini to:

-showsplash
org.eclipse.platform
–launcher.XXMaxPermSize
256m
-vm
[PATH_ON_YOUR_MACHINE]javaw.exe

-vmargs
-Xms256m
-Xmx512m

Note: “-vm” is optional; otherwise Eclipse will use the first Java VM found on the O/S path
This will definitely boost up your eclipse performance.