|
|
-
|
|
Most languages – with the unfortunate exception of Java – allow functions to be passed around as variables. C has function pointers, .Net has delegates, and Javascript and most functional programming languages treat functions as first class objec...
|
|
-
|
|
One of the most useful additions to the .Net 4.0 base class library is the System.Collections.Concurrent namespace, which contains an all-new set of lock-free thread. However, these collections are noticeably different from their classical counterparts....
|
|
-
|
|
ASP.NET MVC3 doesn’t have a built-in RadioButtonList helper and there are times that I want to display an Enum property. I can always do that using a dropdown list but if there are 2 or 3 values then it’s more user-friendly if the user sees ...
|
|
-
|
|
As of today you can find RazorJS’s source code available on BitBucket. Feel free to download the code and change it to fit your needs. After that you can push any changes you think are useful to this project.
Why BitBucket?
BitBucket uses Mercuria...
|
|
-
|
|
If you want to display a Greek string that you receive from the Web but all you get are characters like %32, %B6 etc you can do the following
Add this class to your project:
using System;
using System.Linq;
using System.Net;
using System.Reflection;
us...
|
|
-
|
|
If you want to use android-binding along with GreenDroid’s ActionBarActivity (GDActivity, GDMapActivity etc.) you might stumble into some issues. I know I did. That’s why I created a Bind method that can be used instead of Binder.setAndBindContentView H...
|
|
-
|
|
Although this post differs from my blog routine I am writing because I haven’t found an efficient way of displaying a list of GeoPoints to a MapView. This is often useful when you want to display directions from Google service inside your Android ...
|
|
-
|
|
Version 0.3 of Linked OAuth Library is available via Nuget. This release has a dependency in Hammock Nuget package. I have also uploaded the source code at Bitbucket and it’s available to fork it! Cheers!...
|
|
-
|
|
Update: Full Source code is available at BitBucket
Many times I have a Javascript file that contains a link and in order to be more generic I would prefer writing something like ~/image.png rather than /image.png or /myapp/image.png.
Also when one of my...
|
|
-
|
|
Windows Phone 7 don’t have support for Greek. There is a way to add support for not only Greek but for many more languages using a standalone wp7 app that does some tweaking. ------------------------------------------------------------READ THIS FIRST:In...
|
|