Tissape Tape – Free Photoshop Brushes at Brusheezy!
„My exclusive collection of masking tape brushes, They look good as any tape really.“
„My exclusive collection of masking tape brushes, They look good as any tape really.“
„Tethering your camera, fast and easy:
Taking photos in the studio is so much easier if you can see what your doing.
StudioTether is a free application to tether your camera to your Mac.
LightroomTether is a free plugin for Adobe Lightroom v2 which automates the running and configuration of StudioTether.
Feature Overview:
* Remote control of your camera & onscreen display of camera settings
* Nikon LiveView support at 60fps! (recording coming soon)
* Instant import of images into Adobe Lightroom; no waiting for Lightroom to detect the images
* Integrated with Adobe Lightroom; single configuration“
„System.Data.SQLite is the original SQLite database engine and a complete ADO.NET 2.0 provider all rolled into a single mixed mode assembly. It is a complete drop-in replacement for the original sqlite3.dll (you can even rename it to sqlite3.dll). Unlike normal mixed assemblies, it has no linker dependency on the .NET runtime so it can be distributed independently of .NET.“
„Shell Watcher can be used to monitor your server logs (by using SSH with key authentication you can even grab info from any command on a server somewhere on the Internet), to display your current disk usage, display who is currently logged into your computer, and so on. The list is virtually endless.“
Kostenlos eine Rufnummer zum Faxempfang für Fax2Mail – leider auch heutzutage noch notwendig…
Call-Manager.de – Der kostenlose Fax to EMail und Voice to EMail Service [Startseite]
Eben habe ich meinen alten Server bei IPX gekündigt. Daraufhin kam die Kündigungsbestätigung mit diesem Text:
„… Ihr Server 10138 ist seit dem 18.10.03 online. …“
Ich behaupte mal der hat sich abbezahlt…
shutdown -h now
RIP
„.NETZ is a free open source tool that compresses and packs the Microsoft .NET Framework executable (EXE, DLL) files in order to make them smaller. Smaller executables consume less disk space and load faster because of fewer disk accesses.
„
„Build your professional applications faster and at a lower cost with the QIOS DevSuite .NET Components Library. QIOS DevSuite is an advanced .NET control library, that is fully integrated with Visual Studio.NET and can be used with all .NET languages, such as C#, VB.NET and C++.NET. „
Etwas speziell, kann aber vielleicht der eine oder andere brauchen: Von einem POP3-Server sollen alle Attachments extrahiert werden und danach die Mails gelöscht werden. Die Anforderung ist hier speziell für die Veröffentlichung von Content per E-Mail. Es werden per Cron einmal täglich die Anhänge ausgelesen und veröffentlicht.
Ich habe das ganze mit Perl und den beiden Modulen Mail::POP3Client und Mail::MboxParser umgesetzt. Diese müssen vorher per CPAN installiert werden.
Das geht ganz einfach so:
cpan install Mail::POP3Client
cpan install Mail::MboxParser
cpan install Date::Format
Falls ihr cpan das erste mal startet, will es noch konfiguriert werden. Die meisten Einstellungen können einfach per Return mit dem Standardwert bestätigt werden.
Das Script ist extrem simpel, ohne Fehlerhandling und kann leicht angepasst werden:
#!/usr/bin/perl -w
#Muss vorher per CPAN installiert werden
use Mail::POP3Client;
use Mail::MboxParser::Mail;
use Date::Format;#USESSL wird z.B. bei GMail gebraucht
my $pop = new Mail::POP3Client (USER => ‚user‘,
PASSWORD => ‚pass‘,
HOST => ‚pop.gmail.com‘,
DEBUG => 1,
USESSL => 1);print $pop->Message();
for my $i (1 .. $pop->Count) {
my $datetime = time2str(‚%Y%m%d%H%M%S‘, time);
my $msg = Mail::MboxParser::Mail->new( [ $pop->Head($i) ],
[ $pop->Body($i) ] );
#Wo sollen die Attachments hin?
$msg->store_all_attachments( path => ‚/tmp/test‘, prefix => $datetime );#Auskommentieren, falls die Mails vom Server gelöscht werden sollen
#$pop->Delete($i);print $pop->Message();
}$pop->Close();
Update am 20.02.2009: Timestamp-Prefix für die Dateinamen hinzugefügt. Achtung: Jetzt wird das Paket Date::Format gebraucht!
„This script was originally intended to create virtual hosts for a development environment on Mac OS X with the built-in Apache server so that you can reflect a production environment locally. „