Jemm

Stories kicked by friends of Jemm

New Coding4Fun.Phone.Toolkit v1.1 officially released(windowsphonegeek.com)

submitted by winphonegeekwinphonegeek(2187) 1 year, 3 months ago

The New Coding4Fun.Phone.Toolkit v1.1 officially released read more...

add a comment |category: |Views: 27

tags: another

Fun With jQuery Deferred(intridea.com)

submitted by crpietschmanncrpietschmann(11.3k) 1 year, 3 months ago

If you've upgraded to the recently released jQuery 1.5 you may have heard about the fancy new AJAX facilities that allow you to define things like this: var jax = $.ajax({ url: '/some/url' }) jax.success(function() { alert("It worked!");") }); read more...

add a comment |category: |Views: 27

tags: another

IRC.NET 0.4.0 released -- IRC library for .NET 4.0 & Silverlight(launchpad.net)

submitted by NoldorinNoldorin(829) 1 year, 3 months ago

IRC.NET is a complete IRC (Internet Relay Chat) client library for the .NET Framework 4.0 and Silverlight 4. It aims to provide a complete and efficient implementation of the protocol as described in RFC 2812 (Internet Relay Chat: Client Protocol) as well as supporting de-facto modern features of the protocol, such as ISUPPORT commands and CTCP (Client To Client Protocol). The .NET Framework library is also intended to compile and run under Mono 2.6 and later. read more...

add a comment |category: |Views: 106

tags: another

Catel - a free open-source MVVM Framework for WPF and Silverlight(blog.catenalogic.com)

submitted by TischnoetentoetTischnoetentoet(424) 1 year, 3 months ago

Information and background information about Catel! read more...

add a comment |category: |Views: 31

tags: another

ASP.NET MVC Tip #48 – Disable Request Validation(stephenwalther.com)

submitted by crpietschmanncrpietschmann(11.3k) 1 year, 3 months ago

By default, the ASP.NET MVC framework prevents you from submitting form data that contains potentially malicious content. This feature is called request validation. This is a good feature. You don't want people sneaking scripts into your website that can steal passwords or other sensitive user information. Normally, you want to leave request validation enabled. Unlike a Web Forms application, you cannot disable request validation by using the <%@ Page ValidateRequest=”false” %> directive. You also cannot disable request validation in the web configuration (web.config) file. If you want to disable request validation then you must use the [ValidateInput] attribute. You apply the [ValidateInput] attribute to the controller action that accepts the form input. read more...

add a comment |category: |Views: 41

tags: another

An open letter to the .NET community(www.red-gate.com)

submitted by grantpalingrantpalin(376) 1 year, 3 months ago

RedGate will start charging for their previously free version of Reflector. read more...

1 comment |category: |Views: 50

tags: another

