Wallpapers Wednesday : Piracy Wallpapers

Nope, none of that swashbuckling stuff but more of those illegal CD/DVD kind of pirates. Probably the coolest wallpapers that Microsoft has ever put out on their official site under th rather obscure anti-Piracy section in an effort to educate consumers on the the evils of software piracy.


© Microsoft

These illustrations look like stuff from a heist / corporate espionage flick, don’t they?

Download all 10 wallpapers from Microsoft’s Know The Facts.

MORE @ THE DOWNLOAD MUNKEY:
Real Pirates – Photos by Eric Pasquier
Pirate Girl by Martin Abel

Tags:

Random Monday : Paessler Site Inspector – Webpage Analysis Tool

Site Inspector is a freeware application developed by Paessler AG which provides very comprehensive statistics about any website.

Firstly, it allows you to view any page on the web exactly the way it would look like under Internet Explorer or Mozilla Firefox (Firefox must be separately installed)

All server requests taken to load your page, from the retrieval of local or external images to scripts for third-party widgets and ads, are displayed for those interested in understanding and optimizing the loading time of their sites.

Not very promising: 7 seconds to load the main page of www.downloadmunkey.net in Internet Explorer when uncached :(

More information on the page itself can be gleaned from the items under the Page Analysis tree such as the links, metatags and the source code for the current page as well as that of external scripts linked from that page.

Within Site Inspector itself, there are additional inbuilt tools to check the DNS or the domain information of the site that you’re analyzing via WHOIS.

A host of other third party tools can be assessed under the Online Tools section although the links to several tools are already broken. Some of the working ones include the WayBack Machine, Alexa and WebScale Speed Test.

You can customize the current list of online tools by adding new links or remove existing ones if you so wish by selecting File > Preferences… > Online Tools.

All in all, it’s a very handy tool for both webmasters and curious websurfers who want to learn more about the sites that they own or browse.

Download Paessler’ Site Inspector (Windows only) for free.

MORE @ THE DOWNLOAD MUNKEY:
CD ISO Utilities
Exporting and Converting Bookmarks with Bookmark Buddy
NirSoft.net – My First Stop for Quality Utilities

Tags:

Random Monday : CD ISO Utilities

I have been using the below-mentioned tools to handle the ISO files (CD images) made for the installation CDs for clients at work recently so hopefully they’ll prove to be useful to you as they were for me.

There are several advantages in duplicating CDs via an ISO image over repeatedly burning a collection of files and folders – burning is much faster and significantly less error prone since it eliminates the risk of human error in selecting the files to burn. Using ISOs to duplicate discs also makes it more convenient than copying from CD to CD (especially when you only have a single CD-RW drive).

As CDs burned via ISO images aren’t overwritable, ISO images are perfect for burning CDs to distribute the final versions of software to clients. Unfortunately, this also means that any space not occupied by the ISO image on a CD-R is lost permanently.

To create an ISO image, TrustFM has created a handly Folder2Iso application which will convert a specified folder into a single ISO image. Dump all the files you want to burn in that folder, select that folder in Folder2Iso and click Generate ISOM, it’s that easy!

To verify that your ISO image is created correctly, there’re 2 ways that I commonly use – burn to an actual CD or use virtual drive emulators like DaemonTools to load the ISO and test like a real CD so you can ensure that all necessary files are in the disk and that AutoRun functionality works (if the autorun.inf file is present). Besides, you can save CDs (and the Earth!) if users of your software can run ISOs directly instead of you having to burn CDs for them.

NOTE: Most copy protections on new legally-purchased boxed games will ensure that these games will refuse to start on any system with DaemonTools installed.

Now if you simply want to extract files from an ISO, use WinRAR or the freeware CDmage (above) instead.

Download Folder2Iso, DaemonTools or CDmage.

MORE @ THE DOWNLOAD MUNKEY:
NirSoft.net – My First Stop for Quality Utilities
Foxit Reader vs PDF-XChange Viewer vs Sumatra
Using Sandboxie For Testing New Software

Tags:

Random Monday : Fun with Batch Files – Converting PDFs to TXTs

I was fiddling with Kryloff Technologies’s GetText last week to export the first 100 issues of Computer Gaming World to TXT format to read on my mobile phone using TequilaCat Book Reader, when I realized that repeatedly typing and then cutting and pasting commands at the Command Prompt 100 times isn’t a good idea to spend a precious weekend. Admittedly, the plain TXT format isn’t the best way to enjoy these treasures but I’ve little time to read except on the way to work :(

Now writing a program to do this in C# .NET in which I write code at work would be a trivial task but it seems like overkill for such a simple task, so I decided to brush up on my rusty knowledge of DOS commands to automate or at least semi-automate this process.

Do read on if you’re interested to understand how the batch files work, otherwise simply scroll to the bottom of this post to download the premade batch files to convert either a single file or a folder of PDFs to text.

Now creating a batch file (a TXT file with a BAT extension) with the following command:

%~dp0gettext.exe %1 %1.txt

and dropping it into the GetText folder quickly allows me to drag and drop any PDF (or in fact any file convertible by GetText) onto the batch file and immediately convert it to a .TXT file in the same directory as the file to convert.

%~dp0 is substituted with the full path of the batch file without the filename of the batch file which essentially points to the full path of the GetText application.

%1 refers to the file being dropped onto the batch file. For some systems, I found that I needed to enclose %1 with double quotes to cater for paths with spaces in them whereas other systems handle long file names without needing double quotes.

Now automatically converting a single file isn’t too shabby but it’s still not good enough. Dragging and dropping 10 files is OK but not 100 :( So I Googled for some resources and found Rick Lively’s Command Reference, a handy guide for all DOS/Command Prompt commands together with notes and examples.

Now armed with a FOR loop from this reference, I created another batch file to process all the files in a folder.

for %%f in (%1\*.pdf) do %~dp0gettext.exe %%f %%f.txt

A short explanation of what’s going on here.

%1 is your folder which you dropped into the batch file.

The FOR statement then takes all files in this folder with a PDF extension and passes each applicable file to GetText as the variable %%f sequentially.

Not bad for a single line of text. Sometimes, a knowledge of some common DOS commands can handle certain tasks faster than writing code :)

Check out Kryloff Technologies’ GetText utility, Rick Lively’s downloadable Command Reference or my premade batch files. Create shortcuts to these two batch files and you can use them in most situations to convert your text files by dragging and dropping files or folders over the batch files respectively.

MORE @ THE DOWNLOAD MUNKEY:
Read Books on Your Mobile Phone with TequilaCat BookReader
Text Mining Tools – Extracting text from CHMs
Wikibooks, WikiType & PDF Wikis

Tags:

Random Monday : Exporting and Converting Bookmarks with Bookmark Buddy

I’m been searching for an application to convert some of my Opera bookmarks to a Link/URL table format as a spreadsheet in Excel or CSV format for several months now and I think have finally found one fits the bill (otherwise I wouldn’t be writing this :) )

I basically wanted to transfer my current list of bookmarks to downloads and sites that I haven’t checked out in detail in Wikidpad which I store most of my personal Todo lists. More on Wikidpad in the future.

While I usually try not to recommend shareware here at The Download Munkey if freeware and open source alternatives exist, but at this time I’m hard-pressed to say if there are any other software (even commercial) that surpasses Bookmark Buddy‘s capabilities and flexibility in converting and exporting bookmarks. I do know there are free software to convert bookmarks for transferring between broswers, but I definitely haven’t seen any that can export to CSV (yet).

Below’s a a quick 3 step guide on using Bookmark Buddy to export your bookmarks to a more processable format (is there such a thing as processable?)

Import your bookmark list.

Mark folders and bookmarks that you wish to export (not needed if you just want to export everything in the list.)

Select format to export to. Remember to check Include only marked bookmarks if you’re exporting a partial list and you’re done!

The example here uses Opera since that’s the only browser I use but the other major browsers like Internet Explorer, Mozilla Firefox are also supported by Bookmark Buddy, of course.

Export and conversion of bookmarks is only one of the many features available in Bookmark Buddy. To be honest, I’m not exactly familiar with Bookmark Buddy since I only used it for an hour or so to convert my Opera bookmarks to CSV but here’s a list of the more usable features I found while fiddling with it last weekend.

  • A central repository for storing, organizing and visiting internet bookmarks in your preferred browser. Should be very useful for people who regularly use different browsers and want to share the bookmarks between them without the hassle of trying to keep the bookmarks in every broswer in sync.
  • Delete duplicate bookmarks via Edit > Manage Duplicates
  • Scheduling of bookmarks to visit using Smart Folders.
  • Checking of updates to your bookmarks in the background so that you don’t waste time visiting sites that haven’t been updated or have been moved or disappeared.
  • Encryption of your list of bookmarks with a 128 bit Blowfish algorithm for the paranoid.

Download Bookmark Buddy or check out the features. The application is available for a 30 day trial and costs 29.95 USD to register.

MORE @ THE DOWNLOAD MUNKEY:
NirSoft.net – My First Stop for Quality Utilities
Foxit Reader vs PDF-XChange Viewer vs Sumatra
Combining PDFs with PDFTKBuilder
Lifehacker.com – Productivity and Software Guide

Tags:

« Previous PageNext Page »

Blog Widget by LinkWithin