4
votes
2answers
691 views
What’s the most portable way to make a Silverlight & Regular .NET REST client
Hi,
I'm trying to get a Server application to expose some status information using WCF.
In particular I'm after using WCF services with RESTful "API".
I'm hitting somewhat of a wall when it comes t …
1
vote
5answers
380 views
Timers, UI Frameworks and bad coupling - Any Ideas?
Hi,
I've just written a small XBox 360 Wireless Controller managed interface that basically
wraps around the low-lever …
0
votes
Adopting standard libraries
I recommend NDesk.Options. It makes use of Lambda functions / .NET 3.5 and it's very
nice:
http://www.ndesk.org/Options
What you ba …
8
votes
Is Mono ready for prime time?
I personally use Mono in a prime-time env.
I run mono servers dealing with giga-bytes of udp/tcp data processing related tasks and couldn't be happier.
There are peculiarities, and one of t …
0
votes
What is the correct build system to use with Mono and multiple projects with dependencies, excluding MonoDevelop?
xBuild used to be crap until 5 months ago.
I don't know if that changed, but judging from the fact the MonoDevelop still won't use it, I'd say it's still the same.
I highly doubt an …
1
vote
Is Mono robust enough for serious enterprise development?
I think it really depends on what you call raedy for enterprise as this is a very overloaded term.
See my post on a similar questions:
…
1
vote
Is .Net/Mono or Java the better choice for cross-platform development?
While mono has it's share of problems
I think it has a better cross-platform compatibility story e …
1
vote
DateTime.UtcNow.Ticks sometimes jumps a remarkable amount
Ehm...
How can you measure time this way when you can't tell for sure that you are not calling some blocking system call during this time (Like, potentially Console.WriteLine)?
In o …
2
votes
Call C# methods from C++ without using COM
There is a somewhat "undocumented" way of exporting C style API from a .NET class / method.
This ultimately leads to a situation where a .NET dll has exported APIs that can be called from C …
0
votes
Timers, UI Frameworks and bad coupling - Any Ideas?
The 360 controller can only report it's current state.
There is no other means to get the state without polling.
Using System.Threading.Timer or opening up a new Thread that does Thread.Sleep() is …
0
votes
Timers, UI Frameworks and bad coupling - Any Ideas?
So...
It appears the information / code @ http://geekswithblogs.ne …
0
votes
Timers, UI Frameworks and bad coupling - Any Ideas?
@MattValerio: I know about CCR, but this doesn't really fit the bill here since I plan to put the control on googlecode and the CCR isn't part of the framework or opensource.
…
0
votes
What are your favorite open source or free library for .NET Charts and Gauges?
ZedGraph definitely.
I use charts for large data-sets, 1,000,000 data points and upwards.
ZedGraph is succinct, performant and succeeds in rendering these beast-like-graphs
much faster than …
