Browsing all articles from March, 2010

Privacy Policy

Posted Posted by Mason in Company     Comments Comments Off
Mar
20

DuckLink’s Privacy Policy

DuckLink is concerned about your privacy. As with most industry-standard web serving software, each visit to our website generates a logfile entry that indicates time of visit, the domain name of your machine (e.g., “ac251-fw4.somewhere.com”) and the file(s) (and their sizes, in bytes) that your visit generated. DuckLink uses information generated from each visitor to our website to determine the most often visited pages of our website. DuckLink does not collect personal information. We use industry standard web server logfiles to record baseline visitor information. DuckLink does not sell, trade, or rent any visitor information. The data we collect is for internal use and will be kept condifitional.

Cookies. We use cookies to help us learn what is important on our website. We never disclose any cookies information.

Security. Any and all information that DuckLink collects on its visitors is securely stored and is removed from the system each month to off-disk storage. We use additional security measures to protect the loss, misuse and alteration of the information under our control.

Written Correspondence. We have taken great measures to secure our file servers from their constant attack(s) that try to use our precious resources to relay unsolicited e-mail messages. DuckLink does not sell mail service(s). We don’t sell Internet access. We do not send mass e-mail. We do not “do” spam. In fact, we loathe spam and those who generate it. You have our word that you will never receive unsolicited e-mail from us.

We provide this statement as an assurance to you. We want you to know that your privacy is respected and will not be abused or violated by visiting our site. Please let us know what you think about our privacy statement. Your comments are always welcome.

Replace String In File

Posted Posted by Mason in Labs     Comments Comments Off
Mar
18

A utility to replaces a string with another string in the given text file (binary won’t work!)

This tool is created because I got some issue when convert Qt Solutions pro file to visual studio project file, the library name is not correct for debug version. So I created this tiny tool to replace the wrong string with right one after conversion using qmake. This is added to my batch script so I can get everything done and correct with one click.

Usage:

FindStrReplace.exe FileName SearchFor ReplaceWith [CaseSensitive] [Occurance]
- FileName: name of the file to open
- SearchFor: The string we want to replace in the file
- ReplaceWith: The string we want as a replacement for ‘SearchForString’
- CaseSensitive(optional): 0 = Not Case sensitive (default), 1 = Case sensitive, case does matter
- Occurance(optional): 0 = Only first found is replaced, 1 = ALL occurrences are replaced (default)

Download FileStrReplace.