Rickasaurus

Stories kicked by Rickasaurus

The Road to Functional Programming in F#(richardminerich.com)

submitted by RickasaurusRickasaurus(1225) 1 year, 3 months ago

In F# there are a lot of options when it comes to choosing the style in which you will perform a computation. So, for our last meeting of the the NYC F# User Group I decided to try and build a general understanding of how the different styles are related to each other through trying them and discussing our results. Come along with us and explore five of different styles of programming in F#. read more...

add a comment |category: |Views: 5

tags: another

Versioning Issues With Optional Arguments(haacked.com)

submitted by RickasaurusRickasaurus(1225) 1 year, 9 months ago

If you have a method with optional parameters, you can never add an overload with additional optional parameters out of fear of causing a compile-time breaking change. And you can never remove an existing overload, as this has always been a runtime breaking change. read more...

add a comment |category: |Views: 6

tags: another

VerCache Madness with .NET ActiveX Controls(www.atalasoft.com)

submitted by RickasaurusRickasaurus(1225) 1 year, 10 months ago

About a year ago I was working on building our DotTwain ActiveX control and wrote two articles on some useful tips that I discovered. Since that time, I’ve seen a problem on a few customer computers where, after upgrading once, the control would never run. Instead, it would just try to reinstall after every page load. read more...

add a comment |category: |Views: 0

tags: another

The number one rule of profiling(www.simple-talk.com)

submitted by javeryjavery(5523) 1 year, 10 months ago

“The number one rule of profiling is that the bottleneck is never where you think it is” Jeremy Jarrell, an experienced software developer at Matrix solutions, explains how he was able to work out whether his performance bottleneck was code related, disk related, or database related, using Red Gate’s ANTS Performance profiler 6. read more...

add a comment |category: |Views: 196

tags: another

The Ted Neward F# Folding Challenge(richardminerich.com)

submitted by RickasaurusRickasaurus(1225) 2 years ago

My friend, and fellow Professional F# 2.0 author, Ted Neward recently challenged me to a bit of a Code Kata. Take a list of numbers and compress it in a particular simple way but without any mutable state. read more...

add a comment |category: |Views: 23

tags: another

posh-git Release v0.1(www.lostechies.com)

submitted by drmohundrodrmohundro(374) 2 years, 1 month ago

Do you use Powershell and Git? Then check out the 0.1 release of posh-git which gives you great powershell and git integration! read more...

add a comment |category: |Views: 7

tags: another

Bundler Now Supports Css And .less(www.codethinked.com)

submitted by drmohundrodrmohundro(374) 2 years, 2 months ago

New version of (recently renamed) Bundler combines your javascript or CSS to save on server requests. Also adds support for .less! read more...

add a comment |category: |Views: 224

tags: another

Get Started with F# via Higher order IEnumerable<T> extension methods(www.atalasoft.com)

submitted by RickasaurusRickasaurus(1225) 2 years, 3 months ago

The more I use F# the more I want to write my every day production C# code in a functional way. To this end, I’ve written a few higher order extension methods as the need arose. I wanted to take a moment and share them with you. read more...

add a comment |category: |Views: 15

tags: another

Context and Best Practices(www.lostechies.com)

submitted by usshermussherm(5285) 2 years, 4 months ago

The Right Way versus the Better Way; Default Architectures; Starting Small read more...

add a comment |category: |Views: 505

tags: another

Just released System.Web.Mvc.Extensibility Beta - Kazi Manzur Rashid(weblogs.asp.net)

submitted by jantujantu(1045) 2 years, 4 months ago

Just released System.Web.Mvc.Extensibility Beta I am announcing the beta of System.Web.Mvc.Extensibility. There has been quite a few changes in this release :Added support for PerWebRequest lifetime. Removed the “base” suffix from the abstract class. I am dropping the Autofac. After struggling quite a few days to add PerWebRequest support, I came to the conclusion that adding such support re... read more...

add a comment |category: |Views: 8

tags: another

Measuring the Performance of Asynchronous Controllers(blog.codeville.net)

submitted by desmonddesmond(2014) 2 years, 4 months ago

It's easy enough to start using Asynchronous Controllers with ASP.NET MVC 2.0. But how do you know whether it's giving you any benefits? You might be surprised to learn that, in many default scenarios, you won't get any benefit unless you also make some crucial configuration changes. In this blog post you'll see a simple way to load test your asynchronous controllers, and find a rundown of important configuration options that will dramatically affect their behavior. read more...

add a comment |category: |Views: 212

tags: another

Silverlight and ASP.NET MVC Don’t Serve the Same Master(odetocode.com)

submitted by drmohundrodrmohundro(374) 2 years, 4 months ago

Great contrast between ASP.NET MVC and Silverlight and how ASP.NET MVC is primarily code focused whereas Silverlight is primarily tool focused. read more...

add a comment |category: |Views: 278

tags: another

PDC09 Keynote: Open Source, Open Platforms and Open Data(atalasoft.com)

submitted by RickasaurusRickasaurus(1225) 2 years, 6 months ago

No one was surprised this year at PDC when it was revealed that the theme for the show was to be Azure and cloud computing. What did raise some eyebrows (including my own) was Microsoft’s new found attitude towards interoperability with other technologies. read more...

add a comment |category: |Views: 4

tags: another

Design Patterns – Which to use When? Take the Quiz!(dotnetcube.com)

submitted by dncdudedncdude(1350) 2 years, 7 months ago

I received several questions on how to pick a Design Pattern, which motivated me to write this post. As it was mentioned in the Design Patterns overview article, there is no rule of thumb in selecting a Design Pattern. Developers should not choose a design pattern and design a solution around it. Instead they need to analyze at a higher level, the problem they are attempting to solve and pick a Design Pattern that is most appropriate. read more...

add a comment |category: |Views: 704

tags: another

System.Drawing Round-Trip PixelFormat Stability(atalasoft.com)

submitted by RickasaurusRickasaurus(1225) 2 years, 7 months ago

If you follow me on twitter, you know that I am no fan of the System.Drawing namespace. It’s a rush job thinly wrapped layer on top of GDI+. A great deal is only partially implemented and there is quite a lot of undocumented behavior. Today I hope to help a bit with this problem by running some tests on System.Drawing.dll v2.0.50727 and documenting the results. read more...

add a comment |category: |Views: 5

tags: another

Thread Pool using Core-Affine Threads(cygon.nuclex.org)

submitted by CygonCygon(134) 2 years, 8 months ago

Article with source code for a ThreadPool replacement which uses the XBox 360's hardware threads (which are only used when threads are assigned to them explicitly). Common problems with manually assigned processor affinity on desktop PCs are highlighted and the author shows a solution that allows the operating system to reschedule threads while still yielding comparable behavior to the explicit affinity model used by the XBox 360. read more...

add a comment |category: |Views: 105

tags: another