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
this is the first time that I'm encountering this issue so I wanted to shed some light on this matter. I'm building a .NET MVC application which consumes a JSON web service, and the response messages from that server are written in chinese mandarin language. With each message comes a corresponding status code with it's English translation (not in the reply itself but documentation). So later on I noticed that not all errors are covered in the documentation and that I don't have their status code thus I don't know what they mean except I translate them through google translate. I figured if I used some kind of translation library that offers this kind of service where I can translate Chinese mandarin into English, it would be really nice.
What would you guys suggest I' should do here?
Every advice is helpful as I want to maintain the code as simple as I can without including any extra library that I don't really need.
Thanks a lot ! =)
P.S. so the respons message example is like following:
该运输方式不可用
Which would translate to:
The shipping method is not available
What if you used the google translate api? https://cloud.google.com/translate/docs/translating-text
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 7 years ago.
Improve this question
I've done a lot of searching and haven't really been able to stumble across anything extremely useful in really getting myself going with iOS development using Xamarin/C#.
For those who were once newbies like myself, is there a recommended tutorial or online classes that anyone can recommend to really get me going? Something that starts from a hello world type app up to a completed and somewhat useful app? I've found nothing but hello world tutorials so these haven't been too useful.
I am proficient in C#/Visual studio and Windows software development and have been doing it quite some time now and I am trying to make the leap into mobile development.
The guides on Xamarin.com are amazing it's a good place to start but if you want a more complete starting lesson i suggest you to take a look at this course on tutplus.
It's not free but if you sign-up, for one month you can check the course for free which is enough time for this course
search for Jesse Liberty on the web
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 4 years ago.
Improve this question
I've been searching for an answer for a while, but I couldn't find any relevant libraries\documentation for C# implentation of the Facebook Ads API. I've checked Facebook's developers portal ofcourse, but they only offer PHP and Python code samples.
Any information is appreciated, thank you!
For those still looking for an answer (see this question), I recently released an unofficial SDK for C#. The code is available on GitHub here.
It implements most of the GET requests that are available by acting as a wrapper for the Facebook SDK for C#. Hope it helps anyone at all.
Unfortunately, Facebook API doesn't support C# SDK now.
I think there are two ways to walk around this:
Use cURL, there are some Classes to support cURL request/response
Use a Python/PHP interface for Facebook access, and you could use cross-language framework like Thrift to make call from your original C# program.
Wish this useful.
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'm looking for some sample code to get me started on a C# based LRS. I've read the xAPI spec from ADL's website and I've looked through all the sample code in their github repo but there just isn't anything good to start from except an example written in python/postgresql which is WAY out there for me. I'm trying to stick with C#/SQL for my implementation. Does anyone know where I can find some sample code to get started? Perhaps you'd like to collaborate with me to develop it?
Thanks for any help you can offer!
I found a few starting points (node.js, and php) but nothing complete in C# to work from. Here's what I've found so far...
Experience API Specification
Rustici Software's Repo (lots of clients but no LRS's)
PHPCan, tinCaptivate and More
Node.js and MongoDb
If you find anything new, please tack on to this!
Here you can find the .Net implementation of the API :
http://tincan.codeplex.com/ and (preferably)
http://rusticisoftware.github.io/TinCan.NET/
There is a .NET library forudpated to 1.0.0 specification
http://rusticisoftware.github.io/TinCan.NET/
All the class models are there, it is easily translated to a database schema for saving on your own end
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'm tasked with implementing a survey addition to an existing website. We have been doing this survey with SurveyMonkey, which seems excellent, but the client doesn't like that it isn't on their site. SurveyMonkey doesn't have an API that I can plug into.
I've investigated Survey(tm) on http://survey.codeplex.com/. Terrible name:
What survey tool are you using?
Oh, Survey.
Yes, what survey tool are you using?
I said Survey.
Ugh, so did I but which one?!
Spent about an hour trying to get the sample site running on my machine and decided to move on.
What are my other options? Ideally I'd like to administer the Survey on a remote site (like SurveyMonkey) and pull questions/push answers from my site to their database. I'm also open to the idea of doing this entirely in house but don't want to build something from the ground up.
I would look at SurveyGizmo. You should be able to deal with their API and handle everything remotely.
You can try LimeSurvey (http://www.limesurvey.org/) which comes with extensive API: http://manual.limesurvey.org/wiki/RemoteControl_2_API.
Usually you would install it on your own server, but hosted versions are available as well:
http://www.limesurvey.com/hosting
http://www.limeservice.com/en/
I would use Examinare.
The API is so easy to implement. Just check this out: 5 lines of code :)
https://developer.examinare.com/apidocs/addrecipient/
And they have some tutorials in there under "How to start".
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 3 years ago.
Improve this question
I need to minify some C# code in a handful of Silverlight .cs and .xmal files. What are your tips for maintaining one code base and running a "tool" to generate minified code for a project?
Are there any tools (like Resharper) that will do this? If not fully, partially or assist in some way...
EDIT: I realize that there is no need for C# minification. This is an exercise that I'm doing that does not make sense on the face of it. (This is not homework.)
How about a source-code obfuscator? They generally abbreviate names, etc - and certainly remove white space.
For example, here, with demo here (although you'd probably want to disable the string encoding if possible). Note that this isn't a direct recommendation: this is just the first hit I got for C# code obfuscator.
Is that necessary? It was my understanding that the compiled .Net assembly would be sent across the wire, not the C# (or whatever language) source code.
Here are two "Lessons Learned" posts from other 10k entrants:
Thoughts on the MIX 10K challenge
MIX09 10K Smart Coding Challenge