joelmartinez

Stories kicked by joelmartinez

Conway's Game of Life in C#(codecube.net)

submitted by joelmartinezjoelmartinez(75) 8 months, 22 days ago

I wrote this for fun on the train a while ago, and just came across it again recently. So I figured I may as well post it. The code implements a simple game of life simulation, but the interesting bit is that it parallelizes the process using the TPL. read more...

add a comment |category: |Views: 13

tags: another

HTML5 Forms with ASP.NET MVC(userinexperience.com)

submitted by rcashrcash(4149) 8 months, 22 days ago

This post discusses the specifics around using new input types (email, tel, number, date, etc.), new attributes (autofocus, placeholder, etc.) and new form validation goodies (required, pattern, formnovalidate, etc.) with ASP.NET MVC. read more...

1 comment |category: |Views: 89

tags: another

Windows Phone Toolkit LockablePivot in depth(www.windowsphonegeek.com)

submitted by winphonegeekwinphonegeek(2187) 8 months, 25 days ago

Windows Phone 7.1 Toolkit LockablePivot in depth read more...

add a comment |category: |Views: 9

tags: another

WP7 for iPhone and Android Developers - MVC and MVVM(www.silverlightshow.net)

submitted by KMillerrKMillerr(2072) 8 months, 25 days ago

In the next article of the "WP7 for iPhone and Android Devs" series at SilverlightShow, Kevin Koffman takes a look at the Model – View – Controller pattern and a variant of it, the Model-View-ViewModel pattern. read more...

add a comment |category: |Views: 11

tags: another

ASP.NET MVC Charts(codecube.net)

submitted by joelmartinezjoelmartinez(75) 1 year, 11 months ago

There are a few references online about how to get the new ASP.NET Charting controls working with the MVC framework. However, some of them are outdated, and the corresponding information to make it work with MVC2 are spread out. So in an effort to organize the info all in one place, here’s a quick step by step guide on how to get this working read more...

add a comment |category: |Views: 528

tags: another

Custom Transactions - C#(codecube.net)

submitted by joelmartinezjoelmartinez(75) 2 years, 3 months ago

... We needed a way to have multiple transaction scopes, each with different conditions of success or failure. I started thinking about how to accomplish this, and decided to write my own implementation which mimics the TransactionScope, but lets me control things a bit closer. So I came up with a class which can be used like this ... read more...

add a comment |category: |Views: 45

tags: another

Scope problems with JavaScript setInterval & setTimeout? Use closures!(www.novogeek.com)

submitted by novogeeknovogeek(235) 2 years, 3 months ago

This article explains scope problems faced with JavaScript setTimeout & setInterval and provides solution by using closures. read more...

add a comment |category: |Views: 69

tags: another

Developing Applications for Windows 7(deanhume.com)

submitted by deanomachinodeanomachino(764) 2 years, 3 months ago

I've just got my hands on a shiny new computer, maxed out with new RAM and Windows 7. So far I am very impressed with Windows 7, although it looks pretty similar to Vista, its a lot slicker and I can't really seem to find any faults just yet. I also find developing a breeze as it seems a lot smoother when building larger solutions in Visual Studio. read more...

add a comment |category: |Views: 8

tags: another

ASP.NET MVC security checklist(codevanced.net)

submitted by andreisterandreister(140) 2 years, 3 months ago

ASP.NET security checklist from a "think-like-a-hacker" perspective: steps one might want to go through once development is done. read more...

add a comment |category: |Views: 602

tags: another

JSON Performance in .NET with Binary Data (testing...)(james.newtonking.com)

submitted by JamesNKJamesNK(3020) 2 years, 3 months ago

Binary data and text file formats (JSON, XML) don’t tend get along. To be included in JSON or XML binary data has to be encode into a text friendly format, generally base64, which creates overhead both in the time spent encoding/decoding binary, and the extra size of the text encoded data in the message. In our test we’ll compare serializing a message with binary data using common .NET serialization methods and compare the result. read more...

add a comment |category: |Views: 363

tags: another

Windows Azure Drive (aka X-Drive)(blog.maartenballiauw.be)

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

With today’s release of the Windows Azure Tools and SDK version 1.1, also the Windows Azure Drive feature has been released. Announced at last year’s PDC as X-Drive, which has nothing to do with a well-known German car manufacturer, this new feature enables a Windows Azure application to use existing NTFS APIs to access a durable drive. This allows the Windows Azure application to mount a page blob as a drive letter, such as X:, and enables easily migration of existing NTFS applications to the cloud. This blog post will describe the necessary steps to create and/or mount a virtual hard disk on a Windows Azure role instance. read more...

2 comments |category: |Views: 238

tags: another

CodePlex adds Mercurial support(blogs.msdn.com)

submitted by jwanageljwanagel(395) 2 years, 4 months ago

Microsoft's open source project hosting site announces the addition of Mercurial to its supported source control systems. read more...

2 comments |category: |Views: 195

tags: another