Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Does anyone know if there are web api's that allow you to retrieve MSDN info from a webservice call? Unfortunately googling MSDN web API's returns information on how to use web API's.
It's really not very easy to find, I agree...
http://services.msdn.microsoft.com/ContentServices/ContentService.asmx
From the intro:
This is the documentation for the MSDN/TechNet Publishing System
(MTPS) Content Service. The MTPS Content Service is an XML web service
that provides access to the content stored in MTPS. This includes, for
example, the content available at http://msdn2.microsoft.com/library.
Using the MTPS Content Service, developers can integrate
documentation, technical articles, whitepapers, images and the other
content available from the MTPS system into their own applications.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Are there any addons for web analytics for heroku? I already used analytics from google but as I want to track the analytics of an open source project (MEAN.js) which should be transferable to another user I would prefer to have all in one place (heroku). Do they provide free plans for open source projects?
I think you could try Keen IO, they have a free tier you could use to test.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
From the information I've gathered, Vaadin seems best suited for business related applications.
I'm just wondering if anyone with experience could tell me if it would be possible to create Facebook 2.0 with Vaadin? It seems like a really good front-end for such a thing and I see many possibilities for amazing user experiences.
(That's not what I'm aiming to do, just trying to make the question more concrete)
Note that I'm a beginner and currently developing using Thymeleaf as my template engine.
I would not recommend Vaadin as a technology for realizing a social network. Vaadin is a server-side UI framework that stores the UI state in the session. With thousands of concurrently active users you have a massive memory consumption on the server. I would rather use a fat-client approach with client-side technologies such as angularJS.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I'm interested in adding to an open source project or creating my own interface into windows remote management service from Python.However, it is difficult to create such a service when there is no web service description file (WSDL) to explain to me what functions and objects are available in the SOAP web service provided by Windows.
What is the WSDL file for WinRM? Or am I supposed to connect use WinRM without it?
Link to the question on the MSDN forum.
https://social.msdn.microsoft.com/Forums/vstudio/en-US/772aa67f-fe95-488a-ab9a-6bde3a42658e/how-to-get-winrm-wsdl-file?forum=windowsserversolutionssdk
It's available in the open specifications document MS-WSMV which describes WSMan in large detail. The full document can be downloaded from the MSDN site:
https://msdn.microsoft.com/en-us/library/cc251526.aspx
It is detailed in appendix A (Full WSDL):
https://msdn.microsoft.com/en-us/library/dd366131.aspx
All that can be provided is links as the full WSDL far exceeds the character limit allowed in a post.
This document contain some minor errors which can be spotted, for example, by PyCharm.
XSDs:
http://schemas.xmlsoap.org/ws/2004/09/transfer/transfer.xsd
http://schemas.xmlsoap.org/ws/2004/08/eventing/eventing.xsd
http://schemas.xmlsoap.org/ws/2004/09/enumeration/enumeration.xsd
Correct attribute names:
minOccurs
maxOccurs
processContents
wsmanfault namespace is not used.
Some attributes are set explicitly to their defaults.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am looking for library which can auto tag persons on a photo. The features is similar to Facebook, Picasa or iPhoto tagging function. Preferably it's able to run on Linux server, callable through PHP and Python. Any recommendation? Thanks.
With regard to what you're looking for, you probably aren't going to find anything that you can host on your own server. Rather, most companies will offer an API to which you can send requests, and you will be charged base don how much you use the API. In no particular order, here are several resources you might consider using.
https://lambdal.com/face-recognition-api - They have low priced entry options, and they are well-suited to detecting and recognizing new faces.
http://www.alchemyapi.com/products/alchemyvision/face-detection - This is more geared to recognizing famous or well-know people.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
Where can I find code-examples for socket.io?
Thanks
Have you checked the Projects using Socket.IO section here on the Socket.IO wiki? There are several resources there. There's also a great example tutorial here by Dave Walsh, and here's a chatroom example.
I would play around with balloons.io. It is a pretty full featured chat app, that uses socket.io, node.js and redis.
http://balloons.io/
The project is open-source on github
https://github.com/gravityonmars/Balloons.IO
I have created a brand new chat piece of functionality for our website using many of the characteristics of this project. I would strongly recommend downloading it and getting it running on your localhost.