Showing posts with label coding horror. Show all posts
Showing posts with label coding horror. Show all posts

Monday, May 18, 2009

Wanna discuss Microsoft Sharepoint?

Currently, I'm developing something that requires integration with Microsoft Sharepoint.

If you're considering to do the same, and are used to standard HTML, CSS and javascript technologies like object-detection and namespacing, I seriously advise you to have some painkillers in reach, as well as some hard liquor to flush them down.

If you'd like to discuss my point of view, please use this function from core.js, kindly provided by the open minded crew that is responsible for the web development disaster better known as Microsoft Sharepoint:

function Discuss(strUrl)
{
var L_IE5upRequired_Text="'Discuss' requires a Windows SharePoint Services-compatible application and Microsoft Internet Explorer 6.0 or greater.";
if (browseris.ie5up && browseris.win32)
window.parent.location.href=strUrl;
else
alert(L_IE5upRequired_Text);
}

Thank you.

DuckDb Performance: min, max, and median vs quantile

I was playing with some classical statistics in DuckDB and I ran into something I'd like to share. It's about the measures minimum,...