Topics - Wordzilla [ switch to compact view ]

Pages: prev1 2 3 [4] 5 6 7 8 9next

17
Web Developer toolbar for Firefox 1.0 - 2.0.0.* by Chris Pederick

IMO, an absolute must for everybody who's doing web development (and particularly css development). :Thmbsup:

Get it free from: https://addons.mozilla.org/firefox/60/


Screenshot - 26_02_2007 , 10_06_31 PM.png


18
Mobysaurus / Three Search Tabs - What Do They Do?
« on: February 11, 2007, 08:12 PM »
Mobysaurus Thesaurus was mentioned on FreewareGenius on Feb 10 and was given a 5 -star award. I'd really like to thank the founder of the site, Mr. Samer Kurdi, for reviewing this program.  :Thmbsup:

Mobysaurus comes with a competent tabbed interface. There are five main tabs within the main UI: Find Synonyms, Find Synonyms Headwords, Suggest Headwords, Find Online, and History and Favorites. I am somewhat unclear as to whether there are sufficient differences between the three main tabs; these seem to contain pretty much the same info with the middle one (Find Synonymous headwords) the most useful. A single, user configurable tab would have been better. As it is the three tabs seem spammy and redundant.
-[url=http://freewaregenius.com/2007/02/10/mobysaurus/]FreewareGenius.com Blog Entry[/url]

I think it's partly my fault for not having given a full explanation of the function/use of the three basic search tabs in the documentation. And perhaps I should clarify some confusions about those search tabs now as it was perplexing even an experienced user like Mr. Kurdi.

The three search tabs serve different needs and their functions do not overlap.



Find Synonyms

Screenshot - 10_02_2007 , 4_44_05 PM.png

Most commonly used, fastest, supports wild cards and it displays similar entries.




Find Synonymous Headwords

Screenshot - 11_02_2007 , 8_37_53 PM.png

"In addition to the powerful search features, the truly unique thing about this tool is how it helps you to explore the relationships between words... Go on a journey through the thesaurus... Delving deeper and deeper into word chains..." - Mouser

Find Synonymous Headwords is a feature not yet seen in other thesaurus tools. Basically this unique function picks out and displays on the side all headwords from all synonyms under an entry. For any headword listed on the right side, you can double-click to see what headwords are synonymous with it, and have all synonyms under the headword shown simultaneously on the left.

No thesaurus is perfect and it's hard to say a user is able to start with the right headword right the first time, every time. When someone looks up a headword (main entry) in a conventional thesaurus (paper or electronic), normally he has no exact idea as to whether he starts with the most suitable headword which contains the synonym that he's looking for - maybe there's a better synonym under another headword that he has not yet looked up? If so, what is that headword? Even with thesaurus programs with cross-referencing, we are still facing a myriad of possibilities and endless mouse clicks. Just imagine how unproductive it is. This unique feature in Mobysaurus is there so the user won't need to try out synonyms one by one to see if they are also headwords and there are better synonyms under these entries - the function saves all these troubles by reducing the work to a simple double click.

The navigation keys include Up, Down, Right, Left, Enter (expand), Backspace (fold). The right-click shortcut menu offers some additional functions:

Screenshot - 12_02_2007 , 11_09_05 AM.png



Suggest Headwords

Screenshot - 10_02_2007 , 5_01_56 PM.png

It is also a feature currently unique to this thesaurus tool.

As said, one does not always know well whether a headword that he has in mind is the fittest out there in his thesaurus. It's often a bit annoying when you start out with some uncommon word (like in this case, "bigwig") and the thesaurus does not take it as headword, then you have to think hard in order to come up with some synonyms of that word as possible headwords to look up again, and maybe repeatedly. The process would often take away a lot of your time and energy.

The Suggest Headwords feature takes any word you have in mind, regardless of it being a headword or not, then fast searches the whole database, and comes up with related headwords in just seconds. All you need is to pick any one or more headwords from the results to look up for synonyms.

19
WEBSITE: https://www.donationcoder.com/Software/Other/mobysaurus


moby_site.jpg


I love this new site so much and I think it looks much better than the program's namesake site. :D :D

In addition to the beautiful DC theme, now any user can look for useful information related to this program on our newly launched Help Desk:

helpdesk.jpg



And if you like, it's easy to join our DonationCoder.com IRC chat and let us help you, just click on the 'Live Chat' link on the left of the page:

moby_irc.jpg




Special Thanks to

nudone, for designing this wonderful DC theme  :Thmbsup:

jgpaiva and mouser, for offering me advice on site design and scripting



feedback.png

20
Mobysaurus / Speed Up Mobysaurus Thesaurus Startup
« on: January 22, 2007, 01:51 AM »
It's not uncommon for a .NET application (like Mobysaurus Thesaurus) to take quite some time starting up when you *first* launch it (cold startup) after turning on your PC, or re-launch it after you have it closed for a long while.

Same to all .NET assemblies, the Mobysaurus Thesaurus executables cannot be started "straight away", they store "temporary code", in other words. Your operating system actually first loads .NET Framework components (the translator) into the memory and they will further compile the original assemblies to native code that will specifically run on your PC. So it would take longer for a .NET app to start up; and if Mobysaurus Thesaurus is usually the first .NET program to run on your PC, there are gonna be quite some hard disk activities during the launch because the system has to load all these .NET framework components into memory for the first time before any actual "temporary code" translation can begin.

There's a way to pre-compile the .NET assemblies, cache native images and thus improve startup time - with NGEN, a tool that ships with .NET Framework installation package. So if you have .NET Framework 2.0 installed, you can take advantage of this NGEN tool.

I've made a batch file, just download and run it from your local machine. Takes about 20 seconds to complete the whole speed-up process and the effects will remain until you update your Mobysaurus Thesaurus next time.

Click the link below to download:
http://www.mobysaurus.com/download/thesaurus/moby_ngen.bat


Source code
REM change "c:\program files\Mobysaurus Thesaurus\" to your actual installation path of .NET Framework 2.0, if needed
REM change "c:\program files\Mobysaurus Thesaurus\" to your actual installation path of Mobysaurus Thesaurus, if needed

c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ngen queue pause
c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ngen install "c:\program files\Mobysaurus Thesaurus\MSThesaurus.exe" /queue:1
c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ngen install "c:\program files\Mobysaurus Thesaurus\MCLHotkey.dll" /queue:2
c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ngen update /queue
c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ngen executequeueditems 1
c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ngen queue continue


Pages: prev1 2 3 [4] 5 6 7 8 9next
Go to full version