Skip to main content

Fabio de Miranda's Library tagged utilities   View Popular

23 Dec 09

TeamViewer - Free Remote Access and Remote Desktop Sharing over the Internet

TeamViewer - the All-In-One Solution for
Remote Access and Support over the Internet

www.teamviewer.com/index.aspx - Preview

utilities windows

16 Dec 09

What deux yeux have teux deux teuxday?

TeuxDeux is a simple, designy, browser-based to-do app and the first collaboration between studio-mates swissmiss and Fictive Kin . The idea was to build a bare-bones, but visually compelling and highly usable to-do app based on Tina’s personal ideal work-flow.

teuxdeux.com - Preview

productivity web tool utilities lifehack

15 Dec 09

SVN client SmartSVN

SmartSVN is a graphical client for the Open Source version control system Subversion (SVN).

www.syntevo.com/...index.html - Preview

svn subversion versioning programming utilities

17 Nov 09

tmux

tmux is a terminal multiplexer: it enables a number of terminals (or windows), each running a separate program, to be created, accessed, and controlled from a single screen. tmux may be detached from a screen and continue running in the background, then later reattached.

tmux uses a client-server model. The server holds multiple sessions and each window is a independent entity which may be freely linked to multiple sessions, moved between sessions and otherwise manipulated. Each session may be attached to (display and accept keyboard input from) multiple clients.

tmux.sourceforge.net - Preview

utilities software linux unix terminal

31 Jul 09

svn-time-lapse-view - Project Hosting on Google Code

SVN Time-Lapse View is a cross-platform viewer that downloads all revisions of a file and lets you scroll through them by dragging a slider. As you scroll, you are shown a visual diff of the current revision and the previous revision. Thus you can see how a file evolved, and you can easily find the revision at which lines appeared, disappeared, or changed.

Time-Lapse View is a powerful visual alternative to the Subversion "blame" command. It is inspired by the excellent Time-Lapse View in the Perforce version-control system.

code.google.com/...svn-time-lapse-view - Preview

svn tools programming utilities

VMware vCenter Converter, Convert Physical Machines to Virtual Machines

Download Buy Support
Automate and simplify physical to virtual machine conversions as well as conversions between virtual machine formats with VMware vCenter Converter. Use the intuitive wizard-driven interface of VMware vCenter Converter to convert your physical machines to virtual machines.

www.vmware.com/converter - Preview

vmware virtualmachine virtualbox utilities sysadmin

30 Jul 09

pyscripter - Project Hosting on Google Code

PyScripter is a free and open-source Python Integrated Development Environment (IDE) created with the ambition to become competitive in functionality with commercial Windows-based IDEs available for other languages.

code.google.com/pyscripter - Preview

python ide tools utilities windows

27 Jul 09

fabricate - finds dependencies automatically for any language

Sounds too good to be true

fabricate is a build tool that finds dependencies automatically for any language. It's small and just works. No hidden stuff behind your back. It was inspired by Bill McCloskey's make replacement, memoize, but fabricate works on Windows as well as Linux.
Get fabricate.py now or learn how it works.
Features
Never have to list dependencies.Never have to specify cleanup rules.The tool is a single Python file.It uses MD5 (not timestamps) to check inputs and outputs.You can learn it all in about 10 minutes.You can still read your build scripts 3 months later.

code.google.com/fabricate - Preview

programming tools utilities makefile

23 Jul 09

Polyken 231 Military Grade (Waterproof) Duct Tape at FindTape.com

I need this!
Polyken 231 Military Grade (Waterproof) Duct Tape is a high performance, waterproof packaging and sealing duct tape used for military packaging and other demanding applications. Also used for general repair and sealing. Polyken 231 Duct Tape is strong and durable; has high adhesion which allows it to stick to a variety of surfaces;

www.findtape.com/...product.aspx - Preview

utilities diy homebrew macgyver

22 Jul 09

GameDev.net - Product Review - Autodesk 3ds Max 2010

After a couple of releases that have focused on internal issues, the latest release of 3ds Max returns to the focus on new features. 3ds Max 2010 includes a number of subtle interface changes and more powerful viewport preview options. It also includes a radical new poly modeling paradigm called collectively, the Graphite Modeling tools. These tools are presented using a new dynamic set of panels and toolbars called the Ribbon.

