Monday, October 5, 2015

Cleaning Debug and release folders in visual studio solutions / projects

Either you need to clean these folders to save space,  make sure that your projects are clean rebuilt, or you have the nasty error :

fatal error C1083: cannot open compiler generated file: 'xxxxxx.xxx': permission denied

 

Searching the internet will give you some results from msdn or stackoverflow , that will mostly work like :

 

MSDN solution .

 

StackOverflow 

 

but the one that worked for me is a small C++ project :

Clean Visual Studio Workspaces

 

from there download the source files and build the project and use it directly to clean all these nasty folders

 

Tuesday, May 26, 2015

fatal error C1083: Cannot open precompiled header file: 'Debug\xxxxx.pch': No such file or directory

This error lost me a lot of time but fortunatly a wise guy at stackoverflow made an extensive explanation on how to solve it, the original thread is at this link :
how-to-fix-pch-file-missing-on-build

The whole problem lies in some header files needs to be already compiled so your compilation goes through. and there is some strategy for handling header files that must be precompiled as Jive Dadson explains in his answer :

  1. Right-click on your project in the Solution Explorer.
  2. Click Properties at the bottom of the drop-down menu.
  3. At the top left of the Properties Pages, select All Configurations from the drop-down menu.
  4. Open the C/C++ tree and select Precompiled Headers
  5. Precompiled Header: Select Use (/Yu)
  6. Fill in the Precompiled Header File field. Standard is stdafx.h
  7. Click Okay
  8. If you do not have stdafx.h in your Header Files put it there. Edit it to #include all the headers you want precompiled.
  9. Put a file named stdafx.cpp into your project. Put #include "stdafx.h" at the top of it, and nothing else.
  10. Right-click on stdafx.cpp in Solution Explorer. Select Properties and All configurations again as in step 4 ...
  11. ... but this time select Precompiled Header Create (/Yc). This will only bind to the one file stdafx.cpp.
  12. Put #include "stdafx.h" at the very top of all your source files. (Unix or cygwin users: find . -name "*.cpp" | xargs -n1 sed -i '1s/^/#include "stdafx.h"\n/')
Lucky 13. Cross your fingers and hit Build.


and this did all the magic for me :)

Tuesday, February 24, 2015

How to download all files recursively from HTTP folders:



Many times we are faced by the problem of downloading a folder listed by apache or IIS on the web, and we have to download the files one by one, or at best case go to each folder and download all links with a tool like downThemAll or FlashGot, which will download the files in a folder but not in sub folders.
a tip at this page :
https://bmwieczorek.wordpress.com/2008/10/01/wget-recursively-download-all-files-from-certain-directory-listed-by-apache/

shows how you can use a command line application named Wget to accomplish this.

Example: recursively download all the files that are in the ‘ddd’  folder for the url ‘http://hostname/aaa/bbb/ccc/ddd/;
Solution:
wget -r -np -nH –cut-dirs=3 -R index.html http://hostname/aaa/bbb/ccc/ddd/
Explanation:
It will download all files and subfolders in ddd directory:
recursively (-r),
not going to upper directories, like ccc/… (-np),
not saving files to hostname folder (-nH),
but to ddd by omitting first 3 folders aaa, bbb, ccc (–cut-dirs=3),
excluding index.html files (-R index.html)

In addition you may want to use a destination folder with the option
-P destDir
where destDir is your destination folder

you can download A GUI for this tool from here:
https://sites.google.com/site/visualwget/a-download-manager-gui-based-on-wget-for-windows

but actually the GUI tool didn't work for me and I ended using the wget.exe file used by this tool from the command line as explained above.

Saturday, August 31, 2013

Signing C++\CLI assemblies in VS 2010

I lost a lot of valuable time because of this problem, so I thought to share the solution that I got as a combination of other solutions posted by people who are more expert than me in this field.

the answer was adding the following to the project file:
<Project DefaultTargets="Build" ToolsVersion="4.0" 
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <!-- snip -->
    <ItemDefinitionGroup>
      <Link>
        <KeyFile>$(LinkKeyFile)</KeyFile>
      </Link>
    </ItemDefinitionGroup>
</Project>

Hope this saves some time for some of you.

Saturday, July 7, 2012

The meth of ebay buyer protection

It is just a meth, they get there money from the sellers, so they will always try to keep good contact with them and keep them happy. SELLERS on ebay LIE all the time (except for some of them). I had many cases on ebay that the item was totally not as described, and these cases were in both under ebay buyer protection and not. The best case scenario is that you will return the item to the seller (and you will pay for the shipping) mm. 

   and you will have either a full refund of the original amount + the original shipping, or only the original amount without shipping. So the BUYER always looses and the SELLER go away with it.  In other cases of course you will get nothing, and they will either tell you sorry the item is not covered by ebay buyer protection or the seller doesn't have a return policy. So any one can lie as he wants on ebay as long as he doesn't offer paypal as a payment method. Of course ebay is happy with these people because they make the buyers scared and make them try to buy in paypal where the profit increases for ebay (they get the commission doubled now) . In a case a seller was offering a laptop where he used multi time technical details about an item, i.e. one time he wrote the laptop has a hard disk of 80 GB and in fine line some where else he wrote no hard disk, also, in another place he wrote that the laptop has a processor of 2.4 GHz and in another place 2.2. Usually when you find in a description that the HD is 80 GB, you don't look about other details about the HD. This is pure scam, but ebay allowed it and even deleted the negative feedback i gave to the seller when the seller agreed to return the item, of course i lost the cost of the shipping both ways although ebay stated in the resolution center in the case that i opened that he will return the original amount + shipping. but at the end they get the money from the seller so he doesn't need to loose anything. even if it is clear that he is a scammer. In any case ebay has many honest sellers and i hope for everyone not to need to deal with ebay themselves as in ebay there is 2 customers the seller and the buyer, and the buyer always comes the  second.

Thursday, April 19, 2012

Displaying double quotes in Latex

i always thought that we can display all kinds of special characters by using the escape symbol before them like that \" , but the quotes has different requirements
you have to use ´´ for left quotes and two single quotes ' ' for right quotes.

Friday, March 23, 2012

Extract animated gif from MS Powerpoint for mac

You may all have noticed by now that the save as web page is not an option on Power point for mac 2011, so there is no easy way to extract animated Gifs from power point presentations, one way is to add .Zip after .pptx at the end of the file then open it as a zip file, you will find a lot of folders, you will find the images in a folder named media, do some search till you find the needed file, and thats it :)