Posts

Showing posts with the label util

Temporary Spam Mailbox

Did you ever just need a quick email address to register with a site to gather information on someone or something? Maybe you were doing an assessment on a hate group but wanted to get to the Members Only section or found someone on LinkedIn but couldn’t view their full profile without registering. 10minutemail

Set (or change ) the hostname - Mac Os Lion

Open " System Preferences " Click on " Sharing " icon Edit the field " Computer Name " with your new hostname Actually this is very useful, because now you can see your device listed in the DHCP list at the router configuration.

ExposƩ Mac Os X like in Ubuntu 11.04

This effect can be done using compiz! First, install Compiz Settings Manager from the repositories Under " Filter ", filter by the keyword "scale" Finally, select " Scale " and in the " Binding " tab, assing a method to " Iniciate Windows Picker " (with the monitor icon). For example: " BottomRight "

Sysmonitor Indicator Ubuntu 11.04 Natty Narwhal

Image
sudo add-apt-repository ppa:alexeftimie/ppa sudo apt-get update sudo apt-get install indicator-sysmonitor source

Fix file permissions in Mac OS X

A few days ago I copied a bunch of files/folders from an external NTFS formatted hard drive to my MacBook. The files where copied ok, but the permissions where messed up. How did I fix them? With this simple command: $ chmod -Rv u=rwx,g=rx,o=r username path_to_base_folder It recursively goes through all files and folders and fix their permissions. Source!

Haskell in TextMate (Snow Leopard)

How to install the bundle: mkdir -p /Library/Application\ Support/TextMate/Bundles cd /Library/Application\ Support/TextMate/Bundles git clone https://github.com/textmate/haskell.tmbundle That's it! Excelent Source!

Read and Write NTFS partition under Snow Leopard

This is experimental, and known to be unstable, use at your own risk. You need to modify /etc/fstab file to mount NTFS partitions for read and write. First, uninstall NTFS-3G/Paragon if installed. Open Terminal run diskutil info /Volumes/volume_name and copy the Volume UUID. Backup /etc/fstab if you have it (shouldn't be there in a default install).  Run sudo vim /etc/fstab and write: UUID=paste_the_uuid_here none ntfs rw or LABEL=volume_name none ntfs rw (if you don't have UUID for the disk). Repeat for other NTFS partitions. Restart your system. Thats all! source (great web)

Whats my Ipod Touch mac address?

Settings -> General -> About And then scroll down Wi-Fi Address.

How to disable lock screen in Ubuntu?

System -> Preferences -> Screensaver (for ubuntu 10.04)

SCP (Secure Copy)

Copying file to host: scp SourceFile user @ host : directory / TargetFile Copying file from host: scp user @ host : / directory / SourceFile TargetFile scp user @ host : / directory / SourceFile TargetFolder Note that if the remote host uses a port other than the default of 22, you can specify it in the command. For example, copying a file from host: scp -P 2222 user @ host : directory / SourceFile TargetFile

Metronome for Mac Os X

Image
Metronome is a free metronome for Mac OS X. (Requires Mac OS 10.3 or later. Metronome is a Universal Binary which runs 'natively' on both Intel and PPC Macs.)   Download Metronome 1.8.3 (Zip file about 684 KB) Metronome is designed with the practicing musician in mind which means that it's fast and easy to use. Nearly all of Metronome's functions and settings can be changed by using a single key. You won't have to put your instrument down to change the tempo (arrow keys) or the accent beat (number keys). Stop and start by tapping the space bar (or the Enter or Return keys). All these things can be done 'on the fly' without having to stop and restart the metronome. Metronome comes with a swag of useful features: An accurate Tempo Finder which allows you to tap any key to set a tempo. Easy keyboard input to set two bell accents on any beat from 2 to 9, and a text field to enter any other arbitrary beat as the accent. Stop and start the metrono...

Astrid - Android's Simple Task Recording Dashboard

Image
Astrid is a todolist/task tracking system for Google's Android platform built with your productivity in mind. Astrid's goal is to be simple to use with features you need to stay productive and get things done.

gmapcatcher, an offline map viewer

Image
Overview GMapCatcher is an offline maps viewer. It downloads tiles automatically from many providers such as: CloudMade , OpenStreetMap , Yahoo Maps , Google Map . It displays them using a custom GUI. User can view the maps while offline. GMapCatcher doesn't depend on google-map's java scripts so it should work even if google changes them. It also provides a downloading tool. GMapCatcher is written in Python 2.6, can run on Linux, Windows and Mac OSX. You can find a list of improvements and latest features in the Changelog Download http://gmapcatcher.googlecode.com/files/GMapCatcher-0.7.2.0.tar.gz or $ svn checkout http : //gmapcatcher.googlecode.com/svn/trunk gmapcatcher For Windows users, get the latest Windows installer Usage maps.py is a gui program used to browse google map. With the offline toggle button unchecked, it can download google map tiles automatically. Once the file downloaded, it will reside on user's hard disk and needn't to be downloa...

Netspeed

Image
What is Netspeed? Netspeed is just a little GNOME-applet that shows how much traffic occurs on a specified network device (for example eth0). You get the best impression of it, if you look at the screenshots below. How does it look like? This screenshot shows netspeed monitoring a W-Lan device. How to Install sudo apt-get install netspeed

How to use find command

On Debian based distros, find is part of the package findutils . find allow one to search for files on a filesystem based on different condition, creation date, modified date, file size, file type, permissions, name .... This tutorial, will be focused on finding files/directories based on their name, in order to explain in more depth the syntax of find, also will show how you can narrow down your search by adding condition on size and file modification time. 1. Find basis The default syntax of find is as such: find [path] [expression] where path is the path used as root for searching pattern and expression the expression we want the file to match. 2. Finding a file based on filename Let say for instance you want to find all .avi files in users home directories. Search files can be found with the following command: # find /home -name '*.avi' If you want to search for *.mpg and *.avi files, you will use the following: find /home -name '*.mpg' -o -name '*....

Split and Join files Linux

First we need a compressed file, tar -cvvzf file.tar.gz file.something Now, we split the compressed file, split -b 10M file.tar.gz "prefix_here" (parts of 10 megas with the prefix "prefix_here") To join the parts: cat "prefix_here"* > file_joined.tar.gz  And thats all! :)