Print entire Project source code [closed] - visual-studio-2010

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I need to print the source code of a VS2010 project (all files, around 400). Is there any way to automate this task?
Any option is good: whether it is directly to a "physical" printer or to a virtual printer (PDF printer).

It's not built into VS. But you can find a macro that does the job at http://msdn.microsoft.com/en-us/library/ms973240.aspx.
Also, a modified version is loacted at https://stackoverflow.com/a/683835/337294

A Project file is an XML file. You can extract the filenames and then pipe them to any tool you like. If you have any unix-like tools on your Windows system you can do the following to print all .cpp files:
grep -o "\".*\.cpp\"" MyProject.vcxproj | xargs cat

Related

Golang Portable ("thumbdrive edition") for windows [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 11 months ago.
Improve this question
Do Golang has Portable edition on windows , something like Strawberry Perl portable edition https://strawberryperl.com/releases.html , or git Portable ("thumbdrive edition") , that you can download Go as zip file on windows and extract it and work with it ?
also on this site : https://go.dev/dl/ i see to files MSI and ZIP what is the exact difference between them ?
I just download the zip file from the downloads page https://go.dev/dl/
Then I just alias go to the {unzippedDir}/bin/go.exe

Identify PDF files which have bookmarks [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I have a batch of pdf files (most of them are dissertations) in a directory. Some of them have bookmarks in the pdf which helps me to jump to topics easily. Now, I want to bookmark the rest of them.
It is there any script that can help me to tag or identify the book marked files from the others.
The closest I came was to use CoherentPDF which can pick bookmarks from each file.
cpdf -list-bookmarks myfile.pdf
For example lists the bookmarks in a single file. But, I could't get this to work for a batch of files (combining it with grep) for example.
Is there any way to do it?
A simple script iterating over files in a directory may be all you need
for f in /Your/Directory/Path/*.pdf;
do cpdf -list-bookmarks $f;
done

Name one text editor that can open zip files besides EMACS/Vim [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I have searched for, downloaded and tried a lot of different editors but it seems that only EMACS and Vim are capable of opening zip files. As a noob i find both intimidating, as would be countless other programmers.
Does anyone know of an editor besides these 2 that can open zip files ?
That would be OLDSKOOLED at http://oldskooled.a2hosted.com/
It's console based, has a minimalist design but extremely functional.
Able to open ZIP, GZ and Z archives even if they're nested inside other zip files.
I absolutely love its quick folding..and the Ctrl-W paste from clipboard history.
So, there are only 3! text editors that can open zip files in the whole wide world ?

Windows command line multiple colors for logging [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'm routing my application logs to the windows cmd line window. It's hard to read I was just wondering if some kinda of plugin exists for the cmd line to color the text based on some rules for example timestamps in green, anything in [] as yellow, etc.
I'm not talking about routing the logs somewhere else more readable, but specifically if I can get the windows cmd line to be a more readable log target.
There is a free tool called SnakeTail that can tail log files and colorize the data in its application window based on regular expressions. You could use it instead of viewing log files from cmd.exe.
http://code.google.com/p/snaketail-net/

Is there an open source or shareware program like Quickjump? allowing jumping to a folder with a few keystrokes? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
QuickJump
see http://www.techhit.com/QuickJump/open_navigate_windows_folders.html
Launchy is the only alternative I have found so far. It works if you tell it what folders to index, and remember checking off the "Include directories" for each of them. It's quick and works ok, but not excellent. For instance, it does not show the path to the directory, so if you have multiple hits you need to guess which one it is. But I can open my Downloads folder with Alt+Space and then writing "do".
It is open source and supports plugins, so extending it to show the path is possible.

Resources