CodeLobster
CodeLobster
License: Freeware (registration required); Professional version is shareware and it's included with the freeware version for a trial period, after that the professional version's features are disabled.
Author: CodeLobster Software
Install: yes, but in the setup process there's a check to choose between portable and classic setup.
Size: about 50 MBytes (about 17 MBytes setup)
Requirement: Windows ME or later
CodeLobster is an application to develop in PHP, HTML, CSS, Javascript languages (it's a free IDE -integrated development environment- supporting autocomplete, highlighting, and PHP debugging), but it has some features which need to be noted because they are so good, and rare to find all in just one program, that you don't need to be a developer to use CodeLobster.


Posted by: Z24 | Mon, Aug 13 2012 |
Category: /software/windows |
Permanent link |
home
Tagged as: freeware, programming
, software, windows
FileDate Changer
License: freeware
Author: NirSoft
Install: no
Size: 50 KBytes
Requirement: Windows 95 or later, comctl32.dll
With this very little tool you can change the Created/Modified/Accessed dates of one or more files at the same time.


Posted by: Z24 | Wed, May 04 2011 |
Category: /software/windows |
Permanent link |
home
Tagged as: file management, freeware, software, tools, windows
CamStudio
License: freeware
Author: RenderSoft
Install: yes
Size: 8 MB (1.3 MB install), 33 KB codec
Requirement: Windows 95 or later, comctl32.dll
CamStudio is a free screen and audio recording tool and comes with a swf flash converter and a lossless codec.


Posted by: Z24 | Wed, May 04 2011 |
Category: /software/windows |
Permanent link |
home
Tagged as: freeware, screen recording, software, tools, windows
Panorado Flyer
License: freeware for private use
Author: Karl Maloszek
Install: yes
Size: 250 KBytes (114 KBytes installer)
Requirement: Windows with COM support
Panorado Flyer is a compact program that gathers GPS coordinates from Google Earth and writes them into images EXIF information.


Posted by: Z24 | Wed, May 04 2011 |
Category: /software/windows |
Permanent link |
home
Tagged as: freeware, google earth, gps, images, software, tools, windows
Convert
License: freeware
Author: Josh Madison
Install: no (optional installer available)
Size: 560 KBytes (153 KBytes compressed)
Requirement: Windows 95 or later
Convert is a compact and simple unit conversion program: it converts distance, speed, pressure, temperature, time, volume, angle, area, mass, power, and many more measure units, and it allows to create custom conversions.


Posted by: Z24 | Wed, May 04 2011 |
Category: /software/windows |
Permanent link |
home
Tagged as: freeware, measurement, software, tools, windows
How to rename multiple files from bash
Rename all *html files to *test:
for x in `ls *html`; do mv $x `echo $x | sed -e "s/html/test/"`; done
Bash for:
for var in some-list ; do command ; done


Posted by: Z24 | Wed, May 04 2011 |
Category: /linux |
Permanent link |
home
Tagged as: command-line, linux, programming, script, shell
Execute a command at shutdown
To dismount TrueCrypt volumes at shutdown and reboot time, I created a script, put it in/etc/init.d/
and symlinked it into the needed /etc/rc?.d/
directories using update-rc.d
.
Here is the detail:


Posted by: Z24 | Wed, May 04 2011 |
Category: /linux |
Permanent link |
home
Tagged as: command-line, linux, programming, script, shell