Mailing List Archive - mailing-list

We have as number of discussion lists that are locked away within mailman. I want to develop an archive of the lists, including the possibility of extending the archive with new contributions, visualisations, etc. Has anyone any suggestions for possible software?

MarkMail/MarkLogic is good:
MarkMail Info:
http://www.marklogic.com/product/mmoverview.html
MarkLogic Info:
http://www.marklogic.com/product/marklogic-server.html
MarkLogic Download:
http://developer.marklogic.com/download/default.xqy

...and MarkMail itself is here: http://markmail.org/

Related

How to transfer Files from OPC UA Client to Server

I want to Download and Upload, for example a .txt file, with the UA-Expert Client to/from a Server which i have set up on a Device.
Could someone provide me a Step by Step solution or an example on how to implement this?
I first followed the tutorials from the open62541 website.
I tried to follow and understand the OPC-UA-Specifications, particularly Part 5 Annex C.
Thank you in Advance.
open62541 doesn't support this out of the box meaning that there is no pre-made plugin which implements the required Objects for the various platforms.
That said it isn't to much work to do it yourself (especially if you don't need something generic/cross platform).
I've done such a one-off a few months ago. It was like 2 days of work. It was limited to downloading specific files from the server.
If my memory serves me well all you need to do is to enable the generation of the types specified by part5/annex c (there is a .txt or .csv in the sourcetree containing all the types that should be generated), after that you need to instantiate such an object (File for example) and place it somewhere in your server address space. What is left to do is to implement the various methods (open, read, ...) And to hook up your objects with callbacks to these.
This feature was added recently, but is not yet included into the official release.
Have a look at: https://github.com/opcua-tsn-team-kalycito/open62541/tree/fileType_object_implementation
(Make sure to use the commit 76eb14f6886911f954c40492cbe346c69b055ba5; the latest commit is not working)
An example implementation is:
UA_StatusCode result = UA_Server_addFile(server, FileTypeNodeId,
UA_NODEID_NUMERIC(0, UA_NS0ID_OBJECTSFOLDER),
UA_NODEID_NUMERIC(0, UA_NS0ID_ORGANIZES),
UA_QUALIFIEDNAME(1, "Sample File"),
oAttr, filePath, NULL, NULL
);

Object ID conflict in extensions in AL (Business Central OnPremises)

I'm a beginner in Dynamics Nav/Dynamics365/Business Central developing extensions in AL and I'm having a problem that I don't know how to solve it 'easily'.
I am working with 2 projects in Visual Studio Code at the same time in one workspace (previously I tried it in multiple workspaces) and there are 2 'pageextension' objects with ID 50100.
I'm having the following error:
The application object of type 'PageExtension' with the ID '50100' is defined in multiple apps. The apps are: Reports by myName 2.1.0.0; Workspace2 by myName2 1.0.0.0.
I know this error could be fixed changing the object ID but I think it should exist another solution.
Does this mean that if someone publishes and install an extension and then try to publish and install mine, will BC OnPrem not allow them to work with the second?
thank you in advance
The range you describe should only be used for customisations.
When publishing for AppSource, you will get a specific number range for your app.
If you intend to use multiple apps for customisations, you should divide the range and make sure you do not use double id's.

Perl library for simple torrent downloading?

I am in need of a library for perl that will let me download files from torrents and magnet links in a simple way. Does anyone have any suggestions? Thanks!
Several such libraries include:
Net::BitTorrent or here , with documentation here
Protocol::BitTorrent
Several existing Perl BitTorent clients include:
Bitflu
AnyEvent::BitTorrent
Basic Net::BitTorrent Client
Also see this related question.

How to add one project to another(Xcode)

I wright english very bad,but I hope you'l try to help me)
There is a problem: have one project that contains another 2 projects(that contains classes I using in main project),when try to compile-there are many fails,because main project couldn't find classes from that projects. I tried to add them from build phases->link binary with files-but it doesn't help me(
Help me please with this problem!Thank you!
In Xcode 4, this is done through Workspaces. This is a fairly big topic, so I will just link you to Apple's high-level document and a blog post that walks through the process of setting one up.
Apple doc: http://developer.apple.com/library/ios/#featuredarticles/XcodeConcepts/Concept-Workspace.html
Walkthrough: http://cocoamanifest.net/articles/2011/06/library-management-with-xcode-workspaces.html
Good luck!
Try adding them as Target Dependencies instead.

KissXml on iPhone

I have dowload a KissXml project.
I must add all the files to my project (excluding DDXMLTesting).
Sorry for the stupid question but i must insert all class in the classes folder (http://ixhan.com/2010/03/tutorial-of-kissxml-iphone/) or i can do another operation.
Sorry but i'm a beginner programmer for iPhone.
Yes, you need to import all the classes in new group in your project when you are doing it with sdk.
yes, otherwise it will not compile/link/run
The "getting started"-section of the original source home page contains the best information to get it up and running. Just follow the steps exactly as they're described there and you should be ready to go in 5 minutes.
http://code.google.com/p/kissxml/wiki/GettingStarted