Categories

Blogroll

Search

Posts tagged with API

HOPL III: The When, Why and Why Not of the BETA Programming Language

November 30th, 2008 by and tagged , , ,

The When, Why and Why Not of the BETA Programming Language by Bent Bruun Kristensen, Ole Lehrmann Madsen, and Birger Møller-Pedersen from HOPL-III. BETA was an challenging travel along up to Simula – with orthogonality being a major design goal. The independent things I found of interest are the attempts to create a merged abstraction [...]

Posted in Technology | Comments Off

I’m Nevertheless Going away Farsighted and Hop-skiping the Markets Go away Down

November 14th, 2008 by and tagged , , ,

First rule of Investing. Dont fall in love with positions or render to turn up yourself justly. I intended we might pay off a bounce. I was incorrect. I spread over my poor puts when the market embarked on to drop its gains. So I lucked out on that point. More significantly, i desired to [...]

Posted in Technology | Comments Off

I’m Nonetheless Departing Foresightful and Hop-skiping the Markets Go away Down

November 13th, 2008 by and tagged , , ,

First rule of Investing. Dont fall in love with positions or render to turn up yourself justly. I intended we might pay back a bounce. I was incorrect. I spread over my inadequate puts when the market commenced to throw its gains. So I lucked out in that respect. More significantly, i desired to clear [...]

Posted in Technology | Comments Off

Updated ASP.NET Active Data Bits Placed

May 29th, 2008 by and tagged , , ,

We hardly put up some updated bits and samples for ASP.NET Active Data… I advance you to plump foot them up and allow us experience what you intend… Some coolheaded newfangled stuff in this release: Ocular Studio Integration is much uncontaminating Right away sustains "pretty" URLs http://products/details/1 rather of http://products/details.aspx?id=123 Full documentation Extra support for [...]

Posted in Technology | Comments Off

Updated Finalization and Hosting

May 29th, 2008 by and tagged , ,

My original posts on Finalization and Hosting had some artificial XXXXX markers in place of content, where that content hadn’t already been disclosed in some form.  Nowadays that the Ocular Studio 2005 Community Preview is uncommitted, I’ve moved backward to those two posts and put back the XXXXX markers with existent text. As well, it’s [...]

Posted in Technology | Comments Off

Spring Web Flow 2 release

May 28th, 2008 by and tagged , , ,

For Java developers expending the Spring framework, the project late denoted an of import milestone in the form of Web Flow 2.0 which builds upon the MVC module used in Spring apps.

Posted in Technology | Comments Off

Memory Model

May 28th, 2008 by and tagged , , ,

One of the suggestions for a blog entry was the carryed off memory model.  This is seasonable, because we’ve barely been retooling our overall approach to this confounding topic.  For the most part, I write on product decisions that have already been produced and embarked.  In this note, I’m discoursing succeeding directions.  Be doubting.   [...]

Posted in Technology | Comments Off

This Guy Proves Anyone with a Keyboard can be Stupid

March 25th, 2008 by and tagged , , , ,

Also see: Silverlight 2 DataGrid walk-through posted I don’t know if Leanord Shapiro is a blogger or whether his work appears in the Washington Post on a regular basis. What I do know is that this post about Mixed Martial Arts and CBS is absolutely ridiculous and worthless. Nor do I have any idea what [...]

Posted in Technology | Comments Off

Brad Abrams’ pixel8 Interview Podcast posted

March 23rd, 2008 by and tagged , , , ,

Also see: Big in Japan Also see: Hello world! Also see: Exception Handling in Running a Business I just noticed that the good folks at Pixel8 posted a podcast I did with them a while back.  It was a fun conversation about a bit of.NET history as well as where we are going.  Landing Page [...]

Posted in Technology | Comments Off

LINQ – The Uber FindControl

March 21st, 2008 by and tagged , , , ,

Also see: Blogs at work With a simple extension method to ControlCollection to flatten the control tree you can use LINQ to query the control tree: public static class PageExtensions { public static IEnumerable<Control> All(this ControlCollection controls) { foreach (Control control in controls) { foreach (Control grandChild in control.Controls.All()) yield return grandChild; yield return control; [...]

Posted in Technology | No Comments »