Is TypeScript taking hold?

by DotNetNerd 7. April 2015 13:08

Fantastic times! I just got back from a week off around easter, summer is almost here and I was awarded Microsoft MVP for ASP.NET/IIS for the first time. So all I that is missing is getting some blogging done.

At the moment I am really enjoying TypeScript, and I am feeling really good abouts future with the recent collaboration between the TypeScript and AnguarJS teams. I still argue that in most cases where you want your solution to live long, you should avoid the SPA frameworks. However I concede that they are popular, so it is a good step for TypeScript, which I think will help the adoption. I also think it will be good for Angular 2.0, to avoid introducing their own new language, and instead get the benefits of the good work done on TypeScript itself as well as tooling.

More...

Pattern matching on its way to C#

by DotNetNerd 3. February 2015 16:47

csharp As the design notes for C# 7 reveals, Microsoft are thinking about introducing pattern matching into C# in version 7. I was really happy when I first heard this, because pattern matching is one of the things I often miss from F#, where I wrote about the joy of pattern matching way back in the beginning of 2008. It doesn't get much more nice and succinct than this.

match value with
| "a" -> printfn "The value was an a"
| "b" -> printfn "The value was a b"
| _ -> printfn "Unknown value"

More...

2014 debriefing

by dotnetnerd 29. December 2014 15:33

What a crazy year this has been! A year ago my girlfriend and I had just started construction of our new house, so we were living temporarily in a ruin from 1892 and I was working at d60 in Vanløse. Now we are all settled in our house, Elisabeth is now my wife, she is starting her phd, and I have been working as an independent consultant for 11 months!

So it has been a very busy year for os, and I do hope 2015 will be a little less action packed, with time to enjoy our new lives and do some travelling. A trip to Barcelona is already in the cards, so it is looking promising.

Becomming independent

Starting as an independent consultant was something I had been considering for a while. When we moved I chose to go for the job at d60, because it was a good chance to build a new team. Long story short, that didn't go as I had hoped, so when opportunities presented themselves that would make starting on my own fairly smooth I had to seize the moment, and I am really glad I did. I have really enjoyed the freedom, the chance to work on very different projects and the improved possibilities to speak at conferences.

During these 11 months a have amongst other things built a workschedule module and a budgetting module, I redesigned a big webapplication, wrote an fairly large API, worked on components for QlikView, wrote a tool for calculating distance matrices for a logistics company and started work as a consultant on a large ecommerce project. So it has been really exciting and a lot of fun. When it comes to speaking I have been at the Warm Crocodile Conference, DDC, NDC, CNUG, Visma, Ida, Keyboard Warriors and Campusdays where I have been talking about Firebase, Angular, Azure and Single Page Application patterns. I tend to agree that the one thing that is more fun than programming is speaking about programming, so I have enjoyed all my talks and I hope to have time for pleanty of more talks next year.

More...

Indulging in my love for programming languages

by DotNetNerd 3. February 2013 20:12

books-300x272I have started this year spending some spare time with two of my favourite languages, besides C# that I primarily use to earn a living. The two languages in question are F# and Python. The represent two other paradigms from the statically typed and object oriented ones that are by far the most main stream, with languages like Java, VB and all the C-family languages. Playing with other paradigms is a great way to learn how some problems may be solved more elegantly either by going polyglot or simply by implementing some of the basic ideas of another paradigm in the language that you work with on a daily basis.

More...

2012 debriefing

by DotNetNerd 23. December 2012 16:12

484Last year I did my first debriefing. I felt it was a good chance to take a quick look back and it felt good to reflect a bit and do a brain dump. So now I am at it again after a year that has flown by, in spite of some hard moments.

Personally this year had a tough start for my family, because the family business went bankrupt. I grew up in a house next to my parent’s greenhouse, so it was a central part of life in my upbringing. Acknowledging that it was the end of the road, and my dad had to move out of the house was frustrating. That said I am thankful that my siblings who both worked there have found new jobs, and my dad has adapted well to life as a pensioner.

Later on things have only gone forward. In the summer my girlfriend finished her masters, and just a few days ago she had her first scientific article accepted for publishing. I am really happy for her, and it makes for interesting prospects in the new year, where she will look to get a job and possibly start a PhD.

For me as a developer it has been a very exciting year, that offered plenty of opportunities. More...

Regain your sanity – a tale of Console2 and Powershell goodness

by DotNetNerd 19. December 2012 16:29

For some time I have grown weary by the ever increasing number of consoles and one-feature-applications I end up using during a work day. The good thing about being a developer is that it is my own fault, because I can just choose to do something about it - and so I did.

First step was based on two blogposts from Scott Hanselman that I remembered reading; "Console2 - A Better Windows Command Prompt" and "Awesome Visual Studio Command Prompt and PowerShell icons with Overlays". Those two posts gave me a place to start so I could get rid of seperate icons on my desktop for cmd, Visual Studio cmd, Powershell, MongoDb, Ryby, Python, Node, Clojure etc. Basically I can now use Powershell with the capabilities of the Visual Studio Command prompt, and have the rest open in other tabs in Console2.

Of course I made a few tweaks of my own, but all credit goes to Scott for a great blogpost. Only thing I was disliking was choosing the kermit green foreground color, because it overrides coloring of eg. error messages.

Second step was reducing the number of one-feature-applications and long cryptic commands that I had to remember or keep in Evernote, .txt files, .bat files and so on. This turned out to be easy by using my profile in Powershell to store functions.