WP7: Writing and Reading from Isolated Storage(www.dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 1 year, 3 months ago

Taking a look at store data in Isolated Storage on the phone Storing data in Isolated Storage on the phone is critical because there is no SQL database which can run on the phone at this point. In this episode we will look at how we can store and retrieve data to storage on the phone. read more...

add a comment |category: |Views: 84

tags: another

Efficient buffering with BufferManager(blog.smithfamily.dk)

submitted by websmithwebsmith(70) 1 year, 3 months ago

Shows in a simple example how you can improve performance when using byte arrays in your application. read more...

add a comment |category: |Views: 56

tags: another

What is a Technology Evangelist?(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 1 year, 3 months ago

Technology evangelists are individuals who, professionally or in their spare time, spread the news about the latest new products. Sounds like a salesperson, right? No they are absolutely different. Salespeople also keep up to date with a large number of people, and like to convince others to buy their product – and some will go to any lengths to sell! An evangelist, on the other hand, is brutally honest about the product, even if sometimes it means not making a sale. An evangelist is out there to tell the TRUTH. A salesperson needs to make sales. read more...

add a comment |category: |Views: 161

tags: another

Using System.IO.Packaging to ZIP your files(galratner.com)

submitted by galratnergalratner(334) 1 year, 4 months ago

System.IO.Packaging provides storage support for multiple data objects in a single container. System.IO.Packaging uses the ZIP file format as its primary physical format for a Package. Other Package implementations might use an XML document, a database, or Web service. The following contains a utility class I wrote to help zip a file or a folder into a ZIP archive. This is an asynchronous as is suitable for invoking from a WPF or a Silverlight Application when we need to display a progress bar. Here is the code: read more...

add a comment |category: |Views: 82

tags: another

SSL is not about encryption(www.troyhunt.com)

submitted by troyhunttroyhunt(831) 1 year, 4 months ago

It’s about assurance. It’s about establishing a degree of trust in a site’s legitimacy that’s sufficient for you to confidently transmit and receive data with the knowledge that it’s reaching its intended destination without being intercepted or manipulated in the process. Last week I wrote a (slightly) tongue-in-cheek post about the Who’s who of bad password practices. I was critical of a number of sites not implementing SSL as no indication of it was present in the browser. “But wait!” some commenters shouted, “you can still post to HTTPS and the data will be encrypted” they yelled, “stop propagating fear and misunderstanding”, they warned. I thought carefully about these responses and made a little update at the end of the post but the story of posting data from HTTP to HTTPS is worth more than just a footnote. The real misunderstanding in this story is believing that just because the credentials are encrypted in transit, SSL has been properly implemented. Let’s took a good look at what’s wrong with that belief and why there’s more to SSL than just encryption. read more...

1 comment |category: |Views: 44

tags: another

Chrome based browser control can embed .Net objects in the DOM.(github.com)

submitted by chillitomchillitom(26) 1 year, 4 months ago

The CefWebBrowser class is a standard WinForms Control and can be easily embedded in most applications. Being based on Chrome/Chromium it's blisteringly fast. It has a number of advanced features not seen anywhere else including the ability to embed .Net objects into the page's document object. This could be used to good effect for automated website testing or page scraping. read more...

2 comments |category: |Views: 118

tags: another

Existential Types in C#(www.typesandotherdistractions.com)

submitted by paf31paf31(90) 1 year, 4 months ago

What are existential types and how can we put them to use in C#? Here is an encoding of existentials in C# using generics. read more...

add a comment |category: |Views: 98

tags: another

If you are Shrinking your Database - This one is for you!(www.dzone.com)

submitted by pinaldavepinaldave(9662) 1 year, 4 months ago

Shrinking database is one of the very very bad operation of SQL Server. Pinal Dave proves this with example. read more...

add a comment |category: |Views: 376

tags: another

Entity Framework: Intro to Database First Design(www.dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 1 year, 4 months ago

Taking a look at how to use the Entity Framework via its database first design concepts. When building out an application which is based off of the Entity framework you have multiple options, you can either build your model off of your existing database or build your database of your existing model. This episode will explore how you start with your existing database and build your entity model. read more...

add a comment |category: |Views: 783

tags: another

ASP.NET MVC 3 RTM Released!(www.microsoft.com)

submitted by crpietschmanncrpietschmann(11.3k) 1 year, 4 months ago

ASP.NET MVC 3 is a framework for developing highly testable and maintainable Web applications by leveraging the Model-View-Controller (MVC) pattern. The framework encourages developers to maintain a clear separation of concerns among the responsibilities of the application – the UI logic using the view, user-input handling using the controller, and the domain logic using the model. ASP.NET MVC applications are easily testable using techniques such as test-driven development (TDD). The installation package includes templates and tools for Visual Studio 2010 to increase productivity when writing ASP.NET MVC applications. For example, the Add View dialog box takes advantage of customizable code generation (T4) templates to generate a view based on a model object. The default project template allows the developer to automatically hook up a unit-test project that is associated with the ASP.NET MVC application. Because the ASP.NET MVC framework is built on ASP.NET 4, developers can take advantage of existing ASP.NET features like authentication and authorization, profile settings, localization, and so on. read more...

1 comment |category: |Views: 212

tags: another