Tag: CompaniesChildren:
-
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]
-
CodeProject: Debugging Windows Services under Visual Studio .NET..
¶ (0)
Tags: [Programming, Windows]
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.
-
IEBlog : File URIs in Windows.
¶ (0)
Tags: [Web Development, Windows]
-
Ruby on Windows: Displaying a MessageBox Using the Windows API.
¶ (0)
Tags: [Ruby, Windows]
-
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]
-
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]
-
Slashdot | Apple Safari On Windows Broken On First Day. Huge security holes.
¶ (0)
Tags: [Safari]
-
Google Gears (BETA). Not dead yet (lol).
¶ (0)
Tags: [Google]
-
Scott Hanselman's Computer Zen - Scott Hanselman's 2006 Ultimate Developer and Power Users Tool List for Windows.
¶ (0)
Tags: [Software, Windows]
-
Paul Graham: Microsoft is Dead, via.
¶ (0)
Tags: [Microsoft]
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.
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."
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.
-
Coding Horror: XP Automatic Update Nagging. I set "Re-prompt for restart with scheduled installations" to 720 minutes (12 hours).
¶ (0)
Tags: [Windows]
-
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.
¶
Tags: [Apple, Windows]
-
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]
-
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]
I just wanted to strongly recommend against purchasing the Linksys WPS54G Wireless-G Print Server. It almost doesn't work at all. I bought it months and months ago and never really got it to work right. Its own utilities can't find it on the network, and I just downloaded the installer from Linksys' web site and the installer front-end didn't work.
It is possible to print from it, sometimes, though it works very slowly and stalls whatever app is trying to print for a while until the job forces its way through to the printer.
Anyway, just wanted to publicly give the product a big thumbs down. Don't buy.
-
Python Creator Guido van Rossum now working at Google (via Simon Willison). Rock!
¶
Tags: [Google, Programming, Python]
-
Google Labs Publications: MapReduce:
MapReduce is a programming model and an associated implementation for processing and generating large data sets... Programs written in this functional style are automatically parallelized and executed on a large cluster of commodity machines. The run-time system takes care of the details of partitioning the input data, scheduling the program's execution across a set of machines, handling machine failures, and managing the required inter-machine communication. This allows programmers without any experience with parallel and distributed systems to easily utilize the resources of a large distributed system.
Via Adam and Ned.
¶ (0)
Tags: [Google, MapReduce]
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.
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...
|
Generated in about 0.175s. (Used 12 db queries) |
getElementsByClass function
http://pitfalls.wordpress.com/2008/07/07/querying-it-jquery-way-getelements...
maxgandalf: Jul 7, 5:50am