For C#, in the online section, you should put a link to http://www.dotnetperls.com/. It also has sections for other languages.
Programming cheat sheets
41–49 of 49 posts
Re: Programming cheat sheets
#42nice web, but there is a bug, when u go to http://overapi.com/eclipse/ doesn't work, but it works when you go to http://overapi.com/eclipse
Re: Programming cheat sheets
#43I also like https://learnxinyminutes.com for when I need to understand some code in an unfamiliar language. That site also accepts contributions from anyone via pull request on GitHub.
Learn X in Y Minutes is also my go to site for dealing with code in an unfamiliar language. It's managed to get me through learning Ruby and Coffeescript on the job, as well as learning PHP for university. It's a pity that nobody has done one for SQL yet, I would've thought it would be in high demand.
You will often miss learning the philosophy of the language (the $language_name way of doing it), the different way of thinking about the problems that the language provides and similar details, which are often not necessary to read a snippet of code, but you want to understand it in order to properly learn the language and make the most of it.
SQL is a good example of it. It might be trivial to explain the syntax of most common SQL queries, but thinking in relations and tables is not natural to most people so there's not much you can do with basic syntax.
Re: Programming cheat sheets
#44https://github.com/duckduckgo/zeroclickinfo-goodies
I updated the git one the other day...
Re: Programming cheat sheets
#45When would someone actually use a cheat sheet instead of google?
Or for the ultimate in self-referencing cheat sheets, use:
https://duckduckgo.com/?q=ddg+cheat+sheet&ia=cheatsheet
This links to:
https://duck.co/ia/view/duckduckgo_cheat_sheet
I think this leveraging off DDG's goodies, part of their Instant Answers:
Re: Programming cheat sheets
#46http://packetlife.net/blog/2016/mar/9/dont-be-discouraged-pl...
All those PDFs that they have taken without permission and stored in their GitHub repository are the giveaway:
https://github.com/overthecs/overthecs.github.io/tree/master...
Re: Programming cheat sheets
#47Seems to contain javascript file from linezing which seems to be superslow and upon further examination contain malicious code(?) https://www.virustotal.com/en/domain/js.tongji.linezing.com/...
Re: Programming cheat sheets
#48I recall rosetta stones for various UNIX operating systems. There were many versions of this most of them outdated now. Quick example: http://bhami.com/rosetta.html
There's also Rosetta Code, very useful for finding implementations of various things in different languages. http://rosettacode.org/wiki/Rosetta_Code
Re: Programming cheat sheets
#49Pretty neat, but the first thing I looked for was how to open a file in Python and it wasn't there. I'm guessing it's because the "File" column only displays methods on the file object, and open is a built-in function. I can see how this might be useful when context-switching between different programming languages.