Other key new features include, the Material Explorer for viewing and changing multiple material properties at once; a Viewport Canvas for painting textures directly on 3D objects; and a feature to auto-render a variety of surface maps. The ProSound feature for adding multiple audio tracks to a scene is also a welcome addition.

Add to this burgeoning list of new features, menus for identifying modeling problems, several new useful modifiers, a Container structure for bundling and locked scene assets and multiple rendering improvements and the results are the most powerful version of Max to date.

Interface Modifications

The interface for 3ds Max 2010 has some subtle changes, but nothing that will severely alter any of your current workflows. The one exception is the new Ribbon interface that holds the Graphite Modeling tools. The most notable new change is that all of the standard icon buttons have been redesigned. The new icons resemble the old ones and are roughly located in the same location, so finding the commands you're familiar with won't be too much of a task.

Another key interface change is that several new icon buttons are located on the document's title bar. These new toolbars include several file buttons for loading and saving files, undo and redo commands and a help search field for quickly finding answers to specific keywords.

Another helpful interface addition is the Transform Toolbox. This panel lets you rotate, size and align the current selection with single button clicks. It also includes a button for creating a quick clone of the current object.

www.gamedev.net/...productreview.asp - Preview

computerGraphics 3d animation modeling 3dsmax utilities gamedev cgi

14 Jul 09

xmlvm - XML to Code

The goal of XMLVM is to offer a flexible and extensible cross-compiler toolchain. Instead of cross-compiling on a source code level, XMLVM cross-compiles byte code instructions from Sun Microsystem's virtual machine and Microsoft's Common Language Runtime. The benefit of this approach is that byte code instructions are easier to cross-compile and the difficult parsing of a high-level programming language is left to a regular compiler. In XMLVM, byte code-based programs are represented as XML documents. This allows manipulation and translation of XMLVM-based programs using advanced XML technologies such as XSLT, XQuery, and XPath.

www.xmlvm.org/overview - Preview

programming xml tools utilities java .net

27 Jun 09

davysironpythoneditor - Google Code

Davy's Ironpython Editor (DIE) is a clutter free IronPython editor written in IronPython with some basic IDE features. The project intentions is to create a editor along the lines of SPE or DrPython for the IronPython world. DIE is easy to deploy and the mobile version will run from a USB key etc.

code.google.com/...davysironpythoneditor - Preview

ironpython python programming .net utilities

Munge - Simple ifdef-like java code preprocessor

Munge: a purposely-simple Java preprocessor. It only supports conditional inclusion of source based on defined strings of the form "if[tag]", "if_not[tag]", "else[tag], and "end[tag]". Unlike traditional preprocessors, comments and formatting are all preserved for the included lines. This is on purpose, as the output of Munge will be distributed as human-readable source code.

To avoid creating a separate Java dialect, the conditional tags are contained in Java comments. This allows one build to compile the source files without pre-processing, to facilitate faster incremental development. Other builds from the same source have their code contained within that comment. The format of the tags is a little verbose, so that the tags won't accidentally be used by other comment readers such as javadoc. Munge tags must be in C-style comments; C++-style comments may be used to comment code within a comment.

weblogs.java.net/...Munge.html - Preview

java programming utilities

22 Jun 09

Graphviz Example: Entity-Relation Data Model

Click on the picture to view the source. Defining an ER this way seems way less cumbersome than doing it in a graphical editor.

www.graphviz.org/...ER.html - Preview

database diagram utilities visualization

20 Jun 09

MobaXterm - The free multitab Unix browser for Windows

MobaXterm (formerly known as MobaXVT) is an enhanced terminal with an X server and a set of Unix commands (GNU/Cygwin) packaged in a single portable exe file.

mobaxterm.mobatek.net/en - Preview

cygwin unix windows utilities

mintty - Google Code

MinTTY is a terminal emulator for Cygwin. It is based on code from PuTTY 0.60 by Simon Tatham and team.

code.google.com/mintty - Preview

cygwin win32 windows utilities unix

1 - 20 of 81 Next › Last »
Showing 20 items per page

Highlighter, Sticky notes, Tagging, Groups and Network: integrated suite dramatically boosting research productivity. Learn more »

Join Diigo