New-Item -ItemType File -Path $profile -Force
notepad $profile

In my profile I can make naming conventions that make sence and I can wrap more complex operations in easilly discoverable functions utilizing Powershells tab-completion. I can replace small tools and scripts for doing xslt transforms, builds, migrations, remote iis resets, deployment to my development machine and so on. What these tools do often turns out to be the equivalent of a few lines of powershell. Mostly something along the lines of this sample, which runs a nant script that does database migrations.

function Invoke-MyProjectMigrate([string]$version)
{
    Set-Location $path
    if ($version -eq "") {
        .\nant.bat /f:nant.DbMigrations.build db.resources.migrate
    }
    else {
        &{.\nant.bat /f:nant.DbMigrations.build db.resources.migrate /D:migration.version=$version }
    }   
}

After a while I wanted to put my functions into modules, so I could package them up, and have a set of functions for each project I work on. To do this I simply moved my functions into separate files, that I put in my d:\Scripts folder. Then my profile simply imports all modules from that folder.

Get-ChildItem D:\Scripts | Foreach-Object {
    Import-Module D:\Scripts/$_
}

With this in place a have a very simple, lightweight and extensible way of improving my tooling as I go. I can also use Posh-Git/Posh-Hg for version control, and if I need to get more structure at some point I will turn to PSake. In case you don't already know PSake is the Powershell version of make, rake, bake or cake. Simply put it provides a way to do build scripts with interdependent steps. So by now I am starting to feel pretty good about my tooling, and I have been able to remove a lot of clutter from my daily life.

For now my setup is very self-centered, because I use full paths to where I put stuff, but going forward it will probably be generalized and checked into version control for everyone to enjoy.

Thoughts on user experience, business and technology for search

by DotNetNerd 18. November 2012 14:07

Lately I have been working quite a bit with search, and have two customers going live with new sites in the comming months. Along with doing the actual implementations I wrote a (danish) whitepaper on search back in september, and I have read a couple of books to really get into the topic. Search patterns from O’Reilly is a really good book, if you need non-technical inspiration on how search can be done. Having spent some time on the subject, I have of course developed some opinions on both the uability and technical aspects, which is the reason I am writing this post.

More...

Anders Hejlsberg interview at GOTO

by DotNetNerd 10. October 2012 17:56

Wednesday at GOTO I did my second and last interview at the conference. I was lucky enough to get to talk to Anders Hejlsberg, which was made even more perfect with him announcing the preview of TypeScript during the conference. We had a very nice and comfortable talk, and afterwards I can only be impressed with how calm he is all while leaving no doubt about his passion and knowledge.

We choose to do the interview in Danish, so my apologies to the non-Danish speaking readers. It just made more sense for two Danes in Denmark to speak Danish. Not having seen any interviews with Anders in Danish myself, it was also an opportunity to do that.

More...

Scott Hanselman inteview at GOTO

by DotNetNerd 5. October 2012 17:55

Tuesday at GOTO I had the chance to interview Scott Hanselman, and of course I could not pass up that chance. We had a good talk about the conference, speaking, working at Microsoft and how ASP.NET is evolving. It was the perfect way to get my debut as an interviewer, with him providing some helpful tips along the way, so I hope you will enjoy the video as much as I did making it.

GOTO – the end

by dotnetnerd 3. October 2012 19:56

I am now on my way home from the last day at GOTO and it has been another day with lots and lots of input. I chose to spend the afternoon watching two talks from the HTML5 track, followed by one on the humans at work and then lastly seeing the closing keynote.

The two talks on the HTML5 track were by Scott Hanselman who talked about mobile development and Dan North who declared “The browser is dead… long live the browser”.

The red line through Scotts talk was that there are different paths to take in order to provide a better experience for the rapidly growing number of users who are using a mobile device. With some countries actually being pretty much exclusively mobile users it is very important to think about this. As it is said, not making a decision is also making a decision, but you are really hurting a large percentage of your users if you choose to ignore the mobile world.

Dan Norths talk revolved around 4 key points. Everything is asynchronous, the DOM is the template, the server serves data and someone has already solved it. Building on these points Dan demonstrated a simple architecture using NodeJS to serve data and everything else done in the browser using some of the popular frontend frameworks like jQuery, Knockout and Twitter Bootstrap. Once again Dan really caught the audience, got some good laughs on the way, while getting his points across.

Liz Keogh’s talk on the humans at work track was entitled “To be honest”. Her talk consisted of a range of stories from real live, about how different kinds of lying gets us into trouble when building software and coming up with solutions. Estimates, scrum, the agile manifesto, bug counting and talking about something as being done are all lies. So in order to progress we need to get better at communicating and being honest. She pointed out that “you should not let your process hide your ignorance”. Processes tend to force us to do things in fixed formats, which in turn make up subtle lies and cloud honest and clear communication.

Finally it came time for the keynote, where Anders Hejlsberg went over which problems they aim to solve with TypeScript, while covering some of the design choices it has been based on. Naturally part of the talk was overlapping with what I had seen the day before, but I am glad that I stayed the the talk because he did have some deeper samples and just overall gave a great talk.

Tags:

Events

Who am I?

My name is Christian Holm Diget, and I work as an independent consultant, in Denmark, where I write code, give advice on architecture and help with training. On the side I get to do a bit of speaking and help with miscellaneous community events.

Some of my primary focus areas are code quality, programming languages and using new technologies to provide value.

Microsoft Certified Professional Developer

Microsoft Most Valuable Professional

Month List

bedava tv izle