Categories: Development, Evaluant, R&D, Perso, Visual Studio

jnode : jquery on nodejs

July 28th, 2012
  nodejs api using jquery simplicity. jnode uses the file jquery-core which is at https://github.com/jquery/jquery/blob/master/src/core.js. jnode aims to be used by an http server. You may also use it without but you might have useless feature… more »

The way we build UI is changing

October 18th, 2011
For some time now, I am working on a UI framework in .NET. This framework potentially can generate a UI for everything. For now, WPF and HTML rendering are implemented. What I have discovered when working on this framework, is that our UI needs have chan… more »

Asynchronous EUSS !

February 4th, 2011
Euss evolves ! From now on, asynchronous request are available. At least, the most basic engine can deal with them (the memory engine). It is almost the end of DataService more »

How to make an HTTP proxy

October 24th, 2009
As you have seen, I have recently updated my zeroconf codeplex project. This project not only contains an implementation of the DNS protocol and of the Bonjour protocol. It also contains an implmentation of the HTTP protocol to be able to send some HTTP… more »

Parameterized Modal Popup

Août 3rd, 2009
Hello everyone,Maybe some among of you ever had this issue : open a modal popup (here with AjaxControlToolkit), and being able to give it a parameter, the id of the control which opened the popup for example. It is entirely doable, it just need som… suite »

jQuery Control Toolkit

June 6th, 2009
Hello everyone,It's been a long time since I posted something on my blog. I was a little busy with my work. But this work enables now me to introduce you a new codeplex project : jQuery Control Toolkit. The aim of the project is to be able to use jQu… more »

Powershell for Visual Studio

March 23rd, 2009
Hello,Here is my new project : Powershell for Visual Studio. There is already syntax coloration, and basic intellisense (available cmdlets, with their help). Currently, it seems that the VS2008 SDK is needed to make it work. This will be solved in th… more »

Bonjour MEF

February 7th, 2009
Hello everyone,Do you know MEF (Managed Extensibility Framework) ? It is a new library in .NET that enables greater reuse of applications and components. Using MEF, .NET applications can make the shift from being statically compiled to dynamically co… more »

Concrete Singleton pattern implementation in .NET

January 14th, 2009
Hello everybody,A pattern we regularly find is the singleton pattern. What I suggest you is a .NET implementation. This one deals with a singleton context dependent (singleton by ASP.NET context, by WCF context, by thread, for the whole application)… more »

Last codeplex project address change

January 7th, 2009
Hello,I've changed my last codeplex project address. Why ? only because I'm adding this uPnP implementation, and is totally different from the bonjour protocol. Here is the new address :http://www.codeplex.com/zeroconfSee you more »

Bonjour and DNS .NET implementation

January 2nd, 2009
Hello,I've recently published on codeplex a partial object DNS protocol implementation and an implementation of Apple's Bonjour protocol. You may ask me why implement this DNS protocol whilst a .NET Dns class exists. First of all, because the Dns cla… more »

Assemblies EmbeddedResources with .NET 3.5 SP1

September 28th, 2008
Hello everyone,It's been a long time since posting. I've just installed the new SP1 for VS2008, and .NET 3.5 SP1. Then, I've been struggling with assemblies and embedded resources. Before installing it, if I had an assymbly with the default namespace… more »

Generic Visitor Implementation thanks to C# 3.0

June 27th, 2008
Hi,I've finally achieve my dream : Having a generic visitor ! How did I do that, really simple : I used extension methods. I let you see the class you may understand better if I don't explain ;)public static class VisitorHelper{ public… more »

Php for Visual Studio (Php4VS)

April 30th, 2008
Morning everyone,Some days ago, I've published a project on codeplex : php4vs. Currently, it provides basic functions, but I intend to implement intellisense. Though, we could have a great php IDE, but it would also have made me understand a bit more… more »

Lucene Persistence Engine Sample

April 24th, 2008
Due to my preceding post, I had to publish a sample on how to use this Lucene Persistence Engine. And since a picture is worth a thousand words, I let try it. The sample is a small application that looks for content in an articles library.You may fin… more »