Jabrown85

Stories kicked by friends of Jabrown85

Simple Silverlight Chat Client Using Sockets(rndnext.blogspot.com)

submitted by calebtcalebt(300) 2 years, 6 months ago

This code uses the excellent SocketsLight library to simplify socket connections in Silverlight. I’ve put together a simple example of a chat server and client where you can send a message back and forth immediately. We plan to extend this idea to integrate with some hardware devices where the console application or Windows service connects to the hardware through drivers then we use sockets to communicate between that application and Silverlight. read more...

add a comment |category: |Views: 300

tags: another

12 ASP.NET MVC Best Practices(codeclimber.net.nz)

submitted by keyvankeyvan(4086) 2 years, 6 months ago

In this post Simone Chiaretta outlines a list of 12 best practices to use with ASP.NET MVC. read more...

add a comment |category: |Views: 848

tags: another

Mutually Exclusive HTML Select Elements Using jQuery(rndnext.blogspot.com)

submitted by calebtcalebt(300) 2 years, 9 months ago

This jQuery code snippet shows how to make a number of related html select elements mutually exclusive. That is, all of the select elements have the same list of options, but you should only be allowed to choose a given option once. read more...

add a comment |category: |Views: 62

tags: another

Mutually Exclusive HTML Select Elements Using jQuery(rndnext.blogspot.com)

submitted by calebtcalebt(300) 2 years, 9 months ago

This jQuery code snippet shows how to make a number of related html select elements mutually exclusive. That is, all of the select elements have the same list of options, but you should only be allowed to choose a given option once. read more...

add a comment |category: |Views: 62

tags: another

Generic Query String Helper for ASP.NET(rndnext.blogspot.com)

submitted by calebtcalebt(300) 2 years, 9 months ago

Query strings are something we deal with constantly. I’ve come up with a helper that uses .NET Generics to handle a lot of common cases that we usually write unnecessary code for. read more...

add a comment |category: |Views: 203

tags: another

Generic Query String Helper for ASP.NET(rndnext.blogspot.com)

submitted by calebtcalebt(300) 2 years, 9 months ago

Query strings are something we deal with constantly. I’ve come up with a helper that uses .NET Generics to handle a lot of common cases that we usually write unnecessary code for. read more...

add a comment |category: |Views: 203

tags: another

Iterating a Complex DataList Hierarchy With Custom Iterators(rndnext.blogspot.com)

submitted by calebtcalebt(300) 2 years, 10 months ago

This is a follow-up post to Iterating a Complex DataList Hierarchy With Lambda Expressions, which showed one way to avoid code duplication when iterating a complex control hierarchy. This shows how to achieve roughly the same thing by taking advantage of the yield keyword. read more...

add a comment |category: |Views: 12

tags: another

Iterating a Complex DataList Hierarchy With Custom Iterators(rndnext.blogspot.com)

submitted by calebtcalebt(300) 2 years, 10 months ago

This is a follow-up post to Iterating a Complex DataList Hierarchy With Lambda Expressions, which showed one way to avoid code duplication when iterating a complex control hierarchy. This shows how to achieve roughly the same thing by taking advantage of the yield keyword. read more...

add a comment |category: |Views: 12

tags: another

Iterating a Complex DataList Hierarchy With Lambda Expressions(rndnext.blogspot.com)

submitted by calebtcalebt(300) 2 years, 10 months ago

This post demonstrates one way to use lambda expressions as part of a strategy to avoid code duplication when iterating over complex control hierarchies. read more...

add a comment |category: |Views: 11

tags: another

Iterating a Complex DataList Hierarchy With Lambda Expressions(rndnext.blogspot.com)

submitted by calebtcalebt(300) 2 years, 10 months ago

This post demonstrates one way to use lambda expressions as part of a strategy to avoid code duplication when iterating over complex control hierarchies. read more...

add a comment |category: |Views: 11

tags: another

Iterating a Complex DataList Hierarchy With Lambda Expressions(rndnext.blogspot.com)

submitted by calebtcalebt(300) 2 years, 10 months ago

This post demonstrates one way to use lambda expressions as part of a strategy to avoid code duplication when iterating over complex control hierarchies. read more...

add a comment |category: |Views: 11

tags: another

Upload Multiple Files in ASP.NET using jQuery(dotnetcurry.com)

submitted by samsertsamsert(2159) 2 years, 10 months ago

Continuing my ‘no less than an exciting’ journey of exploring ASP.NET with jQuery, today’s article will demonstrate how to Upload multiple files in ASP.NET using jQuery. read more...

add a comment |category: |Views: 1396

tags: another

Creating Custom Functions w/ NAnt(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 2 years, 10 months ago

Taking a look at how to create a custom function for your NAnt script. After you have the basics of NAnt down you may quickly find out that there are features you need, but they are not part of the core library. The good news for you is that in very little effort or coding you can create your own custom assembly which will expose your newly created NAnt functions read more...

add a comment |category: |Views: 129

tags: another

Switching ViewControllers on Orientation Change(rndnext.blogspot.com)

submitted by mikejarrellmikejarrell(35) 2 years, 11 months ago

Have you ever wondered how Apple achieves the smooth transition to Coverflow from the iPod app on the iPhone? Today I'll go over how you can accomplish the same feature with very little code. read more...

add a comment |category: |Views: 12

tags: another

Switching ViewControllers on Orientation Change(rndnext.blogspot.com)

submitted by mikejarrellmikejarrell(35) 2 years, 11 months ago

Have you ever wondered how Apple achieves the smooth transition to Coverflow from the iPod app on the iPhone? Today I'll go over how you can accomplish the same feature with very little code. read more...

add a comment |category: |Views: 12

tags: another

The Greatest Exception Handling WTF?!? of All Time(leedumond.com)

submitted by leedumondleedumond(2144) 2 years, 11 months ago

The Exception object has ONE purpose and ONE purpose only – to represent a runtime error, nothing more. Exceptions should never be used for purposes for which they were not intended -- or you could end up with this monstrosity... read more...

4 comments |category: |Views: 1395

tags: another