simone's profilesmnbss BlogsPhotosBlogListsMore ![]() | Help |
|
smnbss BlogsJune 02 Once again the porno industry is leading the web revolutionI saw this few days ago Peer-to-peer content distribution companies like Vuze, BitTorrent, and Pando raised millions of dollars over the last several years under the assumption that big media companies would shift some of their distribution to P2P to cut their bandwidth costs. But that hasn't happened, and now many P2P companies are looking for new business models. For Vuze from http://www.businessinsider.com/p2p-startup-looks-to-porn-for-profits-2009-5 And browsing the web I discovered this p2p flash player: http://www.play2p.com/ from http://www.robtex.com/dns/play2p.com.html I don’t know if this has something to do with some new adobe functionality introduced with flash player 10 RTMFP:
but it looks like the Porn industry is making the web a better place once again :) May 23 Continuous Learner #1Gladinet Mounts Web Storage Apps as Virtual Driveshttp://lifehacker.com/5100226/gladinet-mounts-web-storage-apps-as-virtual-drives Geek to Live: Control your workdayhttp://lifehacker.com/software/top/geek-to-live--control-your-workday-187074.php Windows 7 upgrade advisorhttp://bink.nu/news/windows-7-upgrade-advisor.aspx Shorten share and track your linkhttp://bit.ly/info/ziesM Open Avatar |
|||||||||||||||||||||||||||||||||
| My new XPS | My old Inspiron | My work Machine |
| XPS M1330 SSD 128GB | ||
|
Almost 4 times faster in reads and 3.5 faster in writes.
I'm super happy, now I can finally have a decent WOW experience :D
P.S: this laptop fly!!!!!
I was reading about improving DB performances and saw this interesting post
http://www.milkcarton.com/blog/2009/01/29/Have+You+Reindexed+Your+Database+Lately.aspx
unfortunately the script for SQL 2005 on that post does not work so here it is a working version
USE DatabaseName --Enter the name of the database you want to reindex
DECLARE @TableName varchar(255)
DECLARE TableCursor CURSOR FOR
SELECT table_name FROM information_schema.tables
WHERE table_type = 'base table'
OPEN TableCursor
FETCH NEXT FROM TableCursor INTO @TableName
WHILE @@FETCH_STATUS = 0
BEGIN
declare @com varchar(200)
SET @com = 'ALTER INDEX ALL ON ' + @TableName + ' REORGANIZE'
exec (@com)
print @com
FETCH NEXT FROM TableCursor INTO @TableName
END
CLOSE TableCursor
DEALLOCATE TableCursor
Now days people are using many different communication platforms.
Messenger, twitter, facebook are all communication platforms we all use, all with APIs to talk to them.
Why not make WLM pluggable so that I can build my plugin to retrieve my twitter updates, my facebook updates my windows live updates (those in home.live.com in Windows Live wave 3) and at the same way I'm able to update my facebook and flickr status while I update my WLM Personal Message...
Come 'on guys we need more flexibility to write plugins for Messenger. We've seen quite good stuff for Live Writer, but please, open up messenger!!!
There are many "social clients" out there why not allow developer to make Messenger "THE social client"?
there's something out there to try to merge all those platforms
http://blogs.msdn.com/giorgio/archive/2008/05/11/windows-live-messenger-twitter-addin-with-setup-and-source-code.aspx
http://addons.songbirdnest.com/addon/1204
but we need more flexibility
pleaaaaasssseeeee
from
http://www.casalena.org/journal/2008/9/12/the-catch-22-of-entrepreneurship.html
1. You can't attract incredible people to your team unless you have something incredible.
2. You can't make something incredible unless you have amazing people to build it.
This is a major dilemma that most small companies never end up solving. I think the best way around it is to actually do transcendent things, or begin to externally validate your ideas. That can happen in a number of ways.
Money. This is the most obvious. If you have money received through investment, you've likely obtained it because someone thought you were doing something incredible. This money, and especially that validation, goes to paying great people to work with you. It points to an opportunity. If you inherently had money, that works too -- because it can speak to previous success -- but it doesn't work quite as well as direct validation.
Be completely incredible. Just go out and make the thing that nobody told you was possible. Design the billion dollar router by yourself. Write every part of the software yourself, then get fifty thousand people to pay for it. Compose the symphony alone. If you're really good -- you'll take off a little bit (or a lot) by yourself. The validation from that success is attractive and indisputable.
Steal the team. Think of the groups at the original PayPal or people in Stanford's grad programs. Both require an immense amount of vetting to be a part of, and the resulting groups are often incredible. The validation form getting into a prestigious college or onto an elite team can speak volumes for your credibility.
The interesting thing is that all 3 of these items require external validation -- something that can't easily be faked. Notice the almost equivalent statements like "raising money" and "having a bunch of free signups" don't require any external validation -- anyone can say or obtain that sort of thing, and they're pretty weak things to say.
Doing, rather than saying, goes a long way.
|
|