Short version for index and feeds
Shrink the file size of a pdf?
Want to shrink the file size of a pdf? Use the following command. ebook has a good balance between the file size and the image quality. screen compresses the images too much.
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/ebook[screen, ] -dNOPAUSE -dQUIET -dBATCH -sOutputFile=output.pdf input.pdf
-dPDFSETTINGS ...
const-overloading in C++
Do you want to debug a program with command line parameters in Visual C++ 2008?
Set them in project->configuration properties->Debugging. But there is one more thing to do: Set your project as the Startup Project in the Solution Explorer! If you don't do that, the command line parameters won't be passed in whatever you try!
[CMake] Cannot determine link language for target?
For whatever reason add
SET_TARGET_PROPERTIES(XYZ PROPERTIES LINKER_LANGUAGE C)