Skip to main content

Home/ Coders/ Group items tagged Frameworks

Rss Feed Group items tagged

Joel Bennett

LearnWPF.com - 1 views

  •  
    The "LearnWPF"site has lots and lots of tips on how to get started devloping with Windows Presentation Framework
Joel Bennett

Flapjax - a new language for writing the web? - 0 views

  •  
    Flapjax is a programming language which compiles to cross-platform javascript, but purports to be quite a bit easier to use ...
Joel Bennett

Silverlight Cairngorm - Port Cairngorm to .NET - CodeProject - 0 views

  •  
    A port of adobe's Cairngorm architecture from Flex to Silverlight ....
Joel Bennett

VS 2008 and .NET 3.5 SP1 ... Beta - ScottGu's Blog - 0 views

  •  
    Lots of information about what's in the first Beta of SP1 for VS 2008 and .NET 3.5, and what *will* be in, down the road, with extra focus on ASP.Net
Joel Bennett

Cloud Computing Tools Team (aka: the Windows Azure blog) - 0 views

  •  
    Windows Azure is the new platform for "Cloud Computing" from Microsoft. It's an auto-scalable virtualized hosting environment...
Joel Bennett

Magento - Home - Open Source eCommerce Evolved - 0 views

  •  
    An open source competitor to OSCommerce
Joel Bennett

Create And Host Custom Designers With The .NET Framework 2.0 -- MSDN Magazine, March 2006 - 0 views

  •  
    hosting designers ...
Joel Bennett

Windows Presentation Foundation Add-Ins Overview - 0 views

  • WPF, in conjunction with the .NET Framework add-in model, allows you to address a wide variety of scenarios that require host applications to display UIs from add-ins.
  •  
    Addins (plugins) for WPF can even do UI. I'm not convinced this is necessary to do UIs with plugins, but it's necessary if you want to allow untrusted code to do it.
Joel Bennett

Visual Studio 2008 and the .NET Framework 3.5 - WindowsClient.net - 0 views

  • add standard 2D WPF controls to 3D items
    • Joel Bennett
       
      This could be awesome, although I can't actually think of a good use for it right now.
    • Joel Bennett
       
      This could be awesome, although I can't actually think of a good use for it right now.
Joel Bennett

PS Expect: PowerShell Scripts for Testing - CodePlex - 0 views

  •  
    A project to implement xUnit-style Assert-* functions to make it easier to use PowerShell as a testing language.
Matteo Spreafico

Joe Duffy's Weblog - OnBeingStateful - 0 views

  • The biggest question left unanswered in my mind is the role state will play in software of the future.
  • The biggest question left unanswered in my mind is the role state will play in software of the future. That seems like an absurd statement, or a naïve one at the very least.  State is everywhere: The values held in memory. Data locally on disk. Data in-flight that is being sent over a network. Data stored in the cloud, including on a database, remote filesystem, etc. Certainly all of these kinds of state will continue to exist far into the future.  Data is king, and is one major factor that will drive the shift to parallel computing.  The question then is how will concurrent programs interact with this state, read and mutate it, and what isolation and synchronization mechanisms are necessary to do so?
  • Many programs have ample gratuitous dependencies, simply because of the habits we’ve grown accustomed to over 30 odd years of imperative programming.  Our education, mental models, books, best-of-breed algorithms, libraries, and languages all push us in this direction.  We like to scribble intermediary state into shared variables because it’s simple to do so and because it maps to our von Neumann model of how the computer works.
  • ...3 more annotations...
  • We need to get rid of these gratuitous dependencies.  Merely papering over them with a transaction—making them “safe”—doesn’t do anything to improve the natural parallelism that a program contains.  It just ensures it doesn’t crash.  Sure, that’s plenty important, but providing programming models and patterns to eliminate the gratuitous dependencies also achieves the goal of not crashing but with the added benefit of actually improving scalability too.  Transactions have worked so well in enabling automatic parallelism in databases because the basic model itself (without transactions) already implies natural isolation among queries.  Transactions break down and scalability suffers for programs that aren’t architected in this way.  We should learn from the experience of the database community in this regard
  • There will always be hidden mutation of shared state inside lower level system components.  These are often called “benevolent side-effects,” thanks to Hoare, and apply to things like lazy initialization and memorization caches.  These will be done by concurrency ninjas who understand locks.  And their effects will be isolated by convention.
  • Even with all of this support, we’d be left with an ecosystem of libraries like the .NET Framework itself which have been built atop a fundamentally mutable and imperative system.  The path forward here is less clear to me, although having the ability to retain a mutable model within pockets of guaranteed isolation certainly makes me think the libraries are salvageable.  Thankfully, the shift will likely be very gradual, and the pieces that pose substantial problems can be rewritten in place incrementally over time.  But we need the fundamental language and type system support first.
« First ‹ Previous 141 - 160 of 189 Next › Last »
Showing 20 items per page