Apr 08
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.
April 8th, 2008 in
Development Tools |
No Comments |
3,233 views
Apr 08
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 :)
April 8th, 2008 in
Windows |
9 Comments |
29,451 views
Apr 07
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.
April 7th, 2008 in
BASH,
Linux,
Systems |
No Comments |
2,793 views
Apr 04
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
April 4th, 2008 in
Linux,
Systems |
No Comments |
13,813 views
Apr 02
Do you want to use Gtalk on Linux; Simple procedure for configuring GTalk account on Pidgin:
- After installing open source IMPidgin, go to
'Accounts' -> 'Add/Edit'
- Click on
'Add'
& Use the following configuration
# Protocol: XMPP
# Screen Name: your Google Talk username (without any @ symbol or domain).
# Server: gmail.com
- Check in for additional requirements
-
'Save'
– You are done 😉
April 2nd, 2008 in
Linux,
Other |
No Comments |
2,023 views
Apr 02
If the first five seconds of every cell phone conversation were recorded, researchers would probably find that many start with the phrase
April 2nd, 2008 in
Startups |
No Comments |
1,610 views
Mar 31
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.
March 31st, 2008 in
Linux,
Systems |
No Comments |
1,611 views
Mar 28
Mystery for you, let’s see if iPhone blends?
[video:youtube:qg1ckCkm8YI]
March 28th, 2008 in
Other,
Random Picks.. |
No Comments |
1,418 views
Mar 25
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
March 25th, 2008 in
Windows |
No Comments |
1,814 views
Mar 25
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.
March 25th, 2008 in
Eclipse,
Systems |
No Comments |
3,727 views