http://sourceforge.net/projects/npp-compare/DavidIQ wrote:/me gives Rich some reading glasses (was already under "Text Editors" but would appreciate a link to the mentioned plugin)
Website - http://www.usbwebserver.net/What is USBWebserver?
USBWebserver is a combination of the popular webserver software: Apache, MySQL, Php and PhpMyAdmin. With USBWebserver it is possible to develop and show your php websites, everywhere and anytime The advantage of USBWebserver is, you can use it from USB of even CD
USBWebserver is perfect for:
Show a offline version of your website
Anywhere and anytime develop php websites
No need for expensive hosting
Working at multiple locations at projects
A good test before putting your website online
And many more
git extensions is not in the list. Is that on purpose?DavidIQ wrote:Thanks. List updated.
No. I simply missed it. Obrigado!brunoais wrote:git extensions is not in the list. Is that on purpose?DavidIQ wrote:Thanks. List updated.
git-stripspace
)Code: Select all
git ls-files | while read file ; do
git stripspace < "$file" | sponge "$file"
done
git-stripspace
does the cleaning, git-ls-files
safely selects all the files from the repository (and leaves the .git
directory alone). sponge
from moreutils makes it possible to use a file as input and output at the same time.sed
)Code: Select all
git ls-files | xargs sed -i -e 's/search-text/replace-text/g'
How does that help with extension writing?roelandaernoudts wrote:Another useful tool is vagrant https://www.vagrantup.com/
To easily set up a dev environment
I'm wondering the same...brunoais wrote:How does that help with extension writing?roelandaernoudts wrote:Another useful tool is vagrant https://www.vagrantup.com/
To easily set up a dev environment