HN user

mpalme

1,163 karma
Posts43
Comments14
View on HN
tweedegolf.nl 1y ago

The Hunt for Error -22

mpalme
66pts25
www.dezeen.com 3y ago

MIT study finds carbon cost to self-driving cars

mpalme
1pts0
blogs.windows.com 3y ago

Available Today: Windows Dev Kit 2023 a.k.a. Project Volterra

mpalme
370pts542
ericsink.com 5y ago

Llama Preview: Swift on .NET

mpalme
2pts0
amycastor.com 5y ago

Signal adopts MobileCoin, a crypto project linked to its own creator

mpalme
2pts0
www.newyorker.com 6y ago

The MTA vs. a DIY Cartographer

mpalme
2pts0
devblogs.microsoft.com 6y ago

Announcing Visual Studio Online Public Preview

mpalme
2pts0
praeclarum.org 7y ago

Oops, I Wrote a C++ Compiler

mpalme
162pts39
ia.net 8y ago

Checkmarks for bots on Twitter

mpalme
2pts0
github.com 8y ago

A command-line client for SQL Server with auto-completion

mpalme
1pts0
akaptur.com 8y ago

Love Your Bugs

mpalme
123pts18
www.hanselman.com 8y ago

How to Build a Kubernetes Cluster with ARM Raspberry Pi Then Run .NET Core

mpalme
3pts0
jilliancyork.com 8y ago

“I don’t want to give out my phone number” – A gendered security issue

mpalme
5pts1
www.codeblueprint.co.uk 8y ago

The Linux X86 ORC Stack Unwinder

mpalme
4pts0
www.evanmiller.org 8y ago

Why I’m Learning Perl 6

mpalme
433pts369
azure.microsoft.com 9y ago

A Technical Overview of Azure Cosmos DB

mpalme
2pts0
ayende.com 9y ago

The struggle with Rust

mpalme
200pts295
hackernoon.com 9y ago

The Cost of Native Mobile App Development Is Too Damn High

mpalme
1pts0
code.visualstudio.com 9y ago

Visual Studio Code 1.7

mpalme
454pts169
medium.com 9y ago

Win3mu Part 1 –Why I’m writing a 16-bit Windows Emulator

mpalme
74pts23
www.rafayhackingarticles.net 9y ago

Google Chrome, Firefox Address Bar Spoofing Vulnerability

mpalme
2pts0
frederic-wang.fr 10y ago

MathML Improvements in WebKit

mpalme
1pts0
www.hanselman.com 10y ago

Playing with TensorFlow on Windows

mpalme
4pts0
richg42.blogspot.com 10y ago

Why I left Unity

mpalme
25pts25
acko.net 10y ago

MathBox2 does Algebra and Fourier Analysis

mpalme
11pts1
jerrygamblin.com 10y ago

Please scan my towel

mpalme
7pts2
haacked.com 10y ago

Pitfalls of Unlimited Vacations

mpalme
1pts0
azure.microsoft.com 10y ago

Azure welcomes Parse developers

mpalme
5pts0
blogs.msdn.com 10y ago

Java debugging and language support in Visual Studio for Android

mpalme
1pts0
www.businessinsider.com 10y ago

Xamarin acquires RoboVM

mpalme
5pts0

But in any case, it will be helpful for other newcomers to Rust because they are likely to run into the same challenges.

Why I left Unity 10 years ago

"Imagine the kinds of amazing new software that could be created in alternative cultural environments."

I was surprised that the PHP database access layer doesn't throw an error and aborts the transaction (like the other DAL I know would do).

So if Martin Fowler says that it is possible to use a service locator instead of DI in unit testing, then who are you to argue otherwise?

There are good arguments against a service locator - one of them is presented here: http://blog.ploeh.dk/2010/02/03/ServiceLocatorisanAnti-Patte...

Another argument again the service locator pattern is this: If you ask the locator for a service which has dependencies you have to resolve those dependencies yourself. So you need to know about the specific implemntation of this service interface which defeats the purpse. If you work around that, you end up with something that is pretty close to a DI container.

The skyline problem 12 years ago

The problem es essentially to map from an indiscrete space to a discrete one. The solution that comes into my mind is a simple sweep-line algorithm:

1. Take all the start x-coordinates of a buildings (=start events).

2. Take all the end x-coodinates of the buildings (=end events).

3. Sort all the events the by the value of the coordinate.

4. Now walk over all the events and keep count of how many there currently are (or in this case: how high the building is) by adding one for a start event and substracting one for a end event.

http://en.wikipedia.org/wiki/Sweep_line_algorithm

Hostnames 13 years ago

Another idea: sunken ships. Comes in handy if a server is down.

Left with Nothing 13 years ago

Meta note: this is what journalism can look like today. Made for the web first, not for the paper. Visualizations that are actually insightful - and most importantly a well researched story.

The title is slightly misleading - In fact the compilers have been available before as part of the .NET Framework (or Windows SDK) and are most likely sitting on your windows machine (try c:\Windows\Microsoft.NET\Framework\v2.0.50727\csc.exe).