Monday, September 28, 2009

Corel Paint Shop Pro Photo X2 Ultimate 12.5 [MultiLanguage]

Corel Paint Shop Pro Photo X2 Ultimate 12.5 [MultiLanguage]

Corel Paint Shop Pro Photo X2 Ultimate 12.5 [MultiLanguage] Plus Portable | 508.9 MB
A complete photo-editing software solution.
Corel® Paint Shop Pro® Photo X2 Ultimate combines ease of use with full professional power. Fix brightness, color and photo imperfections like red eye in a few clicks, or use precision photo-editing controls to create photos you'll be proud to share.

The Ultimate edition features valuable extras like media recovery software, a creative content pack, Corel® Painter™ Photo Essentials 4 and a 2 GB Toshiba flash drive.

Paint Shop Pro Photo X2 has everything you need to create stunning photos. The integrated Learning Center and a selection of one-click photo-fixing tools make it easy to correct common photo flaws such as red eye, color and sharpness.
Unique makeover tools let you whiten teeth, remove blemishes and paint on a tan, so you can make everyone look their best before printing or posting photos online.

As your skills and confidence grow, you can harness the power of professional-quality features such as HDR Photo Merge, Histogram, Curves and Levels Adjustment tools to make precision edits.
You can even get creative with artistic effects and filters to turn your favorite photos into fun projects to share with family and friends.

Includes everything in Paint Shop Pro Photo X2, plus:
  • Enhanced! Support for more than 250 camera raw formats
  • New! Background remover plug-in to change the background of a photo
  • Enhanced! Creative content pack with 150 new photo frames, photo edges and Picture Tubes™
  • New! Certified for Windows Vista® for better performance and enhanced security
  • Bonus! 2 GB USB flash drive to store and transfer your digital photos
  • Bonus! Corel® Painter™ Photo Essentials 4 to turn photos into paintings in 3 easy steps
  • Bonus! Media recovery software to retrieve images, movies and sound files, even from reformatted memory cards
http://hotfile.com/dl/13649637/71e38a6/CPSPPX2U12.5PP.part1.rar.html
http://hotfile.com/dl/13649638/ac4e6c5/CPSPPX2U12.5PP.part2.rar.html
http://hotfile.com/dl/13649639/98de678/CPSPPX2U12.5PP.part3.rar.html
http://hotfile.com/dl/13649640/0fa5f61/CPSPPX2U12.5PP.part4.rar.html
http://hotfile.com/dl/13649641/4e0c43b/CPSPPX2U12.5PP.part5.rar.html
http://hotfile.com/dl/13649642/8d17c59/CPSPPX2U12.5PP.part6.rar.html

Saturday, September 26, 2009

HowTo: NFS Server/Client [Linux]

Why NFS?
I simply wanted to experiment with NFS, and couldn't seem to find the documentation here on the forums. I found using NFS just as easy if not easier than using Samba for sharing between a few of my Unix based systems. In order to share a folder it only required a single line in a configuration file under /etc/exports, and a single line under /etc/fstab on the client to mount the share on each client at boot.

I mostly edited and moved things around from these guides to make a more complete single guide to getting this working using Ubuntu.

http://www.cyberciti.biz/tips/ubuntu...nfs-share.html (for client configuration)
http://www.redhat.com/docs/manuals/l...nfs-mount.html (for mounting using fstab)
http://www.freebsd.org/doc/en_US.ISO...twork-nfs.html (contains more info about NFS)


Install NFS Server Support
at the terminal type
sudo apt-get install nfs-kernel-server nfs-common portmap
When configuring portmap do =not= bind loopback. If you do you can either edit /etc/default/portmap by hand or run:
sudo dpkg-reconfigure portmap
sudo /etc/init.d/portmap restart


Editing /etc/exports
the /etc/exports file is used for creating a share on the NFS server

invoke your favorite text editor or
sudo vi /etc/exports

Here are some quick examples of what you could add to your /etc/exports

