Create an Account
username: password:
 
  MemeStreams Logo

Lost's MemeStream

search

Lost
Picture of Lost
My Blog
My Profile
My Audience
My Sources
Send Me a Message

sponsored links

Lost's topics
Arts
Business
Games
Health and Wellness
Home and Garden
Miscellaneous
Current Events
Recreation
Local Information
Science
Society
Sports
Technology

support us

Get MemeStreams Stuff!


 
Treemap: Home page
Topic: Technology 7:57 pm EDT, Apr 18, 2008

Project description
Treemap is a space-constrained visualization of hierarchical structures. It is very effective in showing attributes of leaf nodes using size and color coding. Treemap enables users to compare nodes and sub-trees even at varying depth in the tree, and help them spot patterns and exceptions.
Treemap was first designed by Ben Shneiderman during the 1990s. For more information, read the historical summary of treemaps, their growing set of applications, and the many other implementations. Treemaps are a continuing topic of research and application at the HCIL.

Died from out of memory on a big directory.

Treemap: Home page


Jello AHAH - Simple Library for doing AHAH (Using AJAX to update content of a DIV dynamically)
Topic: Technology 5:02 pm EDT, Apr 16, 2008

/* Title: Jello AHAH Author: Russell Jurney, rjurney@lucision.com Release 0.1: 4-16-08 Description: Simple library for doing AHAH */

Put together this little minimal lib for doing AHAH so I wouldn't re-write this crap in each page.

Jello AHAH - Simple Library for doing AHAH (Using AJAX to update content of a DIV dynamically)


Interactive Depth of Field Tutorial
Topic: Arts 3:31 pm EDT, Apr 16, 2008

Shows you how to affect depth of field.

Interactive Depth of Field Tutorial


DMEautomotive - Premier Provider of Multi-Channel Variable Communications - DMEautomotive - Premier Provider of Multi-Channel Variable Communications
Topic: Business 12:03 am EDT, Apr 16, 2008

In 2007, DME Holdings LLC joined forces with JMsolutions, a JM Family Enterprises, Inc., company to create DMEautomotive LLC.

Aligning the automotive division of DME with the JMsolutions suite of innovative technology products and services combines intuitive sales and service marketing programs, robust inventory, and customer management tools never before offered under one umbrella.

The result? The three-suite family of SMX™ sales and service marketing solutions by DMEautomotive, the AAX™ inventory management, and CMX™ customer management suites by JMsolutions. Together the three suites take dealers from purchase, to service, torepurchase with seamless, integrated communication and ease.

At DMEautomotive, our focus is on the combination of multiple channels for the most effective, personalized relationship marketing available. By using a multi-channel, blended communication approach, you reach the right customer, at the right time, through the right medium—and it’s done consistently.

While all of these channels are very powerful on their own, combined they are infinitely more effective used as part of an integrated relationship marketing campaign.

DMEautomotive - Premier Provider of Multi-Channel Variable Communications - DMEautomotive - Premier Provider of Multi-Channel Variable Communications


GENE AMDAHL FIGHTS TO SALVAGE A WRECK His failed supercomputer swallowed most of the $230 million that investors bet on Trilogy Ltd. Now the wizard of high tech is trying a new strategy. - September 1, 1986
Topic: Business 11:57 pm EDT, Apr 15, 2008

GENE AMDAHL FIGHTS TO SALVAGE A WRECK His failed supercomputer swallowed most of the $230 million that investors bet on Trilogy Ltd. Now the wizard of high tech is trying a new strategy.
(FORTUNE Magazine)
By Myron Magnet

GENE AMDAHL FIGHTS TO SALVAGE A WRECK His failed supercomputer swallowed most of the $230 million that investors bet on Trilogy Ltd. Now the wizard of high tech is trying a new strategy. - September 1, 1986


mysql-udf | MySQL extension functions
Topic: Technology 12:35 pm EDT, Apr 15, 2008

Although MySQL is a powerful and fast database server, there are certain tasks that cannot be done with it so easily.
If you've ever tried to

