Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I need to download a full directory tree (and subfolders of course) in HTTP
https://cours.etsmtl.ca/gts840/laboratoires/
I want all the stuff in the directory instead of downloading one by one. Which download manager supports that?
Thank you!
I would use wget
wget -m https://cours.etsmtl.ca/gts840/laboratoires/
GNU wget
wget --mirror https://cours.etsmtl.ca/gts840/laboratoires/
Try:
wget -m --no-check-certificate https://cours.etsmtl.ca/gts840/laboratoires/
The second option ignores SSL.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
For single-user development, I like Fossil because it's a single EXE and has a lot of features.
However, at this point, it doesn't have a grep feature to search for code in the repository. The only way is to write a script with a loop to successively check out each revision and grep through the work files.
Is there another small, good SCM (for Windows) that does support grep to avoid checking out revisions?
Thank you.
Not so small, but good - Mercurial (in form of TortoiseHG). It has power grep.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Is there a good tutorial on setting up SASS for Sublime Text 2 on Windows? I've been looking and I have not come up with anything.
You could use the Sass build plugin (available here), and if you want to do it yourself, you can just read how the plugin do it.
I have used Scout to get up and running. This program is really good and also offers compression.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am wondering whether there is a vi like editor under windows command line?
Just download vim for windows from http://www.vim.org -- on the installation it will ask if you want to create shortcuts for calling it from the command line. Then you can just vim <filename>.
Komodo has vi mode, eclipse has few vi plugins, using cygwin, or as Juan said go with gvim
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I want to clone a site and keep file structure as site original, like have CSS folder, images folder etc. all things are the same on the web, is there some tools can achieve this, I have tried:
wget -m http://www.xxx.com
but it's seem didn't contain CSS, JS file because they in a different sub-domain like tech.xxx.com
I've used DownloadThemAll! FireFox add-on and it works pretty well.
https://addons.mozilla.org/en-US/firefox/addon/201/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Can anyone recommend an open source Ruby library for adding XMP metadata to JPEG images?
MiniExiftool, which is just a wrapper around the Exiftool command-line app, is the only open-source one I know of.
There's a commercial library called Chilkat, but I do not have experience with it, being that it is commercial.