Honestly, where has Raven.server.exe gone? - ravendb

The subject says it all - I updated my RavenDB in Nuget, and Raven.server.exe has done a runner... where is it??

Here it is:
http://nuget.org/packages/RavenDB.Server

Adam, try watching this YouTube video which explains what version to use and where.
VS projects should either be using the RavenDb.Client or RavenDb.Embedded .. and just download the RavenDb Server separately. (again, refer to that video for why/how/etc)

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

about BRO: how to intercept AMQP messages(RabbitMQ) in OpenStack

I've been doing some experiment with BRO in OpenStack, and first of all, i need to intercept all the RabbitMQ messages with BRO, but i'm not really familiar with this tool and I've followed the step of the following git blog
https://github.com/packetsled/bro_amqp_plugin
and there is an error
the error
Do anyone know what's wrong with my step? Thank you very much!
Sorry for the delayed response, but that version of the plugin is quite old, and not maintained. An updated version for Zeek (formally known as Bro) 3.x is available at https://github.com/mixmodeai/bro_amqp_plugin. I'm working on updating to 4.x, but it is a background task.
Please post the full text of the command you used for configuration and make, as well as the output.

Errors when installing fbctf

I'm trying to install Facebook Capture the flag. I get the errors show in screenshot.
The Server is the recommended Ubuntu 14.4. Server 64bit.
Does anyone know how to fix them? Thanks!
It seems like some kind of locale issue. Maybe you can check here:
"Do you have your locale settings configured correctly? The vendor folder won't get created properly if you don't. I recommend following the instructions on this thread: https://askubuntu.com/questions/162391/how-do-i-fix-my-locale-issue"
The install instructions have been updated and is working as expected now.

What happened to ManagedSpy?

ManagedSpy is supposed to be the .NET equivalent of Spy++, but somehow the download page is now not availeble any more.
Anyone who knows why?
Anyone that knows a replacement?
--jeroen
I've cloned the original ManagedSpy source code and maintaining the code in modern environments (for example, ported it to .NET4).
See project on GitHub.
You can still download it here, but the original website seems to be gone. There is however still an article in MSDN (from 2006) about ManagedSpy.
I've cloned the ForNeVeR's ManagedSpy source code and changed a bit to support 64-bit process. see https://github.com/slimzhao/ManagedSpy
Is there a newer equivlent tool? ManagedSpy fails completely on .NET 4.0 enabled machines because Native Images existing under \Windows\Assembly* and it tries loading those as .NET assemblies and fails.

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.