Is Google going p2p?
Sharelive used to be a file sharing site. Now it resolves to Google's page. Is there anything to read like Google's p2p plans or it's just a site rip off.
News, Views, Rants and Raves About Technology and More
Sharelive used to be a file sharing site. Now it resolves to Google's page. Is there anything to read like Google's p2p plans or it's just a site rip off.
“Google does not censor results for any search term. The order and content of our results are completely automated; we do not manipulate our search results by hand. We believe strongly in allowing the democracy of the web to determine the inclusion and ranking of sites in our search results. To learn more about Google’s search technology, please visit ...”
“It is Google’s policy not to censor search results. However, in response to local laws, regulations, or policies, we may do so. When we remove search results for these reasons, we display a notice on our search results pages. Please note: For some older removals (before March 2005), we may not show a notice at this time.”
No one knows what “syndication” means, unless you’re talking about I Love Lucy reruns. Syndication is a publisher-centric, geek-centric term. For most people, it’s Really Simple Huh? Most people don’t even know that syndicate can be used as a verb!And then there are issues at the other extreme too - the problem of abundance of RSS feeds.
With Hyperwords, all text on the web is interactive (not just the links): select your text and search, lookup, email, translate and so on.I like it already. One of the reason being, it also includes Clusty as one of the search engines along with Google, Yahoo and Alexa(duh). It has the usual Web 2.0 blabby features- tagging, blogging and all that. And it has some 'more useful' features as well. It is going to be a truly addictive firefox extension. A 'thumbs up' from me.
Windows raises ThumbTrack ScrollEvent while dragging Scrollbar. And if your System Visual Effects are optimized for performance, window contents are updated only when scollbar stops ( unlike browser)- that looks ugly and annoying.
public class ScrollPanel : System.Windows.Forms.Panel
{
private const int WM_HSCROLL = 0x114;
private const int WM_VSCROLL = 0x115;
protected override void WndProc (ref Message m)
{
if ((m.Msg == WM_HSCROLL || m.Msg == WM_VSCROLL)
&& (((int)m.WParam & 0xFFFF) == 5))
{
// Change SB_THUMBTRACK to SB_THUMBPOSITION
m.WParam = (IntPtr)(((int)m.WParam & ~0xFFFF)
| 4);
}
base.WndProc (ref m);
}
}