up2jj

Stories kicked by up2jj

Event Log Monitor using C# and WebSocket(HTML 5) (ashishware.com)

submitted by ashpatashpat(285) 1 year, 8 months ago

This article is about creating a simple web based event log monitoring application that uses server push to update data. It shows how to use WebSocket to implement server push technology using C#. read more...

add a comment |category: |Views: 394

tags: another

Twitter authentication using OAuth(www.fairnet.com)

submitted by ebizdomebizdom(320) 1 year, 8 months ago

As of August 31,2010, Twitter has stopped using basic authentication. applications will all use OAuth, an authentication method that lets you use apps without them storing your password. To learn more about OAuth, please visit @ http://oauth.net. Register your new application with Twitter You'll need a name and url for your application in order to register it, and you'll need to define a callback url. The callback url is the full url of the page Twitter should send the user to after it's done authe... read more...

add a comment |category: |Views: 195

tags: another

A simple RSS feed example (geeksship.com)

submitted by lehoangdunglehoangdung(490) 1 year, 8 months ago

A simple RSS feed example using ASP.NET MVC and System.ServiceModel.Syndication.SyndicationFeed class read more...

add a comment |category: |Views: 225

tags: another

Four Methods Of Simple Caching In .NET(www.jondavis.net)

submitted by stimpy77stimpy77(1271) 1 year, 8 months ago

Four ways to manage objects that expire in their container. read more...

add a comment |category: |Views: 686

tags: another

How to use Ninject with ASP.NET MVC(codeclimber.net.nz)

submitted by justin_etheredgejustin_etheredge(8539) 3 years, 3 months ago

By default, the ASP.NET MVC framework instantiate controllers calling their default constructor. This makes using Dependency Injection impossible. But, as almost everything inside that framework, the logic with which a controller is instantiated can be replaced with you own logic. This can be done creating your own ControllerFactory, which is pretty simple. But if you are using one of the many popular DI/IoC libraries, that task is even simpler, since there are already custom controller factories for almost all the IoC libraries available. In this post we are are going to see how to use the ControllerFactory that delegates to Ninject the creation of your controllers. read more...

add a comment |category: |Views: 238

tags: another

Don't wait for C# 5, use Nemerle Now !!!(reverseblade.blogspot.com)

submitted by onorinonorin(155) 3 years, 3 months ago

Nemerle is a fantastic .net language with meta programming capabilities! read more...

add a comment |category: |Views: 982

tags: another

Form validation with ASP.NET MVC release candidate(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 3 years, 3 months ago

Last week, the ASP.NET MVC framework release candidate was released (check ScottGu’s post). Apart from some great new tooling support, form validation has never been easier. Here’s a quick introduction. read more...

4 comments |category: |Views: 514

tags: another

Action, Func, Predicate - what's going on?(blogs.vertigo.com)

submitted by brandewinderbrandewinder(530) 3 years, 3 months ago

This post covers Action<T>, Func<T>, Predicate<T> and shows them in action. These delegates are generalization (abstractions?) over some common method signatures and you might find them very handy. Besides making LINQ possible, they should help you stop writing your own custom delegates and replace them with these generic ones. read more...

1 comment |category: |Views: 1757

tags: another

A Guide to Learning ASP.NET MVC Release Candidate 1(stephenwalther.com)

submitted by leedumondleedumond(2144) 3 years, 3 months ago

Now that the ASP.NET MVC Release Candidate is available for download, how do you learn how to start using it to build applications? Here’s Stephen Walther's guide to resources for learning about ASP.NET MVC Release Candidate 1. read more...

add a comment |category: |Views: 372

tags: another

ASP.NET MVC 1.0 Release Candidate Now Available(weblogs.asp.net)

submitted by sharplifesharplife(4570) 3 years, 3 months ago

Finally Scott Guthrie announced ASP.NET MVC 1.0 RC. Check it out. read more...

2 comments |category: |Views: 239

tags: another

An Illustrated Guide to Git on Windows(nathanj.github.com)

submitted by gavinjoycegavinjoyce(25.7k) 3 years, 4 months ago

"This document is designed to show that using git on Windows is not a difficult process. In this guide, I will create a repository, make several commits, create a branch, merge a branch, search the commit history, push to a remote server, and pull from a remote server. The majority of this will be done using GUI tools." read more...

3 comments |category: |Views: 580

tags: another

Learn how to consume a WCF Service(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years, 4 months ago

Learn how to setup your .net application to consume as WCF service. Take a look at how you can Visual Studio to create your service proxy as well as how to use SvcUtil to create the proxy. read more...

add a comment |category: |Views: 391

tags: another

jQuery 1.3 Released(blog.jquery.com)

submitted by gavinjoycegavinjoyce(25.7k) 3 years, 4 months ago

"The jQuery team is pleased to release the latest major release of the jQuery JavaScript library! A lot of coding, testing, and documenting has gone in to this release and we're really quite proud of it. " read more...

add a comment |category: |Views: 480

tags: another

10 Reasons ASP.NET Webforms Suck(jdconley.com)

submitted by jconleyjconley(650) 3 years, 4 months ago

I think the title says it all. A great rant from an experienced ASP.NET developer. read more...

10 comments |category: |Views: 1050

tags: another

StructureMap 2.5.2 is Released(codebetter.com)

submitted by sharplifesharplife(4570) 3 years, 4 months ago

A fresh release of popular DI framework for .NET. read more...

add a comment |category: |Views: 213

tags: another

Automatic/Convention-based mapping entities with Fluent NHibernate(blog.jagregory.com)

submitted by chadmyerschadmyers(840) 3 years, 4 months ago

James Gregory has a 4-part post on the "auto-mapping" features of Fluent NHibernate. Basically, Fluent NHibernate can automatically map most of your entities based on the conventions you specify and can apply other conventions such as table names, foreign-key constraint naming, etc. This is the first post of the 4, the others are linked as Trackbacks at the bottom. After reading these 4, you should have a better idea of how to get started using the conventional mapping features of Fluent NHibernate. read more...

add a comment |category: |Views: 310

tags: another