Volkswagen lancerer privatleasing af Golf, Golf Plus og Golf Variant i Danmark

Privatleasing bliver også her til lands mere og mere populært, ikke mindst grundet de synlige fordele man som kunde opnår, når man leaser sin bil: lave månedlige rater og ingen uforudsete udgifter, fx ved værkstedsbesøg. Ingen dyre billån og ingen bekymring for værditab ved salg er blot nogle af de indlysende fordele, der gør privatleasing populært.

Nu tilbyder Volkswagen netop Golf som privatleaset bil fra 2.999 kr. pr. måned.

Volkswagen tilbyder lige nu både Golf, Golf Plus og Golf Variant til særligt gunstige vilkår og til relativt lave månedlige ydelser.

Læs mere på vw.dk

Desuden tilbyder Volkswagen også en online beregner, hvor man let og overskueligt kan sammensætte sin egen leasingpakke og få beregnet den nøjagtige månedlige ydelse.

http://www.volkswagen.dk/privatleasing

Related posts:

    No related posts.

Comments

Top 5 iPhone Applications

Read more at: http://x2q.net/top-5-iphone-applications/

Image representing iPhone 3G as depicted in Cr...
Image via CrunchBase

5. Stanza

A book reader that grabs free titles from public domains, Stanza has soared in popularity — making the iPhone a worthy competitor to Amazon’s Kindle.

Read more at: http://www.lexcycle.com/

4. RunKeeper

RunKeeper is an iPhone application that enables you to use the built-in GPS in your iPhone 3G to track all of your outdoor fitness activities, including duration, distance, pace, speed, elevation, calories burned, and path traveled on a map. You can store all of your historical activities on the RunKeeper website and share them with your friends!

Read more at: http://runkeeper.com/

3. Tweetie

Twitter, a new form of micro-blogging, became more legitimate when it broke the news of the deadly Mumbai attacks. And Tweetie is the best app we’ve found to follow your Twitter friends. The app neatly separates Twitter feeds into categories, and the interface resembles the bubbly iChat interface that most of us have come to love. A must-have for Twitterholics.

Read more at: http://www.atebits.com/tweetie-iphone/

2. Pandora

It’s a new era for radio. Personalized, mobile, and free. Pandora Radio is your own FREE personalized radio now available to stream music on your iPhone. Just start with the name of one of your favorite artists, songs or classical composers and Pandora will create a “station” that plays their music and more music like it.

Read more at: http://www.pandora.com/on-the-iphone

1. Last.fm

Listen to more than 5 million tracks for free with Last.fm on your iPhone.
Create personal radio stations based on any artist or genres, and listen to commercial free music for hours. With Last.fm on the iPhone you can also check out artist bios and concert information and share your favourite tracks with your friends using the iPhone contact list.

The more you listen, the more Last.fm learns what you like and recommends new music based on your taste. Go to the Last.fm website, and you can see your iPhone and iTunes listening history, stored by Last.fm no matter where you’re listening.

Read more at: http://blog.last.fm/2008/09/27/lastfm-iphone-20

Add your favorites

Leave a comment to add your top list of iPhone apps favorites.

Related posts:

  1. How to Unlock iPhone 3GS
  2. TomTom on an iPhone
  3. iPhone Reviews
  4. Remote Control Your Computer with Your iPhone
  5. iPhone Background Package
  6. Nokia iPhone theme
  7. Nokia iPhone skin
  8. Engadget reviews the iPhone
  9. Jailbreak iPhone 3GS Using redsn0w (Linux)
  10. Jailbreak iPhone 3GS Using redsn0w (Windows)

Comments (1)

How to do syslog from PHP

Configure (r)syslogd
vim /etc/rsyslog.d/99-custom-logging.conf

if $syslogfacility-text == 'local6' and $programname == 'log1' then /var/log/log1.log
if $syslogfacility-text == 'local6' and $programname == 'log1' then ~
if $syslogfacility-text == 'local7' and $programname == 'log2' then /var/log/log2.log
if $syslogfacility-text == 'local7' and $programname == 'log2' then ~

The logging code in PHP

openlog("gateway", LOG_PID|LOG_NDELAY, LOG_LOCAL6);
syslog(LOG_INFO, "Test message");

The logging results

tail -f /var/log/log1.log
May 25 21:23:35 thor log1[4354]: test3

Related posts:

  1. jsLogger: JavaScript logging utility
  2. SMTP Telnet Session
  3. Apache2 deflate setup
  4. Automatic Generate JUnit Tests
  5. PHP Professional Tip #1 – Type Hinting
  6. What should a window look like?

Comments

Linux How to: Add a existing user to existing group

usermod example

Add existing user john to admin supplementary/secondary group with usermod command using -a option ~ i.e. add the user to the supplemental group(s). Use only with -G option:

# usermod -a -G admin john

Change existing user john primary group to mail:

# usermod -g mail tony

Related posts:

  1. Migrate existing Ext3 filesystems to Ext4
  2. Rethinking the GUI (Graphical User Interface) and the CLI (Command Line Interface)
  3. Run Single Commands on a SSH-based Server
  4. Howto Recover a Linux Root Password
  5. Linux Gets Automatic Tuning
  6. Howto: How to Reset the MySQL Root Password
  7. Microsoft is using Linux
  8. Linux Audio Editor Top 3
  9. How to mount bin / cue image files in Linux
  10. VMware Killer: Xen With Graphical User Interface On A Fedora 7 Desktop

Comments

Howto Recover a Linux Root Password

This post is intended for users that forgot the root passwords or can’t use it due to other problems (corrupted file /etc/passwd or whatever). Can also be used to gain unauthorized to linux machines, but don’t do that.

