Entries tagged as toolsRelated tags .net ajax apache framework iphone linux mac Microsoft mvc mysql oracle osx performance php usability webdevelopment windows administration database development security webdesign css google java java script regular expressions vermischtes benchmarking commandline zend Webdevelopment beta masterbootrecord MasterBootRecord.de microsoft office software virtualisierung vista domains perl Datenbanken MySQL PostgreSQL SQLite Oracle Mac Vermischtes firefox gmail fussball vlc vuvuzela wm onlinebanking push fun java server faces AJAX safari stumbleupon 10a432 apple appletv bugfix samsung snow leopard sync torrent troubleshooting Windows pocket pc joomla postgresql spam symbian wiki news regensburg semantic web seo advertising python sharewareSaturday, March 11. 2006SchemaSpySchemaSpy is a Java-based tool that analyzes the metadata of a schema in a database and generates a visual representation of it in a browser-displayable format. It lets you click through the hierarchy of database tables via child and parent table relationships. The browsing through relationships can occur though HTML links and/or though the graphical representation of the relationships. It's also designed to help resolve the obtuse errors that a database sometimes gives related to failures due to constraints." SchemaSpy SchemaSpy Defined tags for this entry: database, Datenbanken, development, java, MySQL, Oracle, PostgreSQL, SQLite, tools
Saturday, February 25. 20062on.net - Instant Messaging Jabber Server mit Signalisierung auf dem Handy2on.net - Instant Messaging Jabber Server mit Signalisierung auf dem Handy 2on.net - Instant Messaging Jabber Server mit Signalisierung auf dem Handy Friday, February 24. 2006mindscript project info - OpenSource visualisation and RAD-programming software suite
"MindScript is an OpenSource visualisation and programming software suite.
Mindscript is an environment where you can develop software in a graphical way. This is often described as a RAD-type of programming, and stands for Rapid Application Development. It's also an environment where you can visualize complex algorithms, easily make changes to them, and test them immediately. Mindscript is also a OS integrated runtime environment (like the Java Viritual Machine). Install Mindscript, and you can run mindscript programs (.msf files) that people has created else where. The mindscript programs are platform independent. A program developed at linux can be run at windows without a problem. Mindscript is free for non-commecrial use. However, companies do need to get a license " mindscript project info - OpenSource visualisation and RAD-programming software suite mindscript project info - OpenSource visualisation and RAD-programming software suite Saturday, February 18. 2006Mstsc.exe - RDP Client
"Mstsc
Creates connections to terminal servers or other remote computers, edits an existing Remote Desktop Connection (.rdp) configuration file, and migrates legacy connection files that were created with Client Connection Manager to new .rdp connection files. Syntax mstsc.exe {ConnectionFile | /v:ServerName[:Port]} [/console] [/f] [/w:Width/h:Height] mstsc.exe/edit"ConnectionFile" mstsc.exe/migrate Parameters ConnectionFile Specifies the name of an .rdp file for the connection. /v:ServerName[ :Port] Specifies the remote computer and, optionally, the port number to which you want to connect. /console Connects to the console session of the specified Windows Server 2003 family operating system. /f Starts Remote Desktop connection in full-screen mode. /w:Width/h:Height Specifies the dimensions of the Remote Desktop screen. /edit"ConnectionFile" Opens the specified .rdp file for editing. /migrate Migrates legacy connection files that were created with Client Connection Manager to new .rdp connection files. Remarks You must be an administrator on the server to which you are connecting to create a remote console connection. default.rdp is stored for each user as a hidden file in My Documents. User created .rdp files are stored by default in My Documents but can be moved anywhere." Mstsc.exe - RDP Client Mstsc.exe - RDP Client Thursday, February 2. 2006Network File Copy using SSH
Ein paar Möglichkeiten Dateien über ssh auf einen anderen Rechner zu übetragen:
"tar cvf - . | gzip -c -1 | ssh user@host cat ">" remotefile.gz ssh target_address cat " remotefile ssh target_address cat " remotefile cat localfile | ssh target_address cat ">" remotefile cat localfile | ssh target_address cat - ">" remotefile dd if=localfile | ssh target_address dd of=remotefile ssh target_address cat remotefile.tgz )" ( cd SOURCEDIR && tar cvf - . | gzip -1 -) | ssh target_address "(cd DESTDIR && cat - > remotefile.tgz )" ssh target_address "( nc -l -p 9210 > remotefile & )" && cat source-file | gzip -1 - | nc target_address 9210 cat localfile | gzip -1 - | ssh target_address cat ">" remotefile.gz" Network File Copy using SSH Network File Copy using SSH Wednesday, February 1. 2006Nmap 4.00 veröffentlicht
Seit gestern gibt es eine neue Version des Portscan-/Fingerprinting-/Host-Discovery-Tools. Die Änderungen von Version
4.0 werden ausführlichst hier
beschrieben. Für den Gebrauch unter Windows XP äusserst interessant ist vor allem der Fix für SP2, um wieder mit
RAW-Packets arbeiten zu können.
Download gibts auf dieser Seite Thursday, December 22. 2005AjaxTrans
"Start typing any text you want to be translated into the green field. The words should be automatically translated into
the language of your choice and appear in the bluish box. To switch langauges, simply click on the language you would
like to translate from and then procede to select the language you would like to translate into. In order to swap the
contents of the two boxes, use a double click."
AjaxTrans AjaxTrans Wednesday, December 7. 2005Quicksilverscreen.com: Script Archive
Haufenweise nützliche Shellscripts
Quicksilverscreen.com: Script Archive Quicksilverscreen.com: Script Archive Monday, December 5. 2005WikiMatrix
"Welcome to the brand new WikiMatrix.org, your number one source to find the Wiki engine that matches your or your
company's needs. "
WikiMatrix WikiMatrix Saturday, December 3. 2005SNARF from Microsoft Research
"Microsoft Research's Community Technology presents SNARF, the Social Network and Relationship Finder.
SNARF was built around the notion that social network information that is already available to the computer system can be usefully reflected to the user: a message from a manager might be seen differently than a message from a stranger, for example. SNARF applies this idea to email triage: handling the flow of messages when time is short and mail is long. The SNARF UI is designed to provide a quick overview of unread mail, organized by its importance. The UI shows a series of different panes with unread mail in them; each pane shows a list of authors of messages. Clicking on a name shows all messages involving that person. People use a variety of strategies to handle triage; there is no single "best" ordering of email messages to produce an optimal outcome. SNARF gives the user the freedom to build their own ordering. Each person in their inbox is assigned a set of meta-information: "number of emails sent in the last month," for example. These metrics can, in turn, be combined to create an ordering across all contacts. For more information, check out the CEAS paper on SNARF." SNARF from Microsoft Research SNARF from Microsoft Research Thursday, December 1. 2005How to use sed
"Introduction to Sed
How to use sed, a special editor for modifying files automatically. If you want to write a program to make changes in a file, sed is the tool to use. There are a few programs that are the real workhorse in the Unix toolbox. These programs are simple to use for simple applications, yet have a rich set of commands for performing complex actions. Don't let the complex potential of a program keep you from making use of the simpler aspects. This chapter, like all of the rest, start with the simple concepts and introduces the advanced topics later on. A note on comments. When I first wrote this, most versions of sed did not allow you to place comments inside the script. Lines starting with the '#' characters are comments. Newer versions of sed may support comments at the end of the line as well. " How to use sed How to use sed Using the sed Editor
"Using the sed Editor
The sed editor is among the most useful assets in the Linux sysadmin's toolbox, so it pays to understand its applications thoroughly One of the best things about the Linux operating system is that it is crammed full of utilities. There are so many different utilities, in fact, that it is next to impossible to know and understand all of them. One utility that can simplify life in key situations is sed. It is one of the most powerful tools in any administrator's toolkit and can prove itself invaluable in a crunch. " Using the sed Editor Using the sed Editor Tuesday, November 29. 2005Lussumo Vanilla - The sweetest forum on the web
"Meet Vanilla: a new kind of web forum
With Vanilla we wanted to break the mold created and followed by just about every other forum on the web. We sat down and thought about what we liked, and more importantly, what we didn't like about web forums. We wanted emphasis on the discussions rather than the statistics. We wanted to stop using MSN or AIM to send secret messages to other forum members; We wanted to be able to save the common searches. Basically, we wanted the thing to work for us instead of against us. Most importantly we wanted it to be free and we wanted it to run on just about every web server out there. So, Vanilla is a PHP / MySQL solution that is 100% open-source. You can take it and alter it and use it free of charge. The GPL is your friend. Here are a few more of Vanilla's features... Extensibility A fully extensible solution, Vanilla comes loaded with extensions, and we're adding new ones all the time. If you are a programmer, you can create your own, too. If you're interested in getting involved and making some extensions, read the documentation and join our community forum. Style Vanilla has an awesome xhtml setup that allows you to create custom styles, or you can use some of the ones we've already created. If you're a CSS guru, read the documentation and see how to create and submit your own styles. Internationalization Vanilla also has a custom language component that allows you to run any language. If we don't have your language, you should do a translation! Find out how at Lussumo Documentation. Much, much more... There is still so much more that we haven't even touched the surface of. But the best part of Vanilla is that it's not cluttered with links and buttons you don't understand. Vanilla is clean and smooth. Simply put: Vanilla is a pleasure to use." Lussumo Vanilla - The sweetest forum on the web Lussumo Vanilla - The sweetest forum on the web Thursday, November 24. 2005Nützliche Mac Software
Der Powerbook-Blogger veröffentlicht auf eine Mail von mir bezüglich seiner
Aktion "666 Tage", eine Liste seiner meistgenutzten Software auf seinem Powerbook.
Sehr schön - da ist einiges dabei was ich noch nicht getestet habe Danke sehr! Wednesday, November 23. 2005Linux.com | My sysadmin toolbox
"Every administrator has a set of software tools that he just can't live without. These are the utilities that you
install as soon as you log into a new machine, to help make day-to-day tasks a little easier. Here are my top 10 tools.
"
Linux.com | My sysadmin toolbox Linux.com | My sysadmin toolbox Wednesday, November 2. 2005TrueCrypt Version 4 erschienen
Das geniale Verschlüsselungstool TrueCrypt ist in der Version 4 erschienen. Nun gibt es auch endlich
Unterstützung für Linux. Die OS X-Version dürfte auch nicht mehr lange auf sich warten lassen.
Die Änderungen im Detail:
New features:
TrueCrypt - Free Open-Source On-The-Fly Disk Encryption for Windows XP/2000/2003 TrueCrypt Version 4 erschienen Monday, October 31. 2005How To Build A Web App
"How to build a Web App" ist ein kleines, geniales Tool dem man mitteilt welche Plattform, Persistenzschicht,
Development OS, Produktiv OS, Datenbank, Framework, View usw. man gerne benutzen möchte. Danach spuckt es eine
hierarchische Checkliste aus, welche man Aufklappen kann, um direkt auf der entsprechenden Webseite zu landen.
Am Ende hat man eine fertige Webanwendung entwickelt How To Build A Web App How To Build A Web App Tuesday, October 18. 2005Microsoft VirtualWiFi
Virtual WiFi erlaubt es unter Windows XP eine physikalische WLAN-Karte unter mehreren logischen Adaptern anzusprechen,
um leichter auf unterschiedliche Konfigurationen zurückgreifen zu können. Ausserdem ist es z.B möglich gleichzeitig
auf ein Infrastruktur-Netzwerk und ein Ad-Hoc Netzwerk zuzugreifen.
Microsoft VirtualWiFi Microsoft VirtualWiFi
« previous page
(Page 2 of 3, totaling 44 entries)
» next page
|
Show tagged entries.net administration advertising ajax apache beta commandline css database development firefox framework fun gmail google google earth iphone java java script java server faces linux Mac masterbootrecord MasterBootRecord.de microsoft mvc mysql news office onlinebanking oracle osx performance php pocket pc postgresql regensburg regular expressions security seo software spam tools usability vermischtes vista webdesign webdevelopment windows
Blog abonnierenBlog AdministrationQuicksearch |
Kommentare