I recently had to replace a hard drive in my laptop. While this was a great opportunity to clean things up and have a fresh machine, it turn into a huge, huge time-sink :( We’ve started using git internally and for our “primary” git repository we’re using gitosis. Normally gitosis makes things “just work” so well that the fact that the server is debian and not even on the domain is completely transparent to the developers. As you may know, git uses ssh to handle communication. In order to do th...
[More]
Tags: gitosis, git, ssh
3b6d0c13-bf17-4888-82f4-e3834743d538|0|.0
Let me just skip to the fun bit that the title promised before going off on some rant-flavored-jelly-filled-technical-jargon-journey that you really didn't pay for. If you have a generic List of type A and you want a generic List of type B, AND you know A can be cast as B then you could do the following: List<B> TranslateList<A, B>(List<A> listofATypeThingies)
{
List<B> listofBTypeThingies;
foreach(A item in listofATypeTh...
[More]
Tags: .net, linq
7b5a4be9-479a-43cc-89d5-94cd48ee5f7e|0|.0