download link for latest Rhino mocks binaries (googling didn't help) - rhino-mocks

can someone share the link to download the latest version of Rhino mocks binaries (binaries only, I don't need source)? the link http://ayende.com/projects/rhino-mocks/downloads.aspx, doesn't seem to work anymore. it gets redirected to the blog. I have tried another link mentioned in the blog https://github.com/hibernating-rhinos/rhino-mocks, but I can't find a link in there to download just the binaries alone.

This seems to be the daily build repository fwiw.
http://builds.hibernatingrhinos.com/builds/Rhino-Mocks

Here's the new official link (as of today, according to ayende): http://hibernatingrhinos.com/open-source/rhino-mocks

You can also download latest Rhino Mocks binaries from NuGet.

Related

How can I get the outdated expo docs?

As our RN application based on react-native#0.61.5, so we use expo#^0.37.0 to set up local development environment. But it seems that expo doesn't supply outdated docs, could only find recent version docs https://docs.expo.dev/versions/latest/.
Old docs often get lost, but thankfully there are a few ways of finding the old pages.
The first option is using the Wayback Machine from archive.org. The expo.dev site seems to go back to late 2020. A problem might be that some pages aren't crawled and might be missing.
And because it seems that their docs are open source with some commits going back three years. So you could in theory pull an old commit and build / run the docs locally.
You can use webarchive and old URL for documentation https://docs.expo.io.
In your case it is http://web.archive.org/web/20210305044934/https://docs.expo.io/versions/v37.0.0/ but not all pages are supported:
Use github online editor to check the outdate markdown docs is an optional solution.
Such as link: https://github.dev/expo/expo/blob/sdk-37/docs/pages/versions/unversioned/sdk/calendar.md#L1

Elasticsearch Ingest-Attachment Plugin - Where to get zip distribution

I'm looking for a way to install the ingest-attachment plugin in offline mode.
So to do it i first need download the zip distribution of this plugin.
Official documentation (https://www.elastic.co/guide/en/elasticsearch/plugins/master/ingest-attachment.html) provides a non working link on their artifact repository
Would anyone have an idea where to download a stable/released zip version of this plugin ?
Many thanks.
Ok seems like the link they propose is broken cause the version does not exist anymore in their artifact repository.
I had to get a previous version (5.1.1) instead. It's just a shame they do not track any dead link in their documentation for massive indexation / analytics products company... or at least propose a clear URL to browse all available versions.

Are there any good tutorials for using ShareKit?

Does anyone know of a good tutorial that is easy to understand for ShareKit? I've looked but found nothing. I'm pretty new to Xcode.
The GitHub wiki for ShareKit v2.0 has a great page titled Installing ShareKit that should help you get up and running with the latest incarnation of this project.
The source tree also has an xcodeproj file which contains sample code showing how to integrate ShareKit into your own project.
You can checkout the documentation given in http://getsharekit.com ...after you downloaded and attached to your project open config file and read the comment lines given before each methods in it...it will direct you to correct way...There is no exact tutorial for it...If u got any specific issue then ask a question here..we are ready to answer...

How to browse Metacello repositories in Pharo Smalltalk?

I have downloaded Pharo 1.2.2 #12353 and wanted to install some packages in a easier way than going through Monticello Browser. I do not want to copy and paste scripts to install packages. After I opened the Menu, Tools, Configuration Browser a new window is shown with 3 ConfigurationOf...
ConfigurationOfFFI
ConfigurationOfMagma
ConfigurationOfVistaCursors
There is no help or description of what's the purpose of the Configuration Browser. What's one supposed to do with that?
there is no way to select a repository of configurations
there is no menu option to add a ConfigurationOf
there is no way to browse the Configurations from that window
Besides, is that the right tool to browse a "Metacello Repository" like http://www.squeaksource.com/MetacelloRepository.html ?
There is a custom browser to Metacello? Why isn't included in the release by default?
You can give MetacelloBrowser a try. It is aimed at providing a Metacello-centric interface for managing your project. The browser is still in development, but can be used for many tasks quite nicely.
If you decide to take it for a spin, please submit any issues here. Join the Metacello mailing list if you have any questions or comments.
Dale
Please report an issue about the Configuration Browser at http://code.google.com/p/pharo/issues/list and post your difficulties to the Pharo list. I played with the tool too and couldn't understand it either.
see
http://lists.gforge.inria.fr/pipermail/pharo-project/2011-December/057409.html
and for its origins:
http://code.google.com/p/pharo/issues/detail?id=2752
The ideas is that we have an own Squeaksource repo (universe) for a
specific Pharo version where we have a copy all the ConfigurationOfXXX
that are known to work in this specific Pharo version.
Since nobody (yet) mainted the one for Pharo 1.3 the browser is just empty.
I will try to find the time to fill the repo for Pharo 1.3

TagLib# Windows distribution? Or another good ID3 reader?

I wanted to write a quick program to get the file organization of my MP3 files back into sync with the info in my ID3 tags...
I had tried to get the Windows Media Format SDK, but when I go to install it says it can only run on WinXP. I found someone on here suggest TagLib#, which looked REALLY good, from the code examples. Problem is it seems the official site is gone, and the other links I've found to a hosting on Novell's servers is also down.
Anyone know where I can still get a distro of TagLib# for C#/VB.NET for Windows? Or another good ID3 tag reader?
I would recommend installing taglib-sharp with NuGet. NuGet is the best and easiest way to use opensource libraries in Visual Studio.
To install TagLib#, run the following command in the Package Manager Console in Visual Studio.
PM> Install-Package taglib
The NuGet distribution of taglib-sharp can be found at http://nuget.org/packages/taglib.
The official source code repository is at https://github.com/mono/taglib-sharp.
You can download the source and DLL here: http://download.banshee.fm/taglib-sharp/2.0.4.0/taglib-sharp-2.0.4.0-windows.zip
You can check http://download.banshee.fm/taglib-sharp/ to see the latest version.
You can do an svn checkout of the code from http://anonsvn.mono-project.com/source/trunk/taglib-sharp.