For Full Read Write Permissions allowing any computer from 192.168.1.1 through 192.168.1.255
/files 192.168.1.0/24(rw,no_root_squash,async)
Or for Read Only from a single machine
/files 192.168.1.2 (ro,async)
save this file and then in a terminal type
sudo /etc/init.d/nfs-kernel-server restart

Also aftter making changes to /etc/exports in a terminal you must type
sudo exportfs -a

Install NFS client support
sudo apt-get install portmap nfs-common

Mounting manually
Example to mount server.mydomain.com:/files to /files. In this example server.mydomain.com is the name of the server containing the nfs share, and files is the name of the share on the nfs server

The mount point /files must first exist on the client machine.
cd /
sudo mkdir files

 to mount the share from a terminal type
sudo mount server.mydomain.com:/files /files
 Note you may need to restart above services:

sudo /etc/init.d/portmap restart
sudo /etc/init.d/nfs-common restart


Mounting at boot using /etc/fstab
Invoke the text editor using your favorite editor, or

gksudo gedit /etc/fstab
In this example my /etc/fstab was like this: 
server.mydomain.com:/files /files nfs rsize=8192,wsize=8192,timeo=14,intr
 You could copy and paste my line, and change “servername.mydomain.com:/files”, and “/files” to match your server name:share name, and the name of the mount point you created.

Test before Reboot:
type
mount /files
 in a terminal, and the mount point /files will be mounted from the server.     (source: ubuntu forums)

Friday, September 25, 2009

Show Orignal Size of the Image in Summary of Post/Readmore [ Blogger ]

Here is the solution for those bloggers, Who want to Show orignal size of the image with specifed number of characters. This is Rehacked "Readmore.." which adds "Read More..." expandable link automatically to all their posts with orignal size of the image ('No resizing of images').
View Demo here

In old readmore hack, you have to specify the number of characters after which the post will be truncated. If you select it as 500, then all your posts in the home page will show only first 500 characters. and also you have to specify to resize the images  in your post. If you select it as width:200, height:150, then all your posts first image will be resized to your specifed size.

But this image resizing will effect on some photo based blogs, for example if your blog niche is games downloading, you should need to show the full size of the game screen short to your reader for attract and some message about  the game....

Instructions for fresh install:
(if you already have installed "Read More" hack see below for How to re-hack?)

Step 1: 
Download this file: Readmore_Rehacked.js
Step2:
Upload the file to any host site that allows .JS like HotLinkFiles.com,
BOXSTR.com
or your own host.


Step3:

Log in to Blogger, go to Layout -> Edit HTML, and mark the Expand Widget Templates box.

 Now find (CTRL+F) this in the template code:
</head>
And immediately ABOVE/BEFORE that, paste this code:
<script src="http://softwareroxer.110mb.com/summary-posts_edited.js" type="text/javascript"/>
<script type='text/javascript'>
var thumbnail_mode = "float" ;
summary_noimg = 50;
summary_img = 50;
img_thumb_height = max-width;
img_thumb_width = max-height;
</script>
<script type="text/javascript">

Step 4:
Now again in the template, find (CTRL+F) this:
 <data:post.body/>

Then REPLACE that line, with this code:

<b:if cond='data:blog.pageType != "item"'>
<div expr:id='"summary-" + data:post.id'><data:post.body/></div>
<script type='text/javascript'>createSummaryAndThumb("summary-<data:post.id/>");</script>
<a class='readmore' expr:href='data:post.url'><img src='http://saer.sm.googlepages.com/readmorenow.png'/></a>
</b:if>
<b:if cond='data:blog.pageType == "item"'><data:post.body/></b:if>

Finally preview and save the template.



Instructions for who already have a Read more hack on their blog:


Step 1: 
Download this file: Readmore_Rehacked.js

Step2:

Upload the file to any host site that allows .JS like HotLinkFiles.com,

BOXSTR.com

or your own host.

Step3:

Log in to Blogger, go to Layout -> Edit HTML, and unmark the Expand Widget Templates box. to make it easy.

Now find (CTRL+F) this in the template code:
summary_noimg = 500;
summary_img = 450;
img_thumb_height = 100;
img_thumb_width = 120;

The numbers are may veary so look for similar to this on you template.

after this 4 or 6 lines or above these 4 or 6 lines you can find the script source link of the JavaScript file, Just replace the link with your link (that is where you upload the rehacked readmore.js file). this script will work with same codes for old readmore hack, no need to edit .

(Note: if you have any problem change img_thumb_height to "max-height", img_thumb_width to "max-width")

Thats it! 

Pidgin – cannot connect to Yahoo messenger [Solution]

I just noticed the abnormality with Pidgin 2.5.5 (running on Ubuntu) these few days, I couldn’t connect my Yahoo messenger account at all. According to the discussion of Bug #389278 it appears that Yahoo was trying to change its protocol.
A quick way to have Pidgin connecting to Yahoo messenger server again is to change the Pager server setting for the Yahoo account in Pidgin.

To do this, from Pidgin:
Manage Accounts (Ctrl + A)
Select the Yahoo account from the list, and click Modify
Click on Advanced tab, under the Yahoo Options, in the Pager server field replace scs.msg.yahoo.com with cn.scs.msg.yahoo.com
save and restart Pidgin, Then  try to connect yahoo messenger. It works for me.
GoodLuck.

Wednesday, September 23, 2009

ESET Smart Security & Antivirus AIO [Include KeyGeN] 74 MB

ESET Smart Security & Antivirus AIO [Include KeyGeN]


The AiO Pack contains:
  • ESET Smart Security 4
  • ESET.NOD32.Antivirus 4
  • ESETLogin Viewer v1.4
  • NodEnabler
  • Portable MiNODLogin
  • TNODUP
  • Serials Sites
Download info:

File Size: 74 MiB
Hosted Site: HotFile
Download

BurnAware Professional 2.4 Portable [InclUdE kEygEn]

BurnAware Professional 2.4 Portable [InclUdE kEygEn]
BurnAware Professional is the professional’s choice for quality CD & DVD media duplication and Blu-ray Disc recording. Apart from the standard features, such as data, audio and video burning, BurnAware Professional offers a wide scope of advanced functionality, allowing you to duplicate CDs and DVDs, make exact copies of discs on your hard drive, write to multiple drives simultaneously. Also it is permitted for commercial use.

Keep original discs scratch free
Duplicate CDs and DVDs or store them as ISO image files on your hard disk. You can always burn them later to create and backup copy of the original movie/game/software.

Create data backups
Burn your photos, spread sheets, home work results etc. to CD/DVD/Blu-Ray Disc. A hard disk crash would no longer be fatal to your work or family archives.

Update existing discs
You can use the same media for sequential recording daily. New data would perfectly co-exist with previously recorded data. The only limitation is the physical media capacity.

Key Features:

Create data, bootable and mutlisession CD/DVD/Blu-ray Discs
Create Audio CDs and jukebox CD/DVD/Blu-ray Discs
Create DVDs-Video
Copy and backup CDs/DVDs
Create and burn disc images, bootable images
Erase / Format rewritable discs
Supports all current hardware interfaces (IDE/SCSI/USB/1394/SATA)
Supports UDF/ISO9660/Joliet Bridged file systems (any combination)
Supports true, simultaneous image writing
Supports parallel erasing
On-the-fly writing for all image types (no staging to hard drive first)
Auto-verification of written files
Supports CD-Text
Clean, flexible, easy to use interface
Supports unicode for multi-byte languages
Supports Windows NT/2000/XP/Vista (32 and 64 Bit), no drivers required

Changes in BurnAware 2.4 (21-Sep-2009):
  •  Added OS support Windows 2008 Server R2.
  • Solved compatibility issues with Windows 7.
  • Added Support for BDR DL and BD-RE DL media.
  • Updated user rights service.
  • Fixed bug with USB drives detection.
Click this image to Download setup with Keygen:
File size: 17Mib
Hosted site: HotFile



If this software commercially useful to you, Then don't use crackeee*  Please buy it from its owner. Because programmers need some support.