This is part of Categories for Programmers. Previously: Simple Algebraic Data Types. See the Table of Contents. At the risk of sounding like a broken record, I will say this about functors: A funct...

Love Begins
RMH
let's talk about Bridgerton tea, my ask is open

pixel skylines
No title available

Product Placement
Sweet Seals For You, Always
Game of Thrones Daily
"I'm Dorothy Gale from Kansas"
PUT YOUR BEARD IN MY MOUTH
Mike Driver
YOU ARE THE REASON

★
Keni
ojovivo
Not today Justin
2025 on Tumblr: Trends That Defined the Year

No title available
occasionally subtle

No title available

seen from Malaysia
seen from United States

seen from Malaysia

seen from Malaysia
seen from China

seen from United States
seen from Estonia
seen from United States
seen from Germany

seen from United States
seen from United States
seen from United States

seen from Germany

seen from South Korea
seen from China

seen from Germany

seen from Germany

seen from Germany
seen from United Kingdom

seen from Malaysia
@kuznero
This is part of Categories for Programmers. Previously: Simple Algebraic Data Types. See the Table of Contents. At the risk of sounding like a broken record, I will say this about functors: A funct...
Excellent blog post on having functional approach in programming as the next step in evolution from imperative approach based on SOLID principles.
How to Correctly Clone Activated Windows Images in Virtual Box
NOTE: use these instructions at your own risk. In case you are using Windows licenses for production, refer to Microsoft license agreements.
This manual is divided into two sections - the first one for creating a blank windows image and activating it, and the second - how to clone blank activated windows image such that it does not require any reactivation.
Setting up EclipseFP
Make sure there are no additional packages installed into a global scope! (not even a new version of cabal-install)
# cd ~/.cabal # mkdir sandbox # cd sandbox/ # cabal sandbox init # cabal install buildwrapper scion-browser hoogle hlint htf alex happy stylish-haskell uuagc --force-reinstalls # cp ./.cabal-sandbox/bin/* ~/bin # cd # hoogle data all
Then start an instance of EclipseFP and configure Haskell executables to point to ~/bin/*
Using GHCi in a sandbox
# mkdir _temp # cabal sandbox init # cabal install cmdargs # ghci -no-user-package-db -package-db .cabal-sandbox/i386-linux-ghc-7.6.1-packages.conf.d # Prelude> import System.Console.CmdArgs # Prelude System.Console.CmdArgs> ???
Want a full clean in fossil scm?
fossil clean --ignore "" --emptydirs --dotfiles .
The --ignore "" will force clean to disobey ignor-glob settings in fossil. --emptydirs and --dotfiles will cleanup the rest for you.
git clone git:// fails?
Just turn it into https instead:
git config --global url."https://".insteadOf git://
Credit goes to leoh who has answered this on StackOverflow.
The time has come to put Sublime and Atom in the ring. We've taken it for a serious spin - Here's what we found.
New major player out there... open-sourced :) but yet deadly slow :(
Async-await goodness with .Net Framework 4.0
Ever though how good it would have been to start using .Net Framework 4.5 in order to be able to code async-await? But you're stuch with 4.0 anyway :) Not a problem as it turns out - you can still enable this functionality by installing Microsoft.Bcl.Async package from NuGet official repository.
Overview of basic caveats and things to remember... Based on the TechEd talk given by Mads Torgersen, 2014
Just posted on my blog... based on Mads Torgersen's talk at TechEd this year. Nice talk! Hopefully useful blog post as well!
How to create a ClickOnce installer, then host it in Azure Blob storage
Good level of details.
Ever caught yourself thinking that switching your editor settings from one solution to another, from one project to another or even from one code file to another can drive you crazy? Problem solved! One of the most useful add-ins for Visual Studio will allow you to keep this problem under control. Tell folks in your team - they will definitely like it.
Interesting IT Courses
TechEd, North America, 2014 @ Microsoft
Pluralsight
dotnetConf
NDC Conference, Oslo
Just posted a brief summary post on Microsoft TechEd, North America 2014 session "Applying S.O.L.I.D. Principles in .NET/C#" by Chris Klug.
Now PowerShell has a new way of managing packages, OneGet as well as PowerShellGet!