Bringing Scala to .Net and Mono
From ReadWriteWeb:Microsoft is funding a project to make Scala available within the .Net and Mono. The Scala website is running an interview with Miguel Garcia, the developer behind ...Click here to...
View ArticleFive reasons why you should rejoice about Kotlin
From Javalobby:As you probably saw by now, JetBrains just announced that they are working on a brand new statically typed JVM language called Kotlin. Click here to read moreTagged: #java #jvm #ides...
View ArticleHierarchically Implementing the Bolch's Builder Pattern in C#
From CodeProject:Download sample - 0.6 KB. The Bolch's Builder Pattern involves creating a builder class for convenient creation of a target class. A builder consists of methods that set specific...
View ArticleHow Scala changed the way I think about my Java Code
From Javalobby:Some people advocate their preferred language as the only way to enlightenment and productivity boosts way in the two digit percentage range compared to another language in the same...
View ArticleDesigning Haskell
From literateprogrammer.blogspot.com:The other day I was struggling through quirk of Java's generics (which are implemented with type erasure). I pondered that it would have been wonderful if generics...
View ArticleWadler's Blog: An experiment about static and dynamic type systems
From wadler.blogspot.com:If programming language design is to become a science, we need more experiments like this one. The author measured time for 49 subjects to build a simple parser in Purity, a...
View ArticleAutomating Undo/Redo with .NET Generics - The Code Project - C# Libraries
From CodeProject:Download source - 53.2 KB. This article introduces a reusable library that can equip any action in your application with the undo/redo feature. You may use complex data structures and...
View ArticleHow to find objects in Generics with List.Find() method
From msmvps.com:I've been looking for help on how to find objects in Generics with List.Find() method .... and ... take a look what I have found.In the follow example, I created a simple class:.Click...
View ArticleLesson: Generics (The Java™ Tutorials > Learning the Java Language)
From Oracle Corporation:Generics are a built-in language feature that will make your software more reliable. This lesson discusses the following topics:. This section explains some common shortcomings...
View ArticleGoogle Dart Language and Tools Announced - Dynamic Language, Optionally...
From InfoQ:Google has announced a new language: Google Dart and tools. The language and tools are currently considered a technology preview, and an open source release is available now. The language is...
View ArticleMVVM PRISM: Modal Windows by using Interaction Request with Generics
From CodeProject:How generics can help us in achieving modal windows in WPF PRISM; Author: Gerard Castelló Viader; Section: Windows Presentation Foundation; Chapter: Platforms, Frameworks &...
View ArticleJava, How to throw undeclared checked exception
From aragozin.blogspot.com:Usually when you have caught checked exception (e. or ) you have to wrap it in to rethrow it without declaring exception in method signature. But with help of generic you can...
View ArticleBuild Your Own JVM Language!
From blog.efftinge.de:Xtext has already simplified development of domain-specific languages a lot. From a simple grammar definition you not only get a full language infrastructure but also powerful...
View Article10 points about generics in java - Tutorial Example
From javarevisited.blogspot.com:Please vote +1 if you like this post Generics Java Example Tutorial I have read many articles and tutorials on generics in java some of them are quite good and detailed...
View ArticleGroovy static type checker: status update
From jroller.com:As some of you may already know, I joined SpringSource/VMware a month ago and I am working on the Groovy language.One of my tasks, which will make me busy a little while, consists of...
View ArticleOverload API methods with care – the sequel
From Javalobby:I promised a sequel as I have encountered more trouble than that, so here it is. Varargs are another great feature introduced in Java While being merely syntactic sugar, you can save...
View ArticleRe: Highbrow Java; Or: Java Generics and Why I Still Hate Them
From a-dimit.blogspot.com:This, well, rant, originated as a more elaborate answer to a comment on an article I left unanswered for over half a year. I wanted to apologise by coming up with a rather...
View ArticleSimplifying the Data Access Layer with Spring and Java Generics
From baeldung.com:This is the second of a series of articles about Persistence with Spring. The previous article discussed setting up the persistence layer with Spring 3.1 and Hibernate, without using...
View ArticleHoliday Hiatus
From Geeks With Blogs:Hi all! With Chanukah, Christmas, and my twins’ birthday parties I won’t have a post this week, and possibly not the following week (though I may try to get one out if I can)....
View Article5 More Notable Java 7 Changes
From Developer.com:Continuing the exploration of Java language features in JDK7 which I began in my previous installment on Project Coin, I will discuss the following Java 7 enhancementsClick here to...
View ArticleStatic in generics
From CodeProject:Author: zenwalker1985; Updated: 23 Dec 2011; Section: Static & Panel Controls; Chapter: Desktop Development; Updated: 23 Dec 2011Click here to read moreTagged: #dotnet #windows...
View ArticleA generic Set type for .NET
From CodeProject:Download demo project - 15.8 Kb. The new System.Collections.Generic namespace contains generic versions of the most often used data structures such as lists and dictionaries. But...
View ArticleUsing generics for calculations
From CodeProject:Download demo project - 32.8 Kb. The current implementation of .NET generics is used mainly to make type-safe collections faster and more easy to use. Doing calculations on generic...
View ArticleJumping from MySql to Cassandra, a success story
From itsecrets.wordpress.com:Cents of web pages, books, papers treat about What Cassandra is, What Hazelcast is, What Hadoop, MemcacheDB, MongoDB, etc….But none of them treat about HOW TO migrate my...
View ArticleHow To: Use leaderboards on Windows Phone with XPG
From CodeProject:Use leaderboards on Windows Phone with XPG; Author: XPG Live; Updated: 22 Jan 2012; Section: Windows Phone 7; Chapter: Mobile Development; Updated: 22 Jan 2012Click here to read...
View ArticleHow To: Use Leaderboards on Android with XPG
From CodeProject:This is a continuation of the How To series.; Author: XPG Live; Updated: 1 Feb 2012; Section: Android; Chapter: Mobile Development; Updated: 1 Feb 2012Click here to read moreTagged:...
View ArticleMEF Generics
From CodeProject:How we can harness the power of MEF and extend it by way of generics.; Author: Dean Oliver; Updated: 2 Feb 2012; Section: C#; Chapter: Languages; Updated: 2 Feb 2012Click here to read...
View ArticleMVVM PRISM: Modal Windows by using Interaction Request with Generics
From CodeProject:Download source - 154.39 KB. This article pretends to be the continuation of my other article MVVM PRISM: ProgressBar Interaction Request with Asynchronous Command. Here I will try to...
View ArticleStrongly Typed Sub-Lists Which Modify Their Parent List (No Events)
From CodeProject:Generic list wrapper that returns a smaller strongly typed sub-list which modifies the parent-list when changed, without using eventsClick here to read moreTagged: #xml #events #generics
View ArticleDynamically Map SQL Resultset to Business Object
From CodeProject:Dynamically map type-safe business objects to a DataTable using reflection and generics.; Author: samlom; Updated: 7 Feb 2012; Section: C#; Chapter: Languages; Updated: 7 Feb 2012Click...
View ArticleXML serialization using Generics
From CodeProject:Serialize/deserialize your objects using generics. Customize settings like indentation, encoding, namespaces and others. ; Author: Rui Jarimba; Updated: 1 Mar 2012; Section: XML;...
View ArticleA Quick Tour of Dart
From InfoQ:Summary Gilad Bracha discusses Dart, its type system, interfaces, generics, ADTs without types, built-in factory support. Bio Gilad Bracha is the creator of the Newspeak programming language...
View ArticleC# Language Features, From C# 2.0 to 4.0
From CodeProject:A description of the new language features starting from C# 2.0, going through to version 4.0; Author: Marc Clifton; Updated: 15 Mar 2012; Section: C#; Chapter: Languages; Updated: 15...
View ArticleAutomating Undo/Redo with .NET Generics
From CodeProject:Download source - 53.2 KB. This article introduces a reusable library that can equip any action in your application with the undo/redo feature. You may use complex data structures and...
View ArticleParaffin 3.2 Released
From ada-dk.org:The 3.2 release of Paraffin comes with a hefty amount of changes since the not so old 3.1 release: The same technique that was applied to iterative work stealing that significanly...
View ArticleGeneric Programming Galore Using D
From InfoQ:This article presents the results, reactions, and observations from the 2012 InfoQ User Survey. 2,850 people completed the survey providing detailed feedback on their areas of interest.Click...
View ArticleBuffers Galore! Now in Version 1.2
From ada-dk.org:Dequesterity is a set of Ada 2005 generics that provide various forms of general purpose buffer containers. There are currently 75 (yes, seventy-five) buffer types in Dequesterity, so...
View ArticleASP.NET automatic Object to UI Binding
From CodeProject:Easily bind a class to .NET data controls like GridView, FormView, etc., and get an updated object or list back in the code-behind effortlessly.Click here to read moreTagged: #asp.net...
View ArticlePassing .NET delegates into PHP
From CodeProject:Phalanger is the only solution allowing to seamlessly interoperate between PHP and .NET world. It allows to use e..NET generics, namespaces, properties, method overloads, global...
View ArticleThe Covariant Return Type Abyssal
From Javalobby:A few month ago I was working in a customer project where we were building a large smartclient sales-system for a german insurance company. We were using Riena as the application...
View ArticleHow To: Manage cross-thread WinForms controls access
From CodeProject:Download demo solution - 116.6 KB. When developing rich business applications, developers often have to deal with manipulating data and UI on separate threads and so have to manage...
View ArticleInline MSIL in C# and Generic Pointers
From CodeProject:The following article discusses how to achieve inline CIL (MSIL/IL) into the language. Using said implementation, we can achieve things that the compiler usually prevents us from doing...
View ArticleInline MSIL in C#/VB.NET and Generic Pointers
From CodeProject:Discusses inline-IL in C#, benefits and uses and how to achieve it.; Author: roylawliet; Updated: 12 Aug 2012; Section: C#; Chapter: Languages; Updated: 12 Aug 2012Click here to read...
View ArticleRuntime Representation of Generics
From DZone Architect Zone:This is an excerpt from Chapter 5 (Collections and Generics) of Pro .NET Performance, scheduled to appear in less than a month. I might be publishing a few...Click here to...
View ArticleProgramming in Go - An Interview
From InfoQ:Share. Go was announced publicly by Google in November 2009, and is intended to meet the challenges faced by modern software development. Specifically Go is designed to be fast (including at...
View ArticleDAO Layer - Generics to the Rescue
From Javalobby:Generics can be a powerful tool to create reusable code with the power of compile time verification (type safety..). Unfortunately I feel the main stream developers still afraid of it....
View ArticlenBaclava
From CodeProject:Download nBaclava VisualStudio class templates.zip (39.4 KB) While Baklava is delicious for everybody, its technical pendant nBaclava might be delicious for you as a developer....
View ArticleAdvanced QBE Pattern (Common Using Generics)
From Javalobby:In a previous post I introduced the QBE pattern. The pattern saves us a lot of tedious binding code. However, one still needs to implement the same method for each Entity. To save us the...
View ArticleStrongly Typed Sub-Lists Which Modify Their Parent List (No Events)
From CodeProject:Generic list wrapper that returns a smaller strongly typed sub-list which modifies the parent-list when changed, without using eventsClick here to read moreTagged: #xml #events #generics
View ArticleThe Racket Blog: Generics
From blog.racket-lang.org:Recently at RacketCon, I gave a talk about the new Generics library that ships with Racket 5.3. In this blog post, I’ll offer a slightly expanded commentary about the new...
View Article