![]() | ||
| Weblog | ||
|
|
||
First public Release of PhotoImporter
Download PhotoImporter 0.3 here
Requirements: Microsoft .NET Framework 2.0 Cool Tool: Copy Source As HTML
After a little search in the web I found a cool tool for Visual Studio Developers: CopySourceAsHtml (CSAH)! With this Add-On available for both Visual Studio 2003 & 2005 you can grab the code directly from within the Visual Studio editor and paste it as HTML into the source code view of your blog editor. The Add-On has several config options to make it suite your needs. For me this is the best (and most stable) solution for publishing my source code snippets on the web. Maybe you have a better one? Tell me in your comments… You can get the tool here: Create an MD5 sum of a string
Use this little static method to create an MD5 hash from a string instance: /// <summary> /// Create an md5 sum string of this string /// </summary> /// <param name=”str”>the input string</param> /// <returns>the md5 hash of the input string</returns> static private string GetMd5Sum(string str) { // First we need to convert the string into bytes, which // means using a text encoder. Encoder enc = System.Text.Encoding.Unicode.GetEncoder();
// Create a buffer large enough to hold the string byte[] unicodeText = new byte[str.Length * 2]; enc.GetBytes(str.ToCharArray(), 0, str.Length, unicodeText, 0, true);
// Now that we have a byte array we can ask the CSP to hash it MD5 md5 = new MD5CryptoServiceProvider(); byte[] result = md5.ComputeHash(unicodeText);
// Build the final string by converting each byte // into hex and appending it to a StringBuilder StringBuilder sb = new StringBuilder(); for (int i=0;i<result.Length;i++) { sb.Append(result[i].ToString(“X2″)); }
// And return it return sb.ToString(); } Rock & Rule
without words… Enable Visual Styles on Windows 2003 ServerWhy? Imagine you have a development system (in my case on a VMWare Virtual Machine) based on Windows 2003 Server (don’t ask why I have a server OS for developing applications First Screenshots of my new tool: PhotoImporter
Using Get-Member for learning PowershellOne of the most powerful commands for learning-by-doing users is Get-Member. This command dumps out the members of the different object types that come out from several CmdLets.
With this command you get all members of
A little trap in using operatorsYesterday I ran into an ugly trap on Powershell. I tried to concat two strings directly in an echo statement but the result was somewhat confusing:
But then I remembered the good old times of Bash Shellscripts
Ed & Fred
Illy Espresso
|
Suche im BlogKategorienPhotographie (36)Technologie (23) Programme & Tools (16) Speedesign (15) Design & Bildbearbeitung (15) Persönliches (15) Ausrüstung (9) Lichtmaler (9) Spass (8) Wordpress (7) Strobist-Studio (7) Entertainment (6) Freizeit (5) Snippets (5) Apple (5) Panorama (5) Entfesselt Blitzen (5) Software (5) Wettbewerbe (4) Photoshop (4) Wie bitte? (4) Desktop Wallpaper (4) Studio (2) Letzte KommentareAchim (About)Hallo,
wenn Du Bilder aus meinem Flickr-Photostream meinst, da ist die Lizenz bei dem jeweiligen Bild angegeben. Ansonsten halt wie immer: bei konkretem Interesse nachfragen mit Angabe des Bildes ...
saemideluxe (About)Hallo Achim
Eine Frage bezugs copyright der Bilder in deiner Gallery:
Darf ich Bilder von deiner Gallery auf meiner Seite verwenden?
Und wenn ja, unter welchen Bedingungen?
mfg
saemideluxe
Daniel (Und noch ein bisschen Vintage Hifi...)Hier meine Tips zum Thema Vintage Hifi
Tuner von K+H (Klein+Hummel) und Bandmaschine + Verstärker von Revox (A77 und A75)
Achim (EOS 7D, Lightroom 3 und ein Nachmittag)Hi. Die Automatik ist (mit meinem 17-40L an der 7D bei 17mm) hervorragend. Das Kameraprofil ist ja auch nicht soo wichtig. Jedenfalls musste ich nur einen Haken setzen und Verzeichnung und Vignetti...
det hol (EOS 7D, Lightroom 3 und ein Nachmittag)automatischen Objektivkorrektur, alles gut und schön aber für die 7D gibt es keine Daten. Und es ist fraglich ob dies Automatik wirklich so gut ist. Weil ein Objektiv, sagen wir mal ein 70-200mm,...
| |
|
© 1999-2009 by speedesign.de - Alle Rechte vorbehalten powered by Wordpress und dem SitBackAndJoy-Theme v1.4 Theme Icons (Diagona Iconset) by pinvoke.com Entwickelt mit Eclipse auf einem Mac Danke an Nicole (meine grosse Liebe) für die ehrliche und schonungslose Kritik. |
||