* calculate the median of any values,
* calculate the skewness and kurtosis of a distribution of value
* retrieve the effective length of the longest value in a STRING column,
* get the longest value from a STRING column,
* calculate the faculty of a value,
* calculate linear regression parameters (intercept, slope, correlation coefficent) of any values,

directly from MySQL, you'll already know what I am writing about.
In fact, these tasks can only be performed in MySQL with ugly workarounds or require the use of additional programming on the client side.
This is where UDFs (User Defined Functions) come into play. UDFs are a nice and simple way to enhance your MySQL server's functionality with custom functions.
As you've already guessed, the aim of this page is to provide you with UDFs for some common tasks that can't be done in MySQL without UDFs that easily or not at all.

Nice if you need to do median, but not sure about stability yet.

mysql-udf | MySQL extension functions


Long-expected Delta-Northwest merger announced - Apr. 14, 2008
Topic: Miscellaneous 9:50 pm EDT, Apr 14, 2008

NEW YORK (CNNMoney.com) -- Delta Air Lines announced a long-speculated deal to acquire Northwest Airlines for about $3.1 billion Monday, a combination that will create the world's largest airline and could lead to a series of other deals to reshape the U.S. airline industry.

Delta/NW/KLM/AF mega carrier.

Long-expected Delta-Northwest merger announced - Apr. 14, 2008


Yazd on Flickr - Photo Sharing!
Topic: Arts 10:25 pm EDT, Apr 13, 2008

Yazd

Very beautiful city.

Yazd on Flickr - Photo Sharing!


Delta Aims to Unveil Northwest Merger Pact - WSJ.com
Topic: Business 8:41 pm EDT, Apr 13, 2008

Delta Air Lines Inc. and Northwest Airlines Corp. may unveil their long-delayed merger announcement as early as Tuesday, said people familiar with the matter, in the latest move by airlines to grapple with high fuel prices and a softening economy.

The deal could value Northwest at roughly $3 billion, these people said, though terms were still being negotiated. That would be well below Northwest's market value of more than $4.6 billion as of Feb. 1, reflecting the industry's worsening prospects in recent weeks.

Please don't devalue my mileses.

Delta Aims to Unveil Northwest Merger Pact - WSJ.com


How to do AHAH without a freakin framework
Topic: Technology 12:54 am EDT, Apr 13, 2008

// Returns a new XMLHttpRequest for IE and others
function createXMLHttpRequest()
{
if (window.ActiveXObject)
{
return new ActiveXObject("Microsoft.XMLHTTP");
}
else if (window.XMLHttpRequest)
{
return new XMLHttpRequest();
}
}

// Insert content from a url to a div AJAX style using a GET
function doAJAXGet(divId, url)
{
if(document.getElementById(divId))
{
// Until the div's content loads, assign a 'loading' image.
document.getElementById(divId).innerHTML = "

";

var xmlHttp = createXMLHttpRequest();
xmlHttp.onreadystatechange = function() {
if(xmlHttp.readyState == 4)
{
if(xmlHttp.status == 200)
{
document.getElementById(divId).innerHTML = xmlHttp.responseText;
}
}
};

xmlHttp.open("GET", url, true);
xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xmlHttp.send(null);
}
}

// Insert content from a url to a div AJAX style using a POST
function doAJAXPost(divId, url, args)
{
if(document.getElementById(divId))
{
// Until the grid loads, assign a 'loading' image.
document.getElementById(divId).innerHTML = "

";

var grid_xmlHttp = createXMLHttpRequest();
grid_xmlHttp.onreadystatechange = function() {
if(grid_xmlHttp.readyState == 4)
{
if(grid_xmlHttp.status == 200)
{
document.getElementById(divId).innerHTML = xmlHttp.responseText;
}
}
};
grid_xmlHttp.open("POST", url, true);
grid_xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
grid_xmlHttp.send(args);
}
}

How to do AHAH without a freakin framework


(Last) Newer << 77 ++ 87 - 88 - 89 - 90 - 91 - 92 - 93 - 94 - 95 ++ 105 >> Older (First)
 
 
Powered By Industrial Memetics
RSS2.0