gscan2pdf 1.0.0 released and PPA installation instructions included

cross posted from gscan2pdf 1.0.0 released and PPA installation instructions included

 

 

Only two clicks are required to scan several pages and then save all or a selection as a PDF or DjVu file, including metadata if required.gscan2pdf can control regular or sheet-fed (ADF) scanners with SANE via scanimage or scanadf, and can scan multiple pages at once. It presents a thumbnail view of scanned pages, and permits simple operations such as cropping, rotating and deleting pages.OCR can be used to recognise text in the scans, and the output embedded in the PDF or DjVu.

(…)
Read the rest of gscan2pdf 1.0.0 released and PPA installation instructions included (145 words
)

Recoll Finds Text Virtually Anywhere on a Linux Computer

Linux: Recoll is a free, open source, desktop search tool that can find nearly any type of text on your system and incorporates boolean searches (including wildcards) file stemming, and file-type filters. It also includes auto-completion of search topics, so if you search for “lifeh” you’d get Lifehacker, Lifehouse, etc. More »

 

 


via Recoll Finds Text Virtually Anywhere on a Linux Computer [Linux Downloads]

Touchpad-Indicator for Ubuntu Lets You Quickly Enable or Disable a Laptop Touchpad [Linux Downloads]

Ubuntu: If you’re running Ubuntu on a laptop, and you want to disable the touchpad when you have it connected to an external keyboard or mouse, Touchpad-Indicator is a menubar applet that can help. More »





via Touchpad-Indicator for Ubuntu Lets You Quickly Enable or Disable a Laptop Touchpad [Linux Downloads]

Ubuntu 11.10 Beta 2 (Oneiric Ocelot) Released

http://feedads.g.doubleclick.net/~ah/f/o42q2rs43tt197t9ke6rkf1rgs/300/250?ca=1&fh=280#http%3A%2F%2Fwww.ubuntugeek.com%2Fubuntu-11-10-beta-2-oneiric-ocelot-released.html

{lang: ‘en-GB’}

The Ubuntu team is pleased to announce Ubuntu 11.10 Beta 2.Codenamed “Oneiric Ocelot”, 11.10 continues Ubuntu’s proud tradition of integrating the latest and greatest open source technologies into a high-quality, easy-to-use Linux distribution. The team has been hard at work through this cycle fixing bugs and introducing a couple of new features as we polish up for the release.
Ubuntu Changes since Beta 1
(…)
Read the rest of Ubuntu 11.10 Beta 2 (Oneiric Ocelot) Released


via Ubuntu 11.10 Beta 2 (Oneiric Ocelot) Released

Ubuntu Supplemental Packages

1. Update Ubuntu (Repository cache)

After installing Ubuntu 11.10, first of all, update the package information (you are always recommended to update your computer as frequently as possible but surely before installing any new programs so that you will get the latest one available in the repository). You can update your system either from command line

Open a terminal (Ctrl + Alt + t) and execute the following commands -

sudo apt-get update
sudo apt-get upgrade Continue reading

VIM Cheat Sheet

Thanks to http://bullium.com/support/vim.html and http://www.ssel.montana.edu/HowTo/

How to Exit

:q[uit] Quit Vim. This fails when changes have been made.
:q[uit]! Quit without writing.
:cq[uit] Quit always, without writing.
:wq Write the current file and exit.
:wq! Write the current file and exit always.
:wq {file} Write to {file}. Exit if not editing the last
:wq! {file} Write to {file} and exit always.
:[range]wq[!] [file] Same as above, but only write the lines in [range].
ZZ Write current file, if modified, and exit.
ZQ Quit current file and exit (same as “:q!”).

Continue reading