Skip to main content

Home/ Coders/ Group items tagged making

Rss Feed Group items tagged

Kingdon Barrett

The Sixth Layer: Jyte Claims: Kingdon Did Not Travel to New Zealand - 0 views

  • Somebody has traveled to New Zealand.Somebody named Jack has traveled to New Zealand.Somebody named Kingdon has traveled to New Zealand.
    • Kingdon Barrett
       
      Now if I told you this, and asked you to vote for the truth, would you be able to figure out what to do? *hint* you will need an OpenID to log into Jyte. PS I did not go to New Zealand. /kingdon
  •  
    Read my tale of woe, make your own judgment! I swear I have never been to New Zealand before!
Joel Bennett

Growl - Why Don't We Make This a Standard? - The Tao of Mac, 2004 - 0 views

  •  
    Growl - why don't we make it a standard?

    Two Part

Joel Bennett

The Thing About Git - 0 views

  •  
    Pistos should have added this to the group -- doesn't anyone else share things around here?
  •  
    A good description of how Git is different than other version control systems -- makes me almost interested in using it.
Joel Bennett

Windows: A Monopoly Shakes - Microsoft Watch - Operating Systems - 0 views

  • Windows' enterprise adoption declined 3.7 percent, going from 98.6 percent in January to 94.9 percent in December. Mac OS gained 3 percent, going from 1.2 to 4.2 percent in the same time frame. Linux gained 0.5 percent in 2007.
  • Apple, with its enterprise share growing threefold
    • Joel Bennett
       
      Yeah, that's more like it -- they're going to be reporting 300% growth in the enterprise, I'm sure.
  •  
    Windows use in the enterprise (it's traditional stronghold) has declined almost 4% to about 95% in the last year ... It's just a tiny sliver, but the real question is: is it enough to make Apple start catering to their enterprise customers?
Joel Bennett

Google vs Xerox on R&D | Computerworld Blogs - 0 views

  •  
    Google does R&D but has no dedicated researchers or formal lab organization. Every engineer is considered part of the virtual R&D team and is expected to donate 20% of his time - about one day a week - to research. Xerox takes the traditional approach, investing in a separate R&D function that includes basic research ... what makes each approach successful?
  •  
    Not really a fair comparison -- what has Google's R&D produced? The Android?
Joel Bennett

WPF Unit Testing - C# Disciples - 0 views

  •  
    There are are a couple of valuable tricks already in this toolkit: 1) a fix for NUnit (and others) to allow unit testing things which must run in STA mode. 2) a way to make your XAML data binding testable by tracing data binding warnings
Joel Bennett

Snippet Designer - CodePlex - 0 views

  •  
    The Snippet Designer is a plugin to make it easy to create Visual Studio 2008 snippets within the Visual Studio IDE.
Justin Newton

Mozilla Developer Page - 0 views

  •  
    Mozilla Developer Page. Teaches the basic of AJAX, JAVASCRIPT, XML, CSS, XHTML. Learn how to make addons / extensions.
Joel Bennett

Oomph - A Microformats Toolkit - CodePlex - 0 views

  •  
    Making Microformats more accessible for users, developers and designers: * An Internet Explorer Add-in that lights up Microformats on pages * A cross-browser DHTML overlay built using JQuery that aggregates Microformats * A set of beautiful CSS styles for Microformats * A Windows Live Writer Plug-in written in WinForms for inserting hCards
Joel Bennett

MiX Labs - Oomph Microformats Toolkit - 0 views

  •  
    Microformats are about enhancing the web, representing data in HTML and moving that data around. Oomph: A Microformats Toolkit is for web developers, designers and users, making it easier to create, consume, and style Microformats.
Joel Bennett

How to initialize an attached DependencyProperty of type Collection - Tales from the Sm... - 0 views

  •  
    This was finally the explanation I needed to help me understand how to make the redundant tag from the XAML unecessary.
Joel Bennett

Make the Most of Your Dual Monitors - Lifehacker - 0 views

  •  
    A great article on LifeHacker with links to tools and and toys for dual monitor users.
Joel Bennett

VistaGlazz - CodeGazer - 0 views

  •  
    A fix to make maximized windows stay "glassy" in Vista ... and a UXTheme patcher ... all in one!
Joel Bennett

Oxite.2009.2.15 Released - Erik Porter - 0 views

  •  
    Describes the refactoring of Oxite to make it ... a better example.
Fabien Cadet

Use your singletons wisely - 0 views

  • I know where you live anti-pattern
  • Liskov Substitution Principle
  • the easier it is to test a class, the more likely a developer will test it.
  • ...3 more annotations...
  • Don't worry: the code will always tell you what to do. Just listen.
  • The key points here are that a class is only a singleton if all applications treat it exactly the same and if its clients can use the class without an application context.
  • "[c]ode wants to be simple."
  •  
    "singletons are unnecessarily difficult to test and may make strong assumptions about the applications that will use them [...] I know where you live anti-pattern [...] Liskov Substitution Principle". "To decide whether a class is truly a singleton: * Will every application use this class exactly the same way? (exactly is the key word) * Will every application ever need only one instance of this class? (ever and one are the key words) * Should the clients of this class be unaware of the application they are part of?"
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.
Joel Bennett

Dryad and DryadLINQ | Microsoft Connect - 0 views

  •  
    DryadLINQ is a Microsoft Research project, which aims to make distributed computing on clusters of computers simple enough for all programmers. DryadLINQ combines another Microsoft Research technology, Dryad, with the familiar LINQ technology from the Microsoft .NET framework.
Joel Bennett

Pin Stack: Fund Your Project With a Pledge System - 0 views

  •  
    The threshold pledge system is actually fairly common in everyday life. How often does a group of friends pool together money to buy something, or commit to doing something if the other friends make the same commitment?
Joel Bennett

jQuery Library for SharePoint Web Services - CodePlex - 0 views

  •  
    a jQuery library which abstracts SharePoint's Web Services and makes them easier to use...
Matteo Spreafico

Fabulous Adventures In Coding : The Stack Is An Implementation Detail, Part One - 0 views

  • Almost every article I see that describes the difference between value types and reference types explains in (frequently incorrect) detail about what “the stack” is and how the major difference between value types and reference types is that value types go on the stack.
  • I find this characterization of a value type based on its implementation details rather than its observable characteristics to be both confusing and unfortunate. Surely the most relevant fact about value types is not the implementation detail of how they are allocated, but rather the by-design semantic meaning of “value type”, namely that they are always copied “by value”.
  • Of course, the simplistic statement I described is not even true. As the MSDN documentation correctly notes, value types are allocated on the stack sometimes. For example, the memory for an integer field in a class type is part of the class instance’s memory, which is allocated on the heap.
  • ...3 more annotations...
  • As long as the implementation maintains the semantics guaranteed by the specification, it can choose any strategy it likes for generating efficient code
  • That Windows typically does so, and that this one-meg array is an efficient place to store small amounts of short-lived data is great, but it’s not a requirement that an operating system provide such a structure, or that the jitter use it. The jitter could choose to put every local “on the heap” and live with the performance cost of doing so, as long as the value type semantics were maintained
  • I would only be making that choice if profiling data showed that there was a large, real-world-customer-impacting performance problem directly mitigated by using value types. Absent such data, I’d always make the choice of value type vs reference type based on whether the type is semantically representing a value or semantically a reference to something.
« First ‹ Previous 181 - 200 of 596 Next › Last »
Showing 20 items per page