What to do
Boot using a recovery CD or DVD.

Mount the drive

mount /mnt /dev/sda2

Replace the existing root password with an empty one

sed /^root/s/.*:root:/root::0:0:root:/ /mnt/etc/passwd

And reboot – and you are done ;-)

Related posts:

  1. Howto: How to Reset the MySQL Root Password
  2. Recover (Crack) a password from a Microsoft Access Database (mdb)
  3. Crack or Recover Password Protected Excel Spreadsheet
  4. How to hack Windows password with Ophcrack
  5. Crack or Recover Read-only Password Protected Word Document
  6. HackerGuide: Crack Password Encrypted Zip-files
  7. Howto Create a libstdc++ Compat on Debian (e.g. libstdc++-libc6.2-2.so.3)
  8. Ubuntu Howto: Install Xen
  9. Crack zip password with fcrackzip
  10. Password Manager – based on gnupg

Comments

Combine Multiple PDFs Into One File

From time to time it is very useful to combine multiple PDF documents into one file.

Install gs (ghostscript) and pdftk (tool for manipulating PDF documents)

sudo aptitude install gs pdftk

Now we will see one example, which shows how to combine a few pdf files; 1.pdf,2.pdf,3.pdf.

gs -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=combined_pdf.pdf -dBATCH 1.pdf 2.pdf 3.pdf

If you want to know more options available for gs command check the gs man page

Related posts:

  1. dos2unix on Ubuntu and Debian
  2. Crack pdf password with pdfcrack
  3. Bash shortcuts tips and tricks
  4. Upgrading to Ubuntu 9.04
  5. Track file downloads and outgoing links with Google Analytics
  6. How to mount bin / cue image files in Linux
  7. Executing SQL Statements from a Text File
  8. HackerGuide: Crack Password Encrypted Zip-files
  9. HackerGuide: Syn-Flood Attack
  10. Howto Install Oracle on Debian

Comments

How To Update A Garmin Nuvi (Firmware and Maps)

Updating your unit software just got easier. Use WebUpdater to automatically keep your operating software current. The Garmin WebUpdater can be downloaded from Garmin.

If you need to update your software / firmware from Linux, you can actually extract the downloaded exe and upload the unit software / firmware update file (e.g. called GUPDATE.GCD) manually to the device.

Related posts:

  1. Garmin Mobile XT on N5800 – Europe Map 2010.1
  2. Garmin Mobile XT 5 on Nokia N95
  3. Jailbreak iPhone 3GS Using redsn0w (Windows)
  4. Linksys Network Storage Link NSLU2
  5. Howto Create a libstdc++ Compat on Debian (e.g. libstdc++-libc6.2-2.so.3)
  6. Ubuntu 5.04 package update screenshot
  7. Jailbreak iPhone 3GS Using redsn0w (Linux)
  8. Howto Publish Weather Data from a LaCrosse 2300 Weather Station using a Linksys NSLU2 and Open2300
  9. Beautiful and Efficient File Upload Using Flash and Ruby on Rails
  10. Update entry on Xen on Debian Etch

Comments

Top 10 Free Windows 7 Applications

  • 7-Zip file archiver – a polished, quickly, and efficient file archiver. Supports the following formats, 7z, ZIP, GZIP, BZIP2, TAR, RAR, CAB, ISO, ARJ, LZH, CHM, MSI, WIM, Z, CPIO, RPM, DEB and NSIS.
  • Infra Recorder – User-friendly and lean recorder suite for CD / DVD / HD DVD / Blu-ray. Supports also creation of music CDs from MP3 files directly.
  • VLC Player – The best and most user-friendly film and video player. Simply a must have.
  • Launchy – A so called key-stroke launcher. Makes it smart and easy to start programs in Windows just like Quicksilver does it for Mac and Gnome Do for Gnome under Linux.
  • Paint.NET – Good, polished, and fast photo processing and editing program. Smarter and more user friendly than Adobe Photoshop ;-)
  • PDFCreator – Easy and quick program to create PDF files. PDFCreator easily creates PDFs from any Windows program. Use it like a printer in Word, StarCalc or any other Windows application.
  • Notepad++ – Wonderful and quick editor for text and various programming languages.
  • uTorrent – BitTorrent client used to download movies, software and music albums from the peer to peer net. The stuff for download can often be found on thepiratebay.org or torrentz.com.

  • Firefox – Quick and easy to use browser. A Must have on Windows 7.
  • Picasa – Easy and simple program for managing and storing photos and photo albums.
  • iTunes – super duper program managing music collections, it can handle tons of mp3 files ;-)
  • VirtualBox – easy and fast virtual machine that can be used to test Linux distributions, and to install windows inside another windows ;) – Fancy, fancy and quite usable.
  • OpenOffice – complete office suite containing; Word processing, Spreadsheets, Presentation editor, Drawing, Database programs and etc. A must have, and it works better than Microsoft Office.
  • Inkscape – Drawing program for drawing vector drawings (logos and such things).
  • Scribus – Polished, user-friendly DTP program, used to create brochures, catalogs, reports, articles, etc.

Related posts:

  1. Seamless Windows Applications on Ubuntu Linux Using VirtualBox
  2. What is the coolest thing you can do using Linux that you can’t do with Windows or on a Mac?
  3. Xen Howto: Install Windows
  4. Apple Safari Browser on Windows
  5. Windows Developers Begin Slow Defection to Linux
  6. Windows 7 Themes
  7. Top 5 Free Wallpaper Download Sites
  8. Crack pdf password with pdfcrack
  9. InfraRecorder: Open Source CD Burning for Windows XP/Vista
  10. Must Have Windows Software

Comments

« Previous entries Next Page » Next Page »