KBD

Keith Devens .com

Saturday, September 6, 2008 Flag waving
Your best? Losers always whine about their best. Winners go home and fuck the prom queen. – John Mason (The Rock)

Tag: Microsoft

Parents:

Children:

Daily link icon Wednesday, July 23, 2008

  1. OMFG why does Vista have to ask me to confirm everything I ever do with my computer.

       (0) Tags: [Windows]
  2. Drunk Master Dev: How to move Business Contact Manager database to another instance of SQL Server 2005:

    If you're running the Business Contact Manager for Outlook, you've no doubt noticed that during the installation process, a named instance of SQL Server 2005 Express also gets installed. The instance is called MSSMLBIZ and is used to host the BCM database.

    So I have this extra instance of SQL Server on my computer... great. I want to uninstall everything and install the developer edition of SQL Server, but I have this thing in the way.

       (0) Tags: [Microsoft]

Daily link icon Thursday, July 17, 2008

  1. Globalization Step-by-Step: Currency Formatting. Now the question is how that's handled in a web environment.

       (0) Tags: [I18n, Windows]

Daily link icon Tuesday, July 15, 2008

  1. XML Notepad 2007, XML editor from Microsoft. To try.

       (0) Tags: [Microsoft, Software, XML]

Daily link icon Friday, April 18, 2008

  1. Windows PowerShell - Wikipedia, the free encyclopedia. So, I had no idea that Monad had turned into Windows Powershell. I'm excited that Monad saw the light of day even though it didn't come as part of Vista. And it looks like you can work with PowerShell almost the same as you'd work with a unix shell.

       (0) Tags: [Programming, Windows]

Daily link icon Monday, March 24, 2008

  1. CodeProject: Debugging Windows Services under Visual Studio .NET..

       (0) Tags: [Programming, Windows]

Daily link icon Thursday, February 28, 2008

'Limit' clause in MSSQL

Solution 1: SQL Server Equivalent To MySQL And PostgreSQL Limit Clause - Joseph Scott’s Blog. Note: assumes unique keys.

SELECT TOP n *
FROM tablename
WHERE key NOT IN (
    SELECT TOP x key
    FROM tablename
    ORDER BY key
)

Solution 2: Finally a LIMIT clause for MS SQL. (Same solution recommended here, with a small explanation.)

select * from (
 select top 10 emp_id,lname,fname from (
    select top 30 emp_id,lname,fname
    from employee
    order by lname asc
 ) as newtbl order by lname desc
) as newtbl2 order by lname asc

Edit: The above is in SQL Server 2k... for 2005 there's a new row_number() function.

Daily link icon Monday, February 25, 2008

  1. IEBlog : File URIs in Windows.

       (0) Tags: [Web Development, Windows]

Daily link icon Monday, October 1, 2007

  1. Ruby on Windows: Displaying a MessageBox Using the Windows API.

       (0) Tags: [Ruby, Windows]

Daily link icon Tuesday, August 14, 2007

  1. IEBlog : IE6 and IE7 Running on a Single Machine. Run IE6 through Virtual PC... Virtual PC and IE6 image all provided free by Microsoft.

       (0) Tags: [Web Development, Windows]

Daily link icon Thursday, July 5, 2007

  1. Matt Raible relays comments from Don Box:

    Richard Monson-Haefel asks "Is there a place for AOP in .NET or is it too sophisticated for your developers." Don's take is "My development platform should allow me to write code w/ a couple of beers in me." He ragged a bit on Java developers and said their main problem is they think they're smarter than they are. He also said that if he could change on thing at MSFT, it would be that Ruby becomes the language of choice.

       (0) Tags: [Java, Microsoft, Ruby]

Daily link icon Friday, May 18, 2007

  1. Scott Hanselman's Computer Zen - Scott Hanselman's 2006 Ultimate Developer and Power Users Tool List for Windows.

       (0) Tags: [Software, Windows]

Daily link icon Monday, April 9, 2007

  1. Paul Graham: Microsoft is Dead, via.

       (0) Tags: [Microsoft]

Daily link icon Tuesday, April 3, 2007

I hate copying files in Windows

I hate copying files in Windows.

"Do you want to overwrite?"
"Yes to all."
"But what about this one, it's read-only?"
"Yes, all".
"Oh hey, um, this one's a system file (thumbs.db). You sure?"
"Yes already"

Every time I update this directory. Not sure if there's a way to turn it off. I hate Windows.

Daily link icon Monday, June 26, 2006

WinFS is dead

WinFS is dead. Charles Miller has a good post about it.

Update: Joseph Scott: "At some point I hope to see a giant collective “we’ll believe it when it ships” response when Microsoft announces yet another new technology that will change everything."

Tip: Disable Auto Restart in Windows Update

Upon automatically installing updates, Windows will reboot your computer without your consent, losing any unsaved work in the process.

This is the most asinine designed behavior I can think of. Haven't verified that these fixes work.

Daily link icon Monday, April 17, 2006

  1. Coding Horror: XP Automatic Update Nagging. I set "Re-prompt for restart with scheduled installations" to 720 minutes (12 hours).

       (0) Tags: [Windows]

Daily link icon Wednesday, April 5, 2006

  1. Apple - Boot Camp:

    Apple will include technology in the next major release of Mac OS X, Leopard, that lets you install and run the Windows XP operating system on your Mac. Called Boot Camp (for now), you can download a public beta today.

    Ooh.

       (3) Tags: [Apple, Windows]

Daily link icon Friday, March 31, 2006

  1. The History of Microsoft - The Unofficial Apple Weblog (TUAW). Kind of a funny video, mostly consisting of public MS screwups and demo crashes. But that's not what I care about... what I care about is that towards the beginning Steve Jobs has the same criticism of Microsoft that I have. As an organization, Microsoft has no taste.

       (0) Tags: [Apple, Microsoft, Taste]

Daily link icon Monday, February 27, 2006

  1. YouTube - microsoft ipod packaging parody (via Matt). Excellently done, it exemplifies my biggest criticism of Microsoft: as an organization, from top to bottom, they lack taste.

    Update (3/25): Turns out the video was done by Microsoft (via Matt)!

       (0) Tags: [Apple, Microsoft, Taste, Videos]

Daily link icon Thursday, July 29, 2004

IronPython released as open source, author goes to work for Microsoft

IronPython 0.6 has been released as open source timed to coincide with OSCON, and the author, Jim Hugunin, is going to work for Microsoft to work on the CLR.

It was a little less than a year ago that I first started investigating the Common Language Runtime (CLR). My plan was to do a little work and then write a short pithy article called, "Why .NET is a terrible platform for dynamic languages". My plans changed when I found the CLR to be an excellent target for the highly dynamic Python language. Since then I've spent much of my spare time working on the development of IronPython.

The more time that I spent with the CLR, the more excited I became about its potential. At the same time, I was becoming more frustrated with the slow pace of progress that I was able to make working on this project in my spare time. After exploring many alternatives, I think that I've found the ideal way to continue working to realize the amazing potential of the vision of the CLR. I've decided to join the CLR team at Microsoft beginning on August 2.

At Microsoft I plan to continue the work that I've begun with IronPython to bring the power and simplicity of dynamic/scripting languages to the CLR. My work with Python should continue as a working example of a high-performance production quality implementation of a dynamic language for the CLR. I will also reach out to other languages to help overcome any hurdles that are preventing them from targeting the CLR effectively.

Ed Dumbill has comments. It turns out he was able to take the source code for IronPython (which is written in C#) and run it directly on Mono with no changes. That's excellent!

John Udell has more:

"When you think about it," Hugunin said, "why would the CLR be worse for dynamic languages than the JVM, given that Microsoft had the second mover advantage?" And in fact, while he had to do plenty of extra work to support dynamic features that the CLR doesn't natively offer, he notes that the massive engineering resources invested in the CLR make it highly optimized along a number of axes. So, for example, the CLR's function call overhead is apparently less than the native-code CPython's function call overhead, and this is one of the reasons why IronPython benchmarks well against CPython.

All of this is great news. Discussion at Lambda.

Daily link icon Monday, September 9, 2002

Microsoft is awful

Microsoft makes horribly insecure products, so to protect themselves from having arbitrary code execute in their e-mail program, they just block most anything from being opened altogether. Even if you know what you're doing, and you want the attachment, you can't get at it without hacking your registry. Damn you Microsoft!

But it looks like that registry hack only works for Outlook 2002, and there's really no good way to get around the hack that they put in to block you from getting your own file. Grrrr...

September 2008
SunMonTueWedThuFriSat
 123456
78910111213
14151617181920
21222324252627
282930 



RSS feed RSS feed for Keith's Weblog
Atom feed Atom feed for Keith's Weblog
Weblog archive
Recent comments
  on 5 posts

Recent comments XML

new⇒I hate ASP.NET

CF, why pick that piece of trash?​Cold Confusion. Is it finally​really a OO...

ColdConfusion: Sep 5, 8:36pm

Maps of Iraq

This is for Linda, I will be​visiting that site some time in the​near futur...

Bob: Sep 5, 1:20pm

Girls, please don't get breast implants

Well alright I just read my above​comment and I wanted to add​this...I shou...

76.66.140.8: Sep 4, 7:31pm

Spider solitaire

I don't think the question was​necessarily if there are unbeatable​games.  ...

Jared: Sep 4, 12:44pm

Convert Pantone Colors to RGB and Hex - Color Conversion Chart

The colors on those website don't​seem to relate to the pantone data​we hav...

blah: Sep 3, 10:12am

Generated in about 0.185s.

(Used 11 db queries)

mobile phone