CHM Files & IE7 1.0

October 30, 2008 at 8:13 pm | In Uncategorized | Leave a Comment
Tags: , , , , , , ,

So you downloaded a CHM help file but it refuses to open/work properly, you get a message that makes no sense “Navigation to the webpage was canceled”. This is an unfortunate result of a change in behavior that Microsoft made in an effort to plug security holes. Fortunately, the “fix” is pretty simple -: right-mouse-button click on the .chm file, then select ‘Properties’, and under the item that says ‘Security’, click on the ‘Unblock’ option and click ‘OK’. This will confirm to Microsoft that you really wanted to open this file (as if they didn’t already know!). The same procedure can also be used on other files if you get unwanted Security Warnings.
FH solution – use Firefox ;-)
Our thanks to Rick, AKA RoboWizard, for this tip. Sorry we couldn’t link directly to your page, our DB didn’t like the composition of your link. Click on his “Grimoires” link folks, there’s lots more interesting stuff there!

Guardian Media to buy ContentNext

July 25, 2008 at 8:44 am | In reviews | Leave a Comment
Tags: , ,

INTERNET BUSINESS NEWS-(C)1995-2008 M2 COMMUNICATIONS LTD

Guardian News and Media (GNM), the UK newspaper publisher and a division of the Guardian Media Group plc, has announced today (11 July) that it has reached a deal to acquire ContentNext Media, an online publishing company that owns several news and opinion websites aimed at the media professional.

ContentNext run paidContent.org, mocoNews.net, paidContent:UK and contentSutra.com. The websites offer professional news, information and analysis to executives in the media, entertainment and technology sectors, with each site having a particular regional of industry focus. The firm also runs a complimentary events business.

Convert pdf documents to jpeg images

July 23, 2008 at 10:20 pm | In Development, Downloads, linux | Leave a Comment
Tags: , , , ,

f you want to convert your pdf document into a jpeg image, it is possible to use pdftoppm and after ppmtojpeg.

First, choose your pdf document and use:

ppm file.pdf file

You will have one ppm image per pdf page. If you want only part of the document use -f int1 -l int2, int1 is the initial page and int2 is the final page.

Use the script to convert all ppm images into jpeg images:

for file in *.ppm; do ppmtojpeg $file > ${file/.ppm/.jpg}; rm $file; done

And thats it. You will have your pdf document into jpeg images.

Mounting Linux Partitions under FreeBSD

July 23, 2008 at 10:19 pm | In Development, linux | Leave a Comment
Tags: , , , ,

To mount ext2fs filesystems under FreeBSD, you first have to build a new kernel with ext2fs support. Put the line

options “EXT2FS”

in your kernel configuration file for the new kernel and compile.
Read the FreeBSD handbook to learn how to do that.

or

Do the following steps to enable ext2fs support in the kernel:

# cd /usr/src/sys/modules/ext2fs
# make
# make install

You can use ‘kldload‘ to load the ext2fs module in to the kernel.

# kldload ext2fs
Then you will be able to mount your linux partitions by giving a command like:

# mount -t ext2fs /dev/ad1s1 /mnt

to unload module use

# kldunload ext2fs

To load the module automatically on system startup

add the following line in to /boot/loader.conf

ext2fs_load=”YES”

Magical Glass

July 11, 2008 at 11:05 am | In Development, Downloads, reviews | Leave a Comment
Tags: , ,

Magical Glass is a nice magnifier that moves with the cursor, in the settings it is also possible to replace the cursor with the magnifier. It is good for editing pixels in graphic editors, examining small details or too-small text, it has hot keys, a dynamic zoom, brightness and size control and the ability to save screenshots to the clipboard. There are no additional windows, it does not hinder work by the mouse, when Magical Glass is running you will see a Magical Glass icon in the system tray.

VoIPerized 2.2

July 6, 2008 at 1:23 pm | In Development, Downloads, linux, news | Leave a Comment
Tags: , , ,

VoIPerized is a so called VoIP (Voice over IP) program that enables you to make free audio calls to other people who also run VoIPerized. When making VoIPerized the focus was to minimize the latency, because other VoIP programs always seemed to have an irritating lag which makes the conversation seem unnatural. By using the OpenSource Speex audio codec, the audio quality is far higher than any normal telephone call. DirectX 8.1 or higher is required.

complete Debian Linux Server Setup guide

July 4, 2008 at 9:18 am | In linux | Leave a Comment
Tags: , ,

Installation,FTP Server Setup,Webserver Setup,Samba Server Setup,Database Server Setup,time clock sync server,
Mail Server Configuration,VNC Server setup,Proxy Server Setup,SSH Server Setup,tftp Server Setup,DHCP Server Setup,
IPtables Configuration,DNS Server Setup,Firewalls configuration,Backup configuration

Read full article here

Automate OS switching on a dual-boot Linux system

July 4, 2008 at 9:15 am | In Development, linux, reviews | Leave a Comment
Tags: , , ,

Why would you want to do this automatically when doing it manually is straightforward enough? The simple answer is that an automated process makes it a lot easier to use multiple operating systems. If you test software on multiple operating system platforms, for example, this ability is especially useful.

Read the article Here

Convert pdf documents to jpeg images

July 4, 2008 at 9:07 am | In Development, linux, reviews | Leave a Comment
Tags: , , , ,

If you want to convert your pdf document into a jpeg image, it is possible to use pdftoppm and after ppmtojpeg.

First, choose your pdf document and use:

ppm file.pdf file

You will have one ppm image per pdf page. If you want only part of the document use -f int1 -l int2, int1 is the initial page and int2 is the final page.

Use the script to convert all ppm images into jpeg images:

for file in *.ppm; do ppmtojpeg $file > ${file/.ppm/.jpg}; rm $file; done

And thats it. You will have your pdf document into jpeg images.

Cheers.

Blog at WordPress.com. | Theme: Pool by Borja Fernandez.
Entries and comments feeds.