Recommend a Programmer's Dictionary for MS Word [closed] - ms-word

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
MS Word is nothing short of irritating to use for any sort of software development work (notes, documentation, etc.), which is likely why many people use other tools (notepad++, etc.)
Asides from turning off spell-check & grammar check functionality for a word document, our only other option is to create a new style for the document, and disable proofing for that style, as documented here: Systems documentation and MS Word
Has anyone out there come accross any particularily good custom dictionaries which covers words common to engineering, software development, etc.?
This would certainly be helpful in aleviating the frustration level a bit. The dictionary could always be imported into other word processing tools as well.
Cheers and TIA - Ray

Change the language to something obscure like Farci or Klingon.

Related

What happened to OpenRT? [closed]

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 have been looking around for powerful raytracing interfaces and discovered references to OpenRT but can't seem to find it anywhere. Does it even still exist?
If it is gone, what is the most used library for raytracing that is powerful enough for realtime rendering.
My answer below is all I have managed to find.
Update
I have continued my search and only seem to find OpenRL as it supports most of what I need. However I may end up writing my own wrapper or engine that suits my needs as there seems to be no mature solution. Thanks for the suggestions.
PowerVR Wizard GPUs by Imagination Technologies have been announced recently.
"Wizard is essentially an extension of Imagination’s existing PowerVR
Series6XT Rogue designs, taking the base hardware and adding the
additional blocks necessary to do ray tracing"
Possible, and seems to be the only, solution I have found is OpenRL.

Is there a CoffeeScript equivalent to the ruby koans? [closed]

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 found several JavaScript testing frameworks with a quick Google search: Jasmine, jsUnity, JSpec, YUI Test, JsUnit, QUnit
I'm sure that this is by no means an exhaustive list.
Has anyone written CoffeeScript koans in one of these frameworks, similar to the EdgeCase ruby koans?
I really enjoyed going through them and going through the python-koans. Each exercise significantly improved my language comfort level, and I'm really hoping that similar exercises exist for CoffeeScript.
Did you try Googling "CoffeeScript Koans"? :)
https://github.com/sleepyfox/coffeescript-koans
(They're powered by Jasmine.)

Well written Perl Open Source to learn from? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other 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
is there any well written perl open source out there (not using any kinda of framework) that i could use as sample for learning and good pratice of the perl...
I've searched around and found many things for PHP, but nothing in perl that uses no framework.
Thanks in advance.
Have you tried browsing CPAN? You can find code there doing pretty much anything, and many distributions post links to their github repositories, so you can follow along in the development process.
CPAN Ratings has reviews and rankings of a large number of releases, which helps you differentiate between good releases and bad ones, but being able to make this determination for yourself would be best, which you get through learning and experience.

Resources for how to design graph/charts well [closed]

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
One of my projects needs to show users where they rank in certain calculations. I inherited the graph structure from the previous programmer and had to leave it alone while I worked on other parts of the site.
It's time to make the graphs more meaningful, so I'm looking for books/websites/etc about graphs. (Not graph theory!) Charts that convey comparisons at a glance.
Everyone suggests The Visual Display of Quantitative Information by Edward Tufte and that's spot on for what I'm looking for, so anything related to that would be great.
Naturally, personal experience about what to do or not would be helpful as well.
I found Stephen Few's book "Show Me the Numbers" very helpful.

Any good introductions and resources for gettext? [closed]

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'm looking into frameworks for translation, and have been considering gettext. Because it's supposedly quite good, and lots of projects use it. Now I read part of the official manual, but it sucked. I kind of have an idea how it works now, but I have no idea where to get started.
In particular my project spans C++, Lua and Javascript, so I'd love to be able to unify the i18n with a single tool, but I'm also not having luck finding gettext good support for Lua or Javascript, are they supported, has anybody used gettext with these?
Thanks.
How about this tutorial? Another example is at O'Reilly.