Browse by Tags

Related Posts

  • Open Source: It Costs Too Much

    Our startup honestly wanted to use OSS products. We do not want to spend time for any OSS bug fixing so our main requirement was -official support for all OSS products-. We thought were prepared to pay the price for OSS products, but then we got a price sticker shock. Now behold: QT is $3300 per seat...
    Posted to Jesse Ezell Blog (Weblog) by Jesse Ezell on 10-05-2006, 12:00 AM
    Filed under: Microsoft, Open Source, C#, TCO, Linux
  • Open Source: It Costs Too Much

    Our startup honestly wanted to use OSS products. We do not want to spend time for any OSS bug fixing so our main requirement was -official support for all OSS products-. We thought were prepared to pay the price for OSS products, but then we got a price sticker shock. Now behold: QT is $3300 per seat...
    Posted to Jesse Ezell Blog (Weblog) by Jesse Ezell on 10-05-2006, 12:00 AM
    Filed under: Microsoft, Open Source, C#, TCO, Linux
  • SubSonic of the day - Collections

    I am going to start spreading the goodness of SubSonic. I think SubSonic is sometimes overlooked for flashy things such as LINQ and Project JASPER. SubSonic is in a transition point (which is apparent when reading Rob Conery's blog ), but I think the project still has tons of momentum and is an INVALUABLE...
    Posted to Zack Owens (Weblog) by zowens on 09-18-2007, 12:00 AM
    Filed under: .NET, Visual Basic, C#, Open Source, ASP.NET, SubSonic
  • SubSonic of the Day - The Query tool

    By now, you have probably heard of LINQ. LINQ, as you probably know, stands for Language Integrated Query. The LINQ queries you build inside of C# or VB are baked into the .NET 3.5 framework. SubSonic takes a more traditional approach (right now) and uses the Query as an object. Instead of doing weird...
    Posted to Zack Owens (Weblog) by zowens on 10-01-2007, 12:00 AM
    Filed under: .NET, Visual Basic, C#, Open Source, ASP.NET, SubSonic
  • SubSonic ASP.NET Providers Revisited

    It's been quite a while (2 months actually) since I announced the creation of the SubSonic ASP.NET Providers . Since then, I haven't really done much with the code base, mostly since I have to spread my time out between a lot of things now a-days. But I am about to do some major testing. This is mostly...
    Posted to Zack Owens (Weblog) by zowens on 12-18-2007, 12:00 AM
    Filed under: .NET, Visual Basic, C#, Open Source, ASP.NET, SubSonic, SubSonic Providers
  • DSA 0.4 released!

    The latest version of the Data Structures and Algorithms (DSA) library is out! Download DSA 0.4 This latest release contains the following additions: QuickSort<T> UnorderedSet<T> Heap<T> ShellSort<T> InsertionSort<T> RepeatedWordCount ToBaseN (Binary, Octal, Hex) Download...
    Posted to Granville Barnett (Weblog) by gbarnett on 02-21-2008, 12:00 AM
    Filed under: .NET, Data Structures, Algorithms, C#, Software Development, Open Source, DSA
  • CPU Scheduling Simulator (CPUSS) 0.2 released!

    This release includes a few new scheduling strategies including: Priority First (PF) Round Robin (varying time quantum) Download CPUSS 0.2 As you might expect in CPUSS 0.1 the Process type had no notion of a priority and by default all processes unless stated otherwise have a medium priority. RR - few...
    Posted to Granville Barnett (Weblog) by gbarnett on 02-15-2008, 12:00 AM
    Filed under: .NET, Algorithms, C#, Software Development, Open Source, CPU Scheduling, CPUSS
  • Creating a quick scheduling simulation using CPUSS

    Just a quick note, and most is self explanatory ( download CPUSS here ). I'll talk about the code after. using System; using System.Collections.Generic; using Cpuss; using Cpuss.Strategies; namespace ConsoleApplication1 { class Program { static void Main() { Runner runner = new Runner (20, 10, 65, new...
    Posted to Granville Barnett (Weblog) by gbarnett on 01-31-2008, 12:00 AM
    Filed under: .NET, Algorithms, C#, Open Source, CPU Scheduling, CPUSS
  • CPU Scheduling Simulator (CPUSS) 0.1 released!

    I have an interest in CPU scheduling strategies so I thought I would make a framework ( CPUSS ) by which you could use standard strategies (first-come-first-served, shortest job first, round robin, priority etc) and also create your own and gather metrics from the strategies execution given n processes...
    Posted to Granville Barnett (Weblog) by gbarnett on 01-30-2008, 12:00 AM
    Filed under: .NET, Algorithms, C#, Software Development, Research, Open Source, CPU Scheduling, CPUSS
  • CPU Scheduling Simulator (CPUSS) 0.3 released

    Download CPUSS 0.3 In this release the new features include: CPU Activity for each process (so you can perform more in depth analysis) Average wait time (average processes spent in the ready queue) Lightweight logger (persists data to a SQL Server database, wraps a LINQ to SQL datacontext) Expert strategy...
    Posted to Granville Barnett (Weblog) by gbarnett on 03-05-2008, 12:00 AM
    Filed under: .NET, Algorithms, C#, Software Development, Open Source, CPU Scheduling, CPUSS
Page 1 of 3 (27 items) 1 2 3 Next >