Jason Salas' WebLog

On-air and online: making people laugh, making people think, pissing people off

Sponsors

ASP.NET sites that kick ass

Pals with blogs

Podcasts I listen to

Posted: by

Comments

Nathan said:

There are a few pre-formatted validation expressions available in the VS.NET property editor, including one for email addresses.

If you select the ValidationExpression field of the RegExpValidator and click the [...] icon in the far right you will be able to access them.

Nathan
# December 10, 2003 3:58 AM

Jason said:

Hi nathan. Thanks...I knew about the pre-formatted ones, but it would be nice to see them all rolled into a single server control.
# December 10, 2003 4:03 AM

jason said:

Actually, I got feedback from Scott Guthrie on this one...he's going to run it by the team doing validation controls for their consideration. Sweet!
# December 10, 2003 4:08 AM

Johnny Hall said:

Where do you draw the line though? TelephoneNumberValidator? IpAddressValidator? UrlValidator? You could end up with a very bloated product. There are already a whole raft of controls being added in 2.0. My feeling is that such a control is completely unnecessary. If you really need it, it's a simple task to create a custom server control.

One good aspect of the current RegularExpressionValidator is that developers have to learn (to a certain extent) how regular expressions work (very handy). If this was hidden, then creating regular expressions for validation might not be used so much (use the built-in ones instead) and the skill is "lost".

Plus, the functionality is already in ASP.NET, as has been pointed out. It's no real work to access it.
# December 10, 2003 4:48 AM

Jason Salas said:

Hey Johnny,

Good point and certainly very true. I've been wanting to request that an e-mail validator be available for some time.

Actually, truth be told, I had the same concerns when Microsoft said they were rolling the Login controls all into one. It's helpful, but I found it to be tedious overkill, and maybe just done more for marketing to tout it as "an aggregated feature".

But considering how MS is really working to use as mant declarative controls as possible with minimized code, I thought it would fit into the feature set nicely, since so many other feautres that can be rolled or already have existing APIs are being consolidated.

I agree that it might be a bit much, bu for devs just starting out, it would help...and regular expressions are still arguably really hard for beginners to work with, IMHO. It's all about making advanced web app development possible for the masses.
# December 10, 2003 5:02 AM

Johnny Hall said:

I see the push towards more declarative development, and I don't have a problem with it.

I'm not overly happy about the push to dumb-down web development, if indeed that is what it is.

There are too many poor developers out there already. New controls don't make web development easier, they reduce the amount of code that needs to be written, sure, but the *really* difficult problems don't go away:

- How to design a great UI
- How to architect the back-end to allow for reuse, maintainability and reliability
- How to scale the application for large numbers of users
- How to construct an efficient and usable framework or API
- etc

Having more and more controls worries me, to a certain extent. How much bloat can we contend with?

The features that I like in 2.0 are those which will make it easier for me to construct great applications - better custom control development tools/frameworks, db cache dependencies, integrated SqlXml, ObjectSpaces, MARS.
# December 10, 2003 5:46 AM

Jason Salas said:

Great feedback. Undoubtedly, that's a concern of Microsoft's, too, to stay competitive. However, it's assumedly likewise a goal to make web development - and in particular, advanced web development - available to the masses.

My initial recommendation was to build-in a utility that would speed up development, not dumb it down, although I can see how that it might be perceived that way. I was one of the classically-trained web devs people who got mad when Dreamweaver first came on the scene and Joe Schmo who's been working with a PC (not just web programming) for less than a year, and is able to churn out a database-driven site because of an IDE, all the while remaining ignorant to the processes behind-the-scenes, despite my years of training and toiling.

It's the bigger picture that MS is concerned with, because that's where the money is. Granted, it opens up a whole new arena of headaches, but consider the control is has, too. Some newbies may move over from JSP or PHP to ASP.NET based solely on the fact that ASP.NET offers auto-validation controls. People are weird like that.

If the issue is that encapsulating functionality into server controls dilutes the amount of total control a developer has, then maybe the midground would be to create a framework delivering the best of both worlds - delivering powerful functionality WITH lots of room for extensibility.

On that note, I really like what the ASP.NET team has done with caching - specifically, unsealing the Cache API so that devs can write their own caching schemes. If this was encouraged a bit more throughout other areas of the Framework (validation being another, et al.) this would be great.
# December 10, 2003 6:16 AM

SBC said:

Thanks for the review. I saw the book at the local Border's Books. I have been using Archer's Inside C# 2nd ed.
# December 10, 2003 7:45 AM

Andrew said:

Reason for not wraping dependent controls
seems obvious-two controls can have the same
"manager" but different placement context not
directly connected to it's "manager", think
also about ability to set DataSource/"some kind of manager" from code at runtime.
Where are you placing validation controls for example or any non-visual controls connected with visuals?
# December 10, 2003 9:19 AM

AndrewSeven said:

A regex works, but some things like an email address must adhere to a published standard.

It would be nice to have validators that enforce those standards exactly.

I would also like to see a type validator, it just feels silly to use a compare validator and to say that the compare to do is a type check.

I would also like to see a Required property on all validator so I don't have to always put two validators to require something in a specific format.
# December 10, 2003 9:40 AM

Scott said:

Given that I've got a bunch of "ASP+" books sitting around, I'd rather wait until 2.0 is a little closer to release than have a bunch of outdated books.

Plus, with pre-release stuff who needs a book when there are n+1 blogs, newsgroups, and web sites out there hawking the 2.0 stuff. There are already XAML examples for cryin' out loud and that's not coming out until Longhorn in 4-6 years .
# December 10, 2003 1:05 PM

Jason said:

Thanks! Glad you liked it.
# December 10, 2003 4:44 PM

Jason Salas said:

Good point, but I'm interested in seeing Dino's work, in particular since it'll be after the New Year and hopefully incorporate some of the new features that were developed post-PDC.
# December 10, 2003 4:54 PM

Jason Salas said:

A type validator would be very solid!
# December 10, 2003 4:58 PM

Jason Salas said:

Is this the main reason? I just thought it was initial Alpha design that it "could" be dropped anywhere in the page and didn't have to wrap the WebPartZones it managed. I think that approach would be better design and lead to less problems down the road.

Of course, your point is very well taken - that on complex <TABLE>-based designs, you'd be wrapping essentially the entire document, and this could get tricky if UI stuff was dynamically written within. Great point.
# December 10, 2003 5:02 PM

Jesse Ezell said:

The IE web controls are all pieces of crap that have very bad object models, they should definately NOT be included in ASP.NET 2.0. However, rest assured that you will see a lot of functionality in ASP.NET 2.0 webcontrols that was not in 1.0 (including treeview).
# December 10, 2003 6:14 PM

Jason Salas said:

You think so? I'll agree that their use, either declaratively or programatically is far from simplistic, but you can do some pretty cool things with them.

And, they automate most, if not all, of the DHTML, which I like.

Maybe the suggstion should be:
"I'd like the see variations of the ASP.NET 1.x IEWebControls ship in 2.0, but completely reworked."
# December 10, 2003 6:28 PM

Alex Lowe said:

I haven't checked but you if you are not then you should really be placing these great features/feedback items in either the asp.net forums for Whidbey or the lists at AspAdvice.com to ensure that they are seen by the ASP.NET team.

Additionally, the IEWebControls that were originally shipped were not production quality controls and no one claimed that they were. They were, as I understand it, created to emulate parts of an old version of Outlook Web Access.
# December 10, 2003 8:44 PM

Jason Salas said:

Hi Alex,

Yeah, actually I split the difference and post comments like suggestions in as many places as I can. You never know who'll run across them, or when.
# December 10, 2003 8:50 PM

Jim Arnold said:

I learnt most of what I know about ASP/ASP.Net from ASPFriends. Of course, I've forgotten it all now, but it put me on the road to becoming a programmer, for which I am grateful.

Jim
# December 12, 2003 5:09 AM

Jason Salas said:

Hi Jim,

Me, too. I really grew in my ASP.NET knowledge and as a programmer. Exposure was great, amnd I've met a lot of really cool people who I'm happy to call friends.
# December 12, 2003 5:19 AM

Charles M. Carroll said:

I am quit proud of the YahooGroups @ AspFriends - they serve a lot of people well as their archives will show. Guthrie and Howard choose to fund AspAdvice covertly and that is their choice, and I choose to find ways to help the community (with some styles and topic choices I prefer) without their help.

Go to Http://www.aspfriends.com and there are quite a few. A quick look at the archives of
http://groups.yahoo.com/group/AspNetAnyQuestionIsOk
and
http://groups.yahoo.com/group/AspClassicAnyQuestionIsOk
reveals Mucho help you ignore because of your tendency towards subjective biased statements with little basis in fact.

While it is true some (but not all) of the AspFriends.com groups I "gifted" to others did not become very active that was the choice of the people I gifted them to squander the audience by not priming the lists.

I don't consider you a friend. That assumption is yours. Your story was not researched by the normal journalistic standards of integrity. Once you published that shallow piece that was a mockery of what journalism is supposed to be you lost all credibility as a journalist with me - and as a human who pursues excellence in their career.

You interviewed 2 people, omitted wuch of what I said, and did no research as to whether what each of us said was true, gathered no documents (the MS contract for example), treated Guthrie's words as if they were accurate with little verification. I really enjoy true Journalism (the kind where people actually research dozens of sources, verify facts and actually attempt to determine some truths not just publish portions of 2 interviews and call it journalism.

And not everybody has Blogs - some of us realize that updating and maintaining blogs is a time management trap that eats resources from other non-blog efforts. Read
Drive Yourself Sane
by Susan Presby Kodish, Bruce I. Kodish
http://www.amazon.com/exec/obidos/ISBN=0970066465/learnasp
to learn how you misuse language and make absurd statements that the actions of a couple hundred developers blogging somehow consstitutes the whole community blogging.
# December 12, 2003 11:39 AM

Charles M. Carroll said:

The code @
http://www.learnasp.com/freebook/learn/xmltextreader.aspx
is a great thing to run over any XMLfile. Answrs many questions about what the Reader object emits as messages when it encounters XML strutures.
# December 12, 2003 12:03 PM

Jason Salas said:

Hi Charles,

Thanks for commenting and for demonstrating the sterling level of professionalism, maturity, and candor that only goes to prove how ASPFriends ultimately went under in the first place.

That's certainly true about what you said about not everyone having blogs. That was a clever exaggeration of the speculation that everyone in the ASP.NET community blogs to prove a point, rather than an outright statement of fact. Apparently, you didn't pick up on that.

Thanks also for the book recommendation...I think one of my producers has this at work. I'll check it out. I'm appreciative of your criticism of my article and I'd like to hear specific recommendations about how you think my station's journalism may improve. I'm always happy to hear from readers how I or the people I manage may get better at what we do.
# December 12, 2003 5:07 PM

Jason Salas said:

Thanks for the link Charles! :)
# December 12, 2003 5:56 PM

Robert McLaws said:

Visio is dying with Whidbey. Whitehorse will more than likely support all of that stuff.
# December 12, 2003 6:12 PM

Jason Salas said:

Really? That's too bad - RIP. Actually, Visio might not have been the right fit. But some modeling tool would definetly help.

Thanks for the info!
# December 12, 2003 6:21 PM

Honey_BDynamo said:

Yeah, that MSNBC.com, what a crazy web site! Jason - thanks for your hard work. Keep keeping Guam informed!
-b
# December 13, 2003 2:01 AM

Jason Salas said:

Hi! Thanks for blogging with me! Where do I know you from...KUAM.COM? :)

I tried your link: http://photoalbums.wdwmagic.com/showgallery.php?cat=500&amp;ppuser=9378&amp;thumb=1 but it didn't work.
# December 13, 2003 2:04 AM

Robert McLaws said:

Definitely looks like ASP.NET. I think they're using HttpHandlers for the articles now, since I doubt each article resides in it's own directory. Pretty slick setup IMO.
# December 13, 2003 3:16 AM

Jason Salas said:

Yep...this seems to be a new trend...prettier URLs!

Either an HttpHandler or perhaps using RewritePath() in Application_BeginRequest in Global.asax.

ASPAlliance started doing the same thing with its articles recently (making IDs directory names) and I implemented something similar a few months back:

OLD:
http://www.kuam.com/news/story.asp?headline=1234

NEW:
http://www.kuam.com/news/1234.aspx
# December 13, 2003 3:43 AM

Jason Salas said:

Just an update...the code for ASP.NET in C# is here:

http://weblogs.asp.net/jasonsalas/posts/43303.aspx
# December 13, 2003 4:07 AM

Robert McLaws said:

Whenever I had to build an app that made heavy use of query strings, I'd pop it up in a window with no address bar after login. Then they couldn't fudge with the app if they knew what they were doing.
# December 13, 2003 6:10 PM

Jason Salas said:

Sweet. I did the same thing on numberous occasions - although a few crafty users were able to point it out from getting into IE's History folder and hovering over the page title.

Even though it's quite frequently recommended, I'm not a big fan of <input type="HIDDEN"/>.
# December 13, 2003 6:15 PM

Waseem Sadiq said:

I would like to add that it's not only the appealing part of the query string that drives site builders to using 'friendly querystrings' but also the fact that search engines treat these url's as directory indexes thus successfully indexing them in contarary to the bla.asp?foo=bar pages.

That was the original concept behind the Apache MultiViews trick anyway, not sure if the search engines have become smarter nowadays,

- Cheers
# December 13, 2003 6:39 PM

Jon Galloway said:

Hiding your address bar is by no means foolproof - Ctrl-N pops up a new window with default settings, including the address bar; if you're relying on hiding a querystring like ?superuseradmin=false, it's not tough to get around that.

We used a similar url rewriting technique on a CMS driven website recently - it's nice for other reasons, too. Search engines and website traffic analysis tools (webtrends, etc.), can catagorize by folder locations (even though they're virtual) a lot better than by querystrings, usually.
# December 13, 2003 6:44 PM

Shahn Hogan said:

Is there an example somewhere showing how to do this? Also can this be accomplished using ASP Classic too?
# December 13, 2003 7:53 PM

Jason Salas said:

Hi Waseem,

Thanks for the tip...I'd read before that there were certain search engine advantages advantages to not using the query string. :)
# December 14, 2003 1:58 AM

Jason Salas said:

Hi Jon,

Yeah...totall not foolproof!
# December 14, 2003 1:58 AM

Jason Salas said:

Of note: here's a good link about making search engine-friendly URLs: http://www.codetoad.com/asp.net_ma_searchenginefriendly.asp
# December 14, 2003 2:04 AM

Jason Salas said:

Hi Shahn,

Here's a sample, borrowed from Steve Walther's seminal work "ASP.NET Unleashed", which runs in the Application_Request event of your web app's GLOBAL.ASAX file:

public void Application_BeginRequest(object sender, EventArgs e)
{
string currentPath;
string customPath;

currentPath = Request.Path.ToLower();
if(currentPath.IndexOf("/content/") > 0 && System.IO.Path.GetExtension(currentPath) == ".aspx")
{
// the request is within the /CONTENT/ directory, so re-write the URL to appear to be a filename, rather than a URL with a query string.
customPath = String.Format("/mysite/content/templatefile.aspx?headline={0}",System.IO.Path.GetFileNameWithoutExtension(Request.Path));
Context.RewritePath(customPath);
}
}
# December 14, 2003 2:10 AM

denny said:

IMHO what I try to do is:

1) hide the "engine" I am asked to build "Web based applications" not web sites.
in word you don't get to see the name of the cpp files they used so why see the .asp / .aspx / .pl and so on ?

2) reduce the "attack surface"
things I am working on include striping off all the MS / IIS headers that annonuce what kind of server hardware / software is running that application, after killing off the
"IIS 6.0" and the "Powered By ASP.NET" and related headers the next thing is to make the cracker think the pages are just html if ican.
while a dedicated attach will figure out what I have done a casul peek at a site that only uses www.acme.com/this/that/foo/12637gf/at66/
and never serves up a foo.aspx or the like will be a tad less likeky to get targeted for more time cracking it.

and for some apps I toss up a frameset that grabs the /sss/ttt/sss stuff and just lets the user see: http://www.acme.com/
thats it, all the pages are called from under the master frame page thats just a big 100% * 100% frame.
so back to the "application" ness.... you just started "http://www.crm.acme.com/"
so thats all the URL bar should show in that case... as we don't want our customer data to be "Googled" .... so we add in https and no-cache and all that stuff....

# December 14, 2003 7:59 AM

Tim Marman said:

I don't think Google will spider URLs based on querystring...
# December 14, 2003 10:26 AM

Jason Salas said:

Hi Tim,

When my site's former naming convetion used ID columns in the query string, Google would index them this way, but it was sporadic. I think your chances will be better faking a filename or directory.
# December 14, 2003 4:25 PM

Scott Mitchell said:

Tim, Google will spider URLs based on QueryString quite nicely. For example, ASPFAQs.com - http://www.aspfaqs.com/ - has a single "render" page - ShowFAQ.aspx - which takes in a querystring value to determine what FAQ to show. Google has all the ASPFAQs.com FAQs available...
# December 14, 2003 6:44 PM

kemal said:

hi,

I always wandered how to do the "get rid of the querystring" thing.

does anyone knows how ?

kem
# December 14, 2003 10:58 PM

Jason Salas said:

H, Kemal

Here's a sample, borrowed from Steve Walther's seminal work "ASP.NET Unleashed", which runs in the Application_Request event of your web app's GLOBAL.ASAX file:

public void Application_BeginRequest(object sender, EventArgs e)
{
string currentPath;
string customPath;

currentPath = Request.Path.ToLower();
if(currentPath.IndexOf("/content/") > 0 && System.IO.Path.GetExtension(currentPath) == ".aspx")
{
// the request is within the /CONTENT/ directory, so re-write the URL to appear to be a filename, rather than a URL with a query string.
customPath = String.Format("/mysite/content/templatefile.aspx?headline={0}",System.IO.Path.GetFileNameWithoutExtension(Request.Path));
Context.RewritePath(customPath);
}
}
# December 15, 2003 12:11 AM

Mark Lapierre said:

For anyone interested, here's an <a href="http://www.alistapart.com/articles/succeed/">article</a> on A List Apart which talks about URL rewriting.

Their's was the method I'd used in the past when building PHP driven web sites.

<a href="http://www.alistapart.com/articles/tacklingusability/">This article</a> talks further about URL rewriting, as used in the redesign of their site not too long ago.
# December 15, 2003 5:27 AM

Mark Lapierre said:

*gulp*

Excuse the messed up links, I should have noted that .Text doesn't permit html in comments :/
# December 15, 2003 5:30 AM

Jason Salas said:

Also, note that in ASP.NET 2.0, you can manually control URL mapping for complex, unattractive URLs to friendlier addresses with web.config.

<urlMappings enabled=“true”>
<add url=“~/dir/dir2/filename.aspx?key=val&key2=val2” mappedUrl= “~/MySite/index.aspx”/>
</urlMappings>
# December 15, 2003 6:46 AM

Scott said:

This is neat, but hardly new. Apache has had mod_rewrite for quite some time now. http://httpd.apache.org/docs/misc/rewriteguide.html

It's nice to see a easy method of doing this in ASP.NET. All of the other methods I've seen were ISAPI based. Ick. I've got some querystring based parameters, nothing like "admin=false" or anything like that, that would be nice to hide from an aestethic point of view.
# December 15, 2003 9:45 AM

Tim Marman said:

I went through the same thought process awhile back, but Don Box made me see the light.

It is, after all, just XML. Why do we need (or even want) specialized classes for dealing with specific XML dialects?

I have a few more thoughts on this which I'll try to post later tonight.
# December 16, 2003 5:05 PM

Jason Salas said:

Hi Tim.

Good point. Do you not think custom server controls to generate - and now that I think about it, consume - RSS feeds would be a worthwhile addition to the Framework?

I think sometimes web services for this purpose can be a bit too top heavy. I wrote a client-side process of getting data from a remote source (http://weblogs.asp.net/jasonsalas/posts/43257.aspx) just to get around this.

Thanks for your feedback! I'm lookiing forward to seeing your other thoughts.
# December 16, 2003 5:11 PM

Jesse Ezell said:

They already have this, it is called the Xml control.
# December 16, 2003 5:37 PM

Jesse Ezell said:

PS: you would never use a server control to generate an RSS feed. That would imply it was inside a web form, which implies you are going to be outputting XHTML or HTML pages. It takes like 5 lines of code to create a http handler to export RSS from your site, I doubt anyone would really gain much from built in .NET support.
# December 16, 2003 5:41 PM

Jason Salas said:

Hi Jesse,

Thanks much for the feedback. I agree with what you said about it being tough to use a server control to generate XML only. However, maybe junior developers or people just getting into programming might appreciate the control. A top-notch coder like yourself would probably want to do it by hand, anyway. :)

I think it's possible to change the MIME type of a control to "text/xml", and then bubble up to the parent Page control and set "Page.Visible = false" to negate the default "text/html" headers, so that XML could be written, right?
# December 16, 2003 7:54 PM

Jesse Ezell said:

If junior level developers dictated every framework design, we would all be in a lot of trouble... especially if these junior level programmers you are designing for aren't capable of performing simple string concatenation. Those developers need training, not class libraries.

In any case, server controls are not intended for such things. You can do many unwise things if you really want to.
# December 16, 2003 8:37 PM

Scott said:

No offense Jesse, but thank god you aren't in charge of programming languages. We'd all still be programming in Assembly or punch cards.

I'll tell you the first thing that will happen if you don't include a class in the Web namespace; Someone will write a parsing class. Which is fine if the argument is "Should we include one in the Web namespace or should we include one at all either as a namespace or as a server control." I'd say, it doesn't matter. There will BE one whether Microsoft writes one or not.
# December 16, 2003 9:11 PM

Jason Salas said:

Hi again Jesse,

True, if development was left to be dictated by underlings and newbies, we'd totally be in trouble. But remember, the key element here is that the non-expert market is a major demographic to tap, and that means big money if MS can build controls that will get a company to take a small team with people without 17 credentials after their names (big $$$), and can still be productive and build effective apps. If they choose this path over Java, that's a major sell.

I'd venture to say that the majority of programmers out there aren't gurus.

In lieu of any formal marketing push at the moment, ASP.NET 2.0 seems to be about a move towards more declarative programming, which fits in with that crowd perfectly, while still satisfying those of us who like to write everything by hand.

Case in point: Macromedia Dreamweaver, circa 2001. Everyone I knew had a cpoy of that, and were building database-drven apps WYSIWYG-style, without knowing a thing about them or their internal processes.

For some, ignorance is bliss. And again, this can be very profitable.
# December 16, 2003 9:46 PM

TrackBack said:

Dewayne Mikkelson and his Radio WebDog, Shadow
# December 17, 2003 6:14 PM

Rick Strahl said:

Why do you think this wouldn't work? The default output caching mechanism is based on a URL plus whatever attributes you assign to the cache characteristics so there's I don't see a reason why it shouldn't work. Then again I haven't tried it either :-}...

# December 17, 2003 7:35 PM

Jason Salas said:

Hi Rick,

Thanks for commenting. I was thinking it would going into my little experiment, but I'm now stuck trying to figure out a way to test if it really does. :)
# December 17, 2003 8:21 PM

JosephCooney said:

I'm no expert, but from my understanding remoting has been deprecated in favour of Indigo (which is something I plan to get into in 2K4). I want to understand XML Schema better. I might try my hand at some avalon too. In the coming year I also plan to try get more acclimated with "products" like sharepoint and maybe biztalk.
# December 17, 2003 8:49 PM

Alex Lowe said:

I believe you could use performance monitor to monitor the "Output Cache Hits" counter. This counter should tell you if requests for the text/xml files are being served by the output cache or not.
# December 17, 2003 11:21 PM

Jason Salas said:

Thanks Alex!
# December 17, 2003 11:33 PM

Alex Lowe said:

A few thoughts:

1) Development at Microsoft is done with a number of different end users in mind. In other words, APIs and features are designed and chosen by taking the perspective of (these are just examples of the kinds of things you might see) Fred the VB 6 developer who is really a hobbyist turned consultant for small shops, Jim the experienced developer consultant, and Bob the enterprise architect at a Fortune 500. All of these people have different needs, wants, approaches to development, etc. so we try to cater to all of them as best we can. The important concept here is that no one is lopped off because they are not an enterprise developer, etc.

2) The XML server control does make it fairly easy to consume and display/manipulate XML as Jesse suggests. I'm not sure Microsoft needs to create the RSS consuming control simply because there are other controls that are more critical for customers. I think we'd all rather have the ASP.NET team spend time on something like a sweet menu control, etc. before they build an RSS control or controls. I think someone like Jesse should take the XML control and write a composite RSS control that exposes RSS specific functionality that the XML server control does not have. =)

3) As far as the Framework is concerned, I think the RSS specific implementations should be done by the community (who also controls the RSS spec) as they have been done to date. I don't see anything wrong with using RSS.NET (http://rss-net.sourceforge.net/). When our customers start telling us that they are building and using RSS in a business critical fashion then I know you will see RSS libraries in the Framework.
# December 17, 2003 11:47 PM

Jason Salas said:

Well put Alex...thanks for the feedback! I'm actually almost done writing a custom control of my own to do harvest/publish headlines for RSS.
# December 17, 2003 11:52 PM

Alex Lowe said:

Yes, Indigo is where it (distributed programming in .NET) will be at in the future.

I'm all for learning more about the enterprise server products as well. Office development is high on my list as is Tablet and other embedded/compact development.
# December 18, 2003 12:00 AM

Jon Galloway said:

Agree. If you do want to track links to your domain, you can get a start with google "link:domain" queries: http://www.google.com/search?q=link%3Aweblogs.asp.net

I think it's interesting to track who's linking to you, but I very much agree it's stupid to try to control it.
# December 18, 2003 1:37 AM

Fizgig said:

Or check the logs for all referrers.
# December 18, 2003 2:43 AM

Oddur Magnusson said:

output caching should work for any content types. I am caching dynamicly generator jpeg, png's, xml, text you name it !

tip : use application level tracing when you want trace info on requests other then html.
# December 18, 2003 8:40 AM

Phil Scott said:

NPR tried to have a link policy and the people revolted over it: http://www.wired.com/news/business/0,1367,53355,00.html
# December 18, 2003 9:25 AM

John Bristowe said:

Why not incorporate a Creative Commons [1] license into your blog? This should help alleviate some of the legal wrangling that your users endure.

[1] http://creativecommons.org/
# December 18, 2003 11:33 AM

Jason Salas said:

Hi Oddur,

Thanks! That's very helpful. :)
# December 18, 2003 4:12 PM

Jason Salas said:

Hi Phil,

That's a perfect example of what I was talking about! The fact that the company's police was called "brutally stupid" cracks me up! Thanks much!
# December 18, 2003 4:13 PM

Jason Salas said:

Just as a follow-up, I spoke with Rob Howard from MS, who confirmed that any data type can be output cached. Awesome.
# December 19, 2003 6:45 AM

Russ C. said:

I thought this one was quite good,

http://www.whitehouse.gov/robots.txt
# December 23, 2003 4:52 AM

Jason Salas said:

Good grief! :)
# December 23, 2003 5:04 AM

TrackBack said:

# December 23, 2003 10:08 AM

dinkum said:

innovative.
# December 23, 2003 3:18 PM

Snorrk said:

I'd like to point out that this could also benefit client side scripting. Instead of having to use hidden form fields the client side script could modify the viewState directly. I'm not sure if this is actually feasable - just pointing out the fact. I remember reading something about v2.0 better support of client side scripting - can't remember where though. Letting controls decide if they want theyre viewState typed could be beneficial - giving controls that require client side code to modify theyre viewState the ability to do so.
# December 23, 2003 7:30 PM

Jason Salas said:

There's a good thought. Whidbey does provide a lot of helpful integration with managing server-side data to the client, but I'd also like to see more of the opposite - supporting client-side data pushed into server-side logic.
# December 23, 2003 7:35 PM

snorrk said:

When the christmas rush is over I'm thinking about sitting down and writing something to make it easier to modify a Control through client side scripting.

I'm thinking a c# control base class that includes a ClientState dictionary (strKey, obj, type) ala example 3 and some client side js code to make working with it easier (as in ClientState[strKey] = value). The base class would write the ClientState into a hidden field (like ViewState is now) - but in a format that the client side js would be able to parse and modify. On postback it would verify that the returned ClientState is valid and pass it on to the control.

In short: Client side editable ViewState.

Anyone interested enough to comment? Or am I trying to solve a problem that doesn't exist?
# December 23, 2003 9:04 PM

Jason Salas said:

Hi Snorrk,

That's a great idea. I'd be interested in working with you on the theory behind it (after the holidays), but optimally, I'd like to see this ship as part of the .NET Framework, so such could be implemented for other controls.
# December 23, 2003 10:19 PM

Darrell said:

It's interesting that you compare Visio to other products. Rational XDE, while a good modeling tool, sucks up memory like Visual Studio .NET. I shouldn't have to get more memory to support a modeling tool that is based on the code. And Together for Visual Studio right now has locking issues on dlls. Which means it is basically worthless to me (as partners, we are working with Borland to fix it). So while Visio may not be perfect, it does produce valid UML and doesn't crash all the time.
# December 24, 2003 8:40 AM

Jason Salas said:

Hi Darrell,

Thanks for writing. I have Rational XDE, but can't run it...not enough RAM. I use Visio too, for UML projects, but to be honest with you, as a web dev, the vast majority of my documentation and visual modeling is done with he "UML-by-PowerPoint" method, or quick sketches on paper. In my opinion, again, true UML is a bit much for a typical web project, and makes for more work. I'd like a refined extension of UML wherein we can get our architectures down with a somewhat standard set of symbols and then get to work.

That's what I'm after...a quick and easy convention of modeling that will be understood by ASP.NET developers.

Have you tried PocketUML for VS.NET? (http://www.codeguru.com/net_general/PocketUML.html) It's supposed to be really good for C# projects.
# December 24, 2003 10:42 AM

Alex Lowe said:

In my Christmas Eve browsing, I came across this workspace (http://www.scottonwriting.com/sowBlog/RssFeed.htm">http://www.scottonwriting.com/sowBlog/RssFeed.htm) started/owned by none other than my favorite writer (Scott Mitchell - http://www.scottonwriting.com).

I also noticed that the XmlDataSource control in Whidbey has been modified to read both local *and* remote xml data sources making it ideal for reading RSS feeds. Once you've got the data in the XmlDatasource control, there are a variety of other server controls that making displaying the RSS text a breeze. =)
# December 24, 2003 1:49 PM

Jason Salas said:

Hi Alex,

Yeah I saw Scott's post yesterday, which is sweet! Thanks for your input...and Happy Holidays!
# December 24, 2003 5:20 PM

Robert McLaws said:

PS: Love your tag line dude. Talk about a jack of all trades! Do you develop while you're on the air?

Anchor #1: And in other news, shots rang out....
<loud screaming off camera>
<camera pans to Jason typing into the inset monitor in the newsdesk>
Jason: Sorry.... I just figured out how to post to my blog from Microsoft Word.
# December 25, 2003 4:48 AM

Robert McLaws said:

You may not want to go into the whole (ASPElite) thing.... as the name intails it was doomed from the start. Just what developers need is to appear to be MORE elitist then they already are.
# December 25, 2003 4:49 AM

TrackBack said:

# December 25, 2003 7:45 AM

Steve said:

So..... DataReader... or... DataSet?!?!??
# December 25, 2003 9:43 AM

Scott said:

re: ASPElite
Not to mention that it doesn't include ALL of the really elite. I know some guys that could program rings around most of the bloggers I read that would never join any kind of user group. :)

# December 25, 2003 3:07 PM

Jason Salas said:

Hi Robert,

Tell me about it...I've literally had to run at lighjspeed back to my office's workstation and make 7-second fixes to a database thing in the middle of commercials. :)

Or, even worse....make a mad dash back to the PC to put something online that I just teased to 80,000 people as, "if you'd like to see the budget bill in its entirety, visit our website RIGHT NOW at www.kuam.com". It's many hats to wear at once, but incredibly challenging and super-fun.
# December 25, 2003 5:16 PM

Jason Salas said:

Hi Steve,

Essentially, what I've seen is people debate the merits of each, and find out which one is more suitable for their needs. It was mainly a "forward-only vs. disconnected" argument. At least now people know.
# December 25, 2003 5:18 PM

Jason Salas said:

Just a follow-up...Steve Smith explains how he pulled off this trick with Regular Expressions: http://weblogs.asp.net/ssmith/archive/2003/11/06/36191.aspx
# December 25, 2003 5:40 PM

YvesReynhout said:

Try Enterprise Architect by http://www.sparxsystems.com.au/. It can roundtrip C# code and allows for defining your own UML elements & stereotypes.
# December 25, 2003 8:13 PM

Jason Salas said:

Thanks!
# December 25, 2003 8:15 PM

Shannon J Hager said:

can someone at MS please five Placewear a free Passport SDK and license so I can log in with having to remember ANOTHER long random username/password?

Or at least require them to put a "forgot your password?" link on the log in page?

Or host the WMV version on your own servers?

Or email me a link so I can download it?
# December 25, 2003 9:52 PM

TrackBack said:

# December 29, 2003 7:21 AM

TrackBack said:

# December 29, 2003 1:52 PM

mike said:

Couple of thoughts, off the record, so to speak. Per the "cheesy examples" :-), if I read this correctly, you're proposing that viewstate also store a token of some sort indicating the type of the value (?). What happens on the getter? Does it pre-cast the value back to that type? E.g.


String myName = “Jason Salas”;
ViewState[“aDudeInGuam”,System.String] = myName;

// ...

String aName;
aName = ViewState["aDudeInGuam"] // works
DateTime aDate;
aDate = ViewState["aDudeInGuam"] // throws ??

As for client scripting, it would be interesting to hear about the scenarios. I don't think typing is the issue as such, since javascript types dynamically. It's really an issue of simply getting to the data in viewstate -- or is it setting? But javascript has access to the page in its client form, with controls populated, so is the issue primarily with being able to access arbitrary, non-control data?




# December 30, 2003 11:34 AM

mike said:

* Robust
* Seamless

# December 30, 2003 2:17 PM

Scott said:

My criteria for deciding to use a DataReader vs. a DataSet usually has nothing to do with the "Forward-only vs. disconnect" It's usually a case of "size of the Result Set vs. What I'm going to do with the Result set(functionality"

# December 30, 2003 4:35 PM

mike said:

# December 31, 2003 4:07 AM

sux said:

that sux
# December 31, 2003 3:25 PM

r sux said:

that really sux
# December 31, 2003 3:25 PM

Scott said:

# December 31, 2003 9:26 PM

G. Andrew Duthie said:

Jason,

I use an agent for my book projects. It costs me a bit more than 7%, but I've never regretted it, as my agent is very good at negotiating contracts. Of course, given the current state of the technical book market, that's not saying a whole lot at the moment, but my agent has definitely paid for himself in negotiations, as well as in being the go-between when you have something I'd sooner pass off to him to deal with.

That said, I do wish I could use him for contracting stuff as well, but while he's got great connections in publishing, contracting's not his thing. There are, of course, contract placement agencies, but their cut tends to be bigger, often with less personal attention than you get in a one-on-one agent relationship.
# December 31, 2003 11:41 PM

Jason Salas said:

Hi Phil,

Thanks for the links. I remember hearing about the Carerra Agency, but I don't know how well they did. They're out of San Diego, if memory serves, and they contacted me when I was looking for a change of career about 1.5 years ago. Now that I think about it, when they first started out (about the time of the ZDNet article, circa Jan. '03), they only sourced talent for a set number of firms. They kinda bridged the gap between talent agent and corporate headhunter.

I wonder what they're up to now...
# January 1, 2004 12:52 AM

Jason Salas said:

Hi Andrew,

Good thoughts. I've always done the publishing thing solo, although it's got its ups-and-downs. I get more in the aggregate, but I've also been screwed on a couple of occasions. Thanks for sharing.
# January 1, 2004 12:55 AM

Wallym said:

Jason,

These "agents" are called staffing companies. They squeeze for a lot more than 7%.

The problem is that the majority of developers and programmers don't know how do the basics of running a business and get run over by the people that do.

Wally
# January 1, 2004 5:22 PM

TrackBack said:

# January 2, 2004 9:16 AM

TrackBack said:

# January 3, 2004 4:05 AM

TrackBack said:

# January 3, 2004 4:07 AM

Darren Winsper said:

I'd love to comment, except all I get is a blank page.
# January 3, 2004 5:18 AM

Shannon J Hager said:

It works here, but it's power-point-ish and I didn't make it past the third slide. I don't know that I've ever seen a PowerPoint presentation that was worth posting online without audio.
# January 3, 2004 10:02 AM

Jason Salas said:

Hi Shannon,

You should try the other slides...the good stuff kicks in after the 5th slide...some interesting architectural approaches used.
# January 3, 2004 10:23 AM

Shannon J Hager said:

I find it insulting when people post their presentation outline like this. PowerPoint slides are rarely more than headlines for sections of a talk. If this were actually "a presentation", then the person who gave this did nothing more than read these words, right? Well, I'm willing to bet that he said a lot more than what is posted there.
I see no difference than this and someone scanning and posting a handful of 3x5 notecards they listed the key points of their speech on and claiming they posted their speech online.
The outline you linked to does look like it could be an interesting one-page document if it were a single Word.doc or html page and wasn't confined to bullet points and the over-sized "see jane run" paradigm.
PowerPoint is fine when a presenter is speaking to a room full of people and wants them to see his notes in big bold letters in order to reinforce the ideas, but that just doesn't carry over into any other area for me. "Dick and Jane" books only had a few big words on each page but they at least had illustrations.


Darren: The page is IE only, other browser get a blank white page. That may be the problem you're having.
# January 3, 2004 11:37 AM

Scott said:

The most interesting thing about OOP is that it allows for a high degree of re-use. The most interesting thing about most OOP code is that it is never re-used.
# January 3, 2004 1:04 PM

SBC said:

Scott Ambler (Software Development mag) had an excellent article recently about 'The Right Tool for the job'. It compares various methodologies - http://www.sdmagazine.com/documents/s=826/sdm0312h/ (may need a free registration).
# January 3, 2004 1:18 PM

SBC said:

I love C# too.. where can one order that cool C# gear you mentioned?
# January 3, 2004 1:21 PM

Nancy Blachman said:

This page provides descriptions of more advanced operators than any
website or book I have run across (besides my own).

Many pages in Google Guide may appear to describe basic concepts, but if you read them carefully, you'll discover helpful insights.

Rather than telling you other things that I think are great about Google Guide, here's what users think about Google Guide. These comments and others can be found at
http://www.googleguide.com/page_1a.html

It might be unofficial, but it's the best online guide on how to use Google I have ever seen. Pay it a visit. --Robert Skelton, Google Answers Researcher and developer of SearchEngineZ and Google Fan

Exquisite and detailed. A treasure for beginners as well as veterans. A serious guide that is easy to use. Highly recommend. --Community Walla, Israel

This is an excellent tutorial to assist folks of any computing background get acclimated to the vast resources Google has to offer. --Bruce Pechman, Vice-President of the Atlanta PC Users Group and President of PowerPartners Computer Services

A comprehensive and up-to-date guide on searching Google successfully. --Kolyom, Israel
# January 3, 2004 1:26 PM

Nancy Blachman said:

Here's the URL I intended to include along with my previous message.

http://www.googleguide.com/page_10.html#advanced_operators

This page provides descriptions of more advanced operators than any
website or book I have run across (besides my own).
# January 3, 2004 1:30 PM

Mike Cole said:


Jason did a good job putting this together. I really like reading this kind of stuff…

I could be critical, perhaps, of 2 of the design patterns covered, however...

** Single Responsibility Principal **

I don’t like the limitation of 1 responsibility per object. I view objects as a collection of cohesive responsibilities. Moreover, an object can have hundreds of responsibilities as long they are cohesive, and we don’t have overriding reasons to decouple them. I believe following this principal can lead to an anti-pattern (whose name escapes me! I think – “Ghost”) which refers to systems made up of 100s of tiny objects which, while flexible (in a pick & choose way), do not provide any type of easy-to-consume façade.

Now, as far as you example goes… I would agree that the serialization of the object should not be a responsibility of the customer. Not because a customer object shouldn’t know how to serialize itself, but because by decoupling this responsibility we could address serialization in a generic way that could benefit all our business classes (not just Customer).

You know what, though? Some of my differences may be about semantics… I think the “packages” you describe are the “façade” that wraps together your single-responsibilty classes… So I think you have built into your process a solution to the anti-pattern I describe above… certainly, I can see some advantages.


** Open-Closed Principle **

I don’t really agree with the use of inheritance as it was demonstrated in the “Open-Close Principal – Refactored”. That is, I don’t agree with the reasoning cited for promoting Customer to a base class.

I would suggest that “fear of breaking the original class” is almost never a good reason to introduce inheritance.

Perhaps, an intermediate developer working on an unfamiliar, and very mature system – might have reason to make such a move. I think the question to ask is, “if I knew about Loyalty points when I first designed this system, would I have made customer a base class?” If the answer is no --- then you should not refactor it in this way to support your new requirements.

What happens when you have a new requirement for a “Preferred” customer? Do we now have classes like: Customer, LoyaltySchemeCustomer, PreferredCustomer, and PreferredLoyaltySchemeCustomer?

Now, don’t get me wrong – this set of classes might be completely appropriate – for example, if the responsibilities of a “preferred” class were so fat they really needed to be separated.

However, I would suggest here that fear of breaking the original class has resulted in an inheritance scheme which may not be appropriate – and may have resulted in a less adaptable and more error-prone system.

To summarize, I just think that inheritance is often an over-used “hammer” – I would think twice about introducing it, unless an original design (based on current knowledge) would have used it as well.

Just my 2 cents... enjoyed the document.
# January 3, 2004 4:54 PM

Edwin said:

I enjoyed the document. Refactoring is one thing that is beginning to interest me. It seems to help make code cleaner and more maintainable.
# January 4, 2004 8:44 AM

TrackBack said:

# January 5, 2004 2:38 PM

Robert McLaws said:

There are too damned many polls and things going on to screw up the system. Make it simple and straight forward like the SuperBowl and the NCAA Basketball Playoffs and the NBA and every other sports league on the planet. They try to convolute it with all this ither crap, and look where it got them: nowhere. HOLY CRAP it doesn't need to be that complicated.
# January 5, 2004 8:12 PM

Darrell said:

The problem with opinion polls is people see patterns that are not really there (is it a natural attempt to create order in the world? I don't know).

Computer polls remove this, but like you said do not take into account the fact that teams play differently on different days. Thus if team A beats team B, and team B beats team C, that does not mean that team A will beat team C, the fundamental fallacy in the computer ranking. I forgot who showed it, but someone created an example team matchup where, based on player ratings, A would beat B who would beat C, and C would beat A. Interesting.
# January 5, 2004 11:05 PM

Scott said:

two words, like it or lump it.

"Playoff system"

# January 5, 2004 11:09 PM

Phil Scott said:

This isn't why college football is so screwed up, it's why college football is so great! Months after the season is over, fans can get in heated arguments over USC vs LSU (vs Miama of Ohio? Boise St.?)

The Superbowl is almost an after thought of marketting and production for most on the US (cities of teams playing excluded of course). The level of debate, the human element and all that goes with it makes College Football one of the most intense and exciting things to play and be a fan of. You are looking at a system where 25% (at minimum) of the fans and players go out winners each year.

I don't know, maybe this is crazy talk from an University of Louisville fan who is resigned to be happy to simply make it to a bowl each year and hope for a win. I like my basketball with the tourney, and I like my football with it's wacky bowls and quirky rankings.
# January 6, 2004 12:26 AM

Russ C. said:

Javascript popups .. Grr

Oh and those little scripts that tell you your IP address and any other normal information that are supposed to make the owner look like an 'leet haxor'.

I hate Javascript slideshows ... If you want to show me a series of picture ... Please give me a forward and backwards button !

# January 6, 2004 3:40 AM

Russ C. said:

Oh forgot to say, regarding Copy and Paste, Whats wrong with using Ctrl+C / Ctrl+V ?
# January 6, 2004 3:46 AM

Jason Salas said:

Hi Russ,

Thanks for commenting. The site basically negated the copy-and-paste functions, so it basically copy-protected its content, so the keyboard strokes wouldn't work.
# January 6, 2004 3:50 AM

Russ C. said:

Have you got the URL for this site ? Iwouldn't mind trying to see how they did this ?

Purely for research purposes you understand ...
# January 6, 2004 3:59 AM

Jason Salas said:

Here 'tis: http://www.bondbuyer.com. The JavaScript file is at: http://www.bondbuyer.com/js/nocopypaste.js
# January 6, 2004 4:17 AM

Russ C. said:

Thanks for that .. and Yes , that is dammed irritating :)
# January 6, 2004 4:24 AM

Jason Salas said:

Yep...but hey...it does what it's supposed to do. Mission accomplished...to my dismay. :)
# January 6, 2004 4:37 AM

Darren Neimke said:

Clocks that spin!
# January 6, 2004 4:52 AM

David Bossert said:

Hi,

Disabling active scripting in IE's security settings does the trick. What bugs me is when they use redirects to require you to have sripting enabled just to get to the site.
# January 6, 2004 5:31 AM

Dr. Y said:

Hey,

Using firebird does the trick :-))
# January 6, 2004 6:44 AM

Scott Galloway said:

I love stupid little games where you get to build stuff and wage war...so Settlers (1-4), Rise Of Nations, C&C Generals, Emperor Battle For Dune are favourites...
# January 6, 2004 8:18 AM

Kirk Allen Evans said:

While everyone seems to want closure on the season, supporting a single playoff system, I love the duality of the BCS and polls. I love to watch ESPN, CBS, and listen to sports radio on a Saturday afternoon and listen to the rankings of each team. Georgia was #6, #5, and #4, all on the same day (USA Today Poll, Coaches' Poll, BCS / AP poll). If you give credibility to informal (yet recognized and predictable) sources such as the ESPN "College Gameday" rankings by Corso and Herbstreit and your team could possibly represent the entire top 5 teams.

Something that the BCS does correctly is the strength of schedule indicator. The strength of schedule variable is the indicator making it possible to have A defeats B, B defeats C, and C defeats A. The BCS is not some arbitrary points system, it is very statistical in nature.

The coaches' poll includes the intangible and nameless component, sometimes referred to as "style points." Georgia beat Tennessee at Tennessee... it takes a lot for a team to overcome 90,000 fans shouting "ROCKY TOP!" But Georgia didn't just beat Tennessee, they manhandled Tennessee. The BCS considers a win, but does not consider the amount of trouncing that occurred, how effective the defense was at shutting down a consistently succesful running game, how the offense improved over the past several games.

When LSU beat Georgia, some called it a fluke and said Georgia was limping. I watched that game, and LSU was the better team on the field, especially defensively. At the time, coaches' polls put Georgia at #4, as did BCS. When LSU met Georgia again for the SEC playoffs, LSU had drastically improved both in offense and defense and walked over Georgia. Georgia was a much better football team than LSU had seen earlier in the season, but LSU had improved at a higher rate than Georgia did.

And it is that intangible factor that makes the coaches' poll an essential part of the equation. The BCS might indicate that a team improved considering strength of schedule, but the coaches' poll indicates just how much a team improved considering how good the team they were playing is.

Besides, if we boil it all down to a playoff series, how does that improve the system? The only improvement that I see is that we get to see a couple more great games, but it leaves the question open for who the best team is. Should a wildcard game be included? Can a team be in a playoff game that did not win their conference?
# January 6, 2004 8:24 AM

Dennis v/d Stelt said:

Definitly, definitly Metal Gear on MSX

Metal Gear Solid is okay, but Metal Gear definitly ruled my world! Other great games were Usas and... oh, gotta go... really important meeting! Hahaha! ;)

Konami rules the world, as does MSX!
# January 6, 2004 9:04 AM

Tim Marman said:

Of all time? That's a tough one.

There's two games back on C64 which I've wanted to play again for the longest time: Mail Order Monsters (one day, I WILL do a remake if no one else does!) and Bruce Lee.

I had an NES, SNES, and N64, but I was usually more into PC gaming (I always had a better computer).

The Zelda series has always been a big favorite. Baseball Stars on NES - I love games that you can "build" with, so even for sports games where you could improve your team over time and there was some GM-esque strategy.

For similar reasons, the original Civilization, the original Railroad Tycoon... Hero's Quest 1: So You Want To Be a Hero (what later became the quest for glory series).

Police Quest 1, Gold Rush....

In fact, me thinks I will be going home to play one of these classics now that you put it in my head.

Moving forward, I wasted a hell of a lot of time in college playing Goldeneye and Red Alert 2, among other things.

Right now I have Madden 2004, C&C Generals and Civilization III installed on my machine.

Oh and Rise of Nations, but I haven't given it a proper playing yet. Seems promising, though - it's like a mix of an RTS and Risk.


I'm sure I'm missing a ton.... but.
# January 6, 2004 9:12 AM

Tim Marman said:

David beat me to it, but if you disable scripting you're all set :)
# January 6, 2004 9:17 AM

Josh Robinson said:

Still have to say that even with all the incredible games out now, I have spent more time playing the original Tecmo Bowl on NES than any other game. I used to have a whole notebook full of codes for each game of the season with each of the teams. Modern day replacement for Tecmo Bowl - ESPN NFL Football 2k4.
# January 6, 2004 9:18 AM

OmegaSupreme said:

My favourite pc games are Battlefield 1942, Americas Army and Call of Duty.

On the PS2 its pro evolution soccer 3.

Cant wait for half life 2 either, thats gonna rock.
# January 6, 2004 10:05 AM

Ed Kaim said:

My favorite RPG was "Final Fantasy I" (in the US series--I never played the Japanese versions). It was very simple and straightforward, but flexibile enough to feel like I was playing. RPGs I've played since (especially in the FF series) are all movies with a little bit of button pushing every now and again. I'm currently protesting the whole FF series because they've released a game with two version numbers ("Final Fantasy X II").

I also loved a game called "Romance of the Three Kingdoms III" by a company called KOEI. It was a turn-based empire strategy game that included battles with hexagonal, turn-based strategy combat. They're probably up to version 12 by now.

I was a big fan of Quake II. Even though games like Halo and Counterstrike have surpassed it in graphics, the simple gameplay of using a keyboard and mouse can't be matched with a console controller.

Currently. I spend most of my video game time playing "NHL Rivals 2004" on Xbox Live. It's the best sports game I've ever played, but I guess I'm biased as a hockey playing Microsoft employee.
# January 6, 2004 11:51 AM

Scott said:

Civ 3, it's the only game that gets consistantly re-installed every time I rebuild my machine. (hey, it's Windows!)

Well, now that I say that I notice that I've got Bejeweled installed on my PC and my Treo and I play it all the time going to work. hmmmmmmmm.
# January 6, 2004 11:52 AM

Josh said:

I was addicted to Superstar Ice Hockey (Mindscape) for C64. It was way ahead of its time. It featured multi-season franchise play (trades, drafting new players) which has just been added to most console games in the last couple years. It also had a great feature (depending on your perspective) that kept track of when you started a season game. If you lose the game and turn off the computer before it had a chance to save the results, it would detect that and count the game as a forfeit. And you couldn't just turn off every game in a season in hopes of getting last place (and therefore the most "improvement points" for draft picks, etc) because forfeits counted against your improvement points. Today's games give you the "option" to save your results, meaning you can go undefeated every season if you so choose.

Oh yeah, and I also spent countless hours on:
Kings Quest 1 & 2
Empire!
Civilization 1-3
Bard's Tale 1-3
Wasteland (pre-cursor to Fallout)
Railroad Tycoon

The list could go on. I'm still a big videogame fan, but I don't play them nearly as much as when those games were in their prime. My most recent addictions were Medal of Honor online multi-player (PC) and the Tony Hawk series (PS2).
# January 6, 2004 1:01 PM

Josh said:

Or how about File | Save As... (Html). Sure, its not as quick as CTRL-C, but you can still get at the content (by opening the saved file in a text editor).

The point being, they aren't really "protecting" their content, so why bother? It's just annoying.
# January 6, 2004 1:14 PM

Andy Smith said:

Every protection scheme I've ever seen is easily foiled by attaching a script debugger to IE. Sure that's beyond most people... but sure isn't going to stop me for more than a half a minute.
# January 6, 2004 1:39 PM

Jason Salas said:

Hi Ed,

Thanks for sharing! The Finaly Fantasy game that Suqaresoft put out for the oroginal GameBoy was way beyond its time. I got it for Christmas in '90, and I didn't as for it, and it blew my away at how deep it was. I've also got Final Fantasy X for the PS2, and it's amazing. Gran Turismo 3 ain't bad, either. :)
# January 6, 2004 4:15 PM

Jason Salas said:

Hi Josh,

Tecmo Bowl ruled! I played the 16-bit Ninetendo copy all the time.
# January 6, 2004 4:16 PM

Paul Glavich said:

My Favs :-

Mouldy Oldies (ie. from way back) include :-
Grid Runner by Jeff Minter on Commodore64
Elite on Amiga

Current titles include :-
Halo (Xbox)
# January 6, 2004 4:18 PM

Jason Salas said:

Hi Tim,

Gosh, the Bruce :ee title you mentioned makes me remember "Kung Fu" for the 16-bit NES, which was based on the same storyline as Bruce's movie "Game of Death" (I think...whichever one it was that featured Kareem Abdul-Jabbar). Classic!
# January 6, 2004 4:18 PM

Jason Salas said:

Anyone into Dark Forces for the PC (although I think they later made console games out of them), the Doom knockoff with the Star Wars theme, or WarCraft/SratCraft? I've only ever played WarCraft on a Mac, but it's hours of fun.
# January 6, 2004 4:19 PM

Jason Salas said:

Hi Paul,

Wow! I rememebr GridRunner! Almost makes me long for the days of the original Tron and ExciteBike.
# January 6, 2004 4:21 PM

Paul Laudeman said:

Battlefield 1942 and the arcade classics from yesteryear.
# January 6, 2004 6:09 PM

Shannon J Hager said:

chromeless pop-up ads are my least favorite JS trick.

I don't mind when people disable the right-clicks as long as they don't give me that "haha! you can't do it!" dialog. That kills me.

Anything that scrolls automagically usually bothers me, too, mostly because it is rarely done well.
# January 6, 2004 7:50 PM

mike said:

Another kind-of javascript trick is redirecting so that you can't use the Back button, or more accurately, if you do, you end up on the same page. Technically not necessarily a javascript trick (though it can be), but way annoying anyway. :-)
# January 6, 2004 10:59 PM

Cory Smith said:

Let's see, how about the following (honestly, this started as a short post ;-) ):

Amiga -
Jumping Jackson
Killing Game Show
Beast and Beast II

Atari 2600
Breakout
Space Invaders
Missle Command

Sega Genesis
Sonic Series

TurboGrafix 16
Bonk

Sony Playstation
Tekken

PC (yesteryear)
Bouncing Babies (a really old one ;-) where you are a fireman saving babies bouncing out of a window onto one of those catcher things three times into the firetruck - silly, but was fun)
Black Cauldron (one of the first Sierra games that made me say Wow! Adlib Sound! - probably the first game on the PC that made me think games on a PC could be great.)
Commander Keen (a lot of time wasted on this game)
Raptor (one of the coolest, even by todays standards vertical space shooter)
Wolfenstein (had to be on the list)
Doom (well, you know, had to be on the list)
Duke Nukem (was just downright fun with all of the vocals)
Need For Speed (first racing game that was fun)

PC (a little newer)
Quake Series
Warcraft
Dungeon Keeper
Age Of Empires (series)

PC (today)
Halflife/CounterStrike
Halo
Tron 2.0
Neverwinter Nights (with expansions)
Dungeon Siege

XBOX
Halo (duh!)
Dead Or Alive 3
Project Gotham Racing 2
Ghost Recon / Island Thunder
Magic The Gathering: Battlegrounds
Rainbow 6 III

I'm amazed at the responses you've gotten so far with the lack of XBOX game references. The games/graphics/sound are extremely impressive. Only one other person mentioned it. On top of this, XBOX Live is probably one of the most impressive game 'technologies' that have come along in a long while. It's just too easy to jump on, find someone to play against (don't get me wrong, it can use some improvements in the friends management department, but overall, it's pretty cool).
# January 6, 2004 11:16 PM

Nicholas Sabinske said:

DDR! DDR! DDR! DDR! DDR! DDR! DDR! DDR! DDR! DDR! DDR! DDR! DDR! DDR! DDR! DDR! DDR! DDR! DDR! DDR! DDR! DDR!

Dance Dance Revolution, on the Jap PSX and PS2!!!!!!!!!!

I'm the second oldest person I know that's still into DDR, but I do owe it giving my lazy butt some physical activity.

Anyhow, I'd have to say the ultimate SYSTEM for developers is the Gameboy Advance, which has a great games library and can sit there on your desk next to you every time you need to take a break ;)
# January 7, 2004 10:38 AM

Josh said:

Having never used XBOX live, and honestly scared away by fees, what makes it so much better than the free (Gamespy) alternatives we are used to with the PC and PS2?
(not trying to start a debate, genuinely curious)
# January 7, 2004 11:25 AM

Cory Smith said:

XBOX Live... consistant interface and performance across all titles. At $50 per year, not a bad deal. Also, since all games are using the same service, it drives the whole platform forward and ensures that cheating will be held at bay. Any vulnerabilities found, thus address, can take effect across all of the games. Gamespy does offer a consistant interface, so to speak, but not all games use the same mechanism. With PS2, each game is responsible for their own online content, connection and delivery. XBOX Live puts all of this into one package and ensure that you are getting what you paid for when you see the XBOX Live logo ;-) For the price of one game per year, I don't see that as being a bad thing.
# January 10, 2004 12:22 AM

Jay Goldsmith said:

Some of these comments here seem to be criticisms of PowerPoint rather than the material itself. I had no problem at all following the content and the examples, and can't see why you would need someone to actually stand up and talk about the slides. They look pretty self-explanatory to me.

If you look at the UML tutorials on the same site you'll see very few bullet points and lots of diagrams and sample code. I suspect Jason's avoided using UML here because he doesn't think a lot of .NET developers will know it - not that they need to understand design principles or refactoring.

The OCL tutorial and UML for Customers is good stuff :-) Never seen anything like that before. The advanced stuff like Test-driven Analysis & Design is a new idea, too, I think.
# January 15, 2004 10:28 AM

Jayson Knight said:

i played the original Legend of Zelda on NES for a small percentage of my life from age 9 on. metroid was also a big hit w/ me.

currently Halo has dominated most of my console experience, and i can'w wait for Halo 2.

i still feel obligated to drop a quarter or 2 in whenever i see galaga :-)
# January 15, 2004 11:22 AM

Paul Wilson said:

Seems like a case for clustering.
# January 17, 2004 8:39 AM

Christoc said:

I lived on guam for a few years, when I was 8-10, 86-88 I believe. For some reason I knew the submarine ride was closed, but I don't know why, as I haven't been to Disneyland since 95.... Maybe it was closed back then, I can't recall.
# January 21, 2004 1:17 AM

Christoc said:

oh, BTW :) Congrats on the MVP!
# January 21, 2004 1:18 AM

Jason Salas said:

Thanks! Yeah, it was a real polar day...happy then sad! Oh well, the world could be worse...maybe EPCOT's in the future. I haven't been there since '87! :)
# January 21, 2004 1:22 AM

Brian Desmond said:

Congratulations & Welcome aboard (no pun intended)!
# January 21, 2004 1:23 AM

Jason Salas said:

Clever! Thanks Brian!
# January 21, 2004 1:48 AM

Doug Reilly said:

Bummer about the Sub ride, but congratulations on the MVP!
# January 21, 2004 8:01 AM

Rob Chartier said:



Awesome about the MVP award Jason!
# January 21, 2004 12:50 PM

TrackBack said:

# January 21, 2004 8:16 PM

Chris Frazier said:

This sounds like an opportunity to build your own submarine...you do everything else, right? :P Congrats on the MVP award, Jas.
# January 22, 2004 10:30 AM

Jason Salas said:

Hahaha! Thanks Chris. Yeah, I guess I'll be having to recreate it if I want to see the sub ride again. Congrats to you, too!
# January 22, 2004 6:34 PM

Wallym said:

At least they didn't close DisneyLand like WalleyWorld..........

Wally
# January 22, 2004 10:11 PM

Phil Weber said:

Have you seen SNL's "Behind the Music" spoof featuring Blue Öyster Cult? ("I've got a fever... and the only prescription is more cowbell!")
# January 24, 2004 3:22 AM

Jason Salas said:

Hi Phil...yeah! That's a classic skit with Christopher Walken as "Bruce Dickinson" which they keep repeating, which was an off-handed reference to Iron Maiden's legendary frontman.

Also, the Simpson's spoofed BTM, doing "Behind the Laughter". Did you see that one? Hilarious.
# January 24, 2004 3:27 AM

Dave Chan said:

I agree. I found these very useful.
# January 24, 2004 5:50 AM

Ajay Juneja said:

I personally remember watching the original "Triumph of the Nerds" in 1996 instead of studying for my U.S. history final! I still got the second highest grade in the class on my U.S. history final somehow. But man, that thing was so valuable for me it's not even funny. I got to see the personalities of those who dominate silly valley (as I affectionately call Silicon Valley) -- and it's a great historical documentary. I read Nerds 2.01 when it came out in 1999-2000.

Knowledge of your industriy's past helps one figure out how to strategize one's future.
# January 24, 2004 6:28 PM

Ricky Dhatt said:

Admittedly, I haven't seen several of the episodes you listed, but for me the quintessential Behind the Music episode was TLC.
# January 24, 2004 9:36 PM

Manjeeva said:

Are u interseting Cricket ?
# January 25, 2004 6:09 AM

mike said:

I have Nerds 2.01 but have not read it. Now it's next. :-)

Some others I have read that I think everyone in the industry should read:

Accidental Empires by Robert Cringely
Catty, sometimes hilarious history of the PC industry, highlighting many of the occasionally odd characters who made it happen. This is the basis for the program "Revenge of the Nerds," but Cringely is a funny writer who's well worth reading in the original.

Hackers by Steven Levy
The definitive history of the rise of hacker culture. Although the book is old by now, he describes the ethos that eventually gave rise to what we now call the Open Source movement.

Insanely Great by Steven Levy
History of the Mac, which captures the phenomenon of Apple.

A Brief History of the Future by John Naughton
Account of the invention of the Internet, with clear and interesting stories about the development of the ARPANET, packet switching, USENET, etc.

Go To by Steve Lohr
History of programming, which is recent enough to touch on .NET.

Code by Charles Petzold
A layman's guide to how software works.

The Code Book by Simon Singh
History of cryptography, from ancient times through Enigma and into public/private.

The Chip by T. R. Reid
History of the invention of the microprocessor. We take it for granted now, but this book describes how remarkable it was that you could put an entire computer on one chip. Very readable.
# January 25, 2004 1:46 PM

Jason Salas said:

Hi Manjeeva,

Not really...I'm more interested in American football, baseball and basketball scores.
# January 25, 2004 5:31 PM

Brian Swiger said:

It's not down...but they are requiring partnership with them. You have to email or call and they will send you a differing URL with a sponsorship number as a querystring value that you pass to get the valid XML. The tech I spoke with did talk of bringing it down and replacing it with pay-only service. That'd suck for me.
# January 26, 2004 2:54 PM

TrackBack said:

# January 28, 2004 4:00 PM

TrackBack said:

# January 28, 2004 4:37 PM

Dennis v/d Stelt said:

Here's my hug!

And we get a bottle of cheep wine ;)
# January 29, 2004 7:39 AM

SBC said:

Quite a few of my clients have bought me lunches and gift certificates, the latter, which I promptly exchanged for books.. :-)
# January 29, 2004 7:51 AM

Paul Wilson said:

I worked for a consulting company about 5 years ago that pushed me to first get my MCSD. I was the very first one for this company in their Atlanta office, and the first overall on the new MCSD track of the time. Again, they pushed it, claiming that it was super important, so I did expect to really be thanked for it. What did I get -- movie tickets! What did they get -- I immediately started looking for other jobs and got my recognition (and raise) elsewhere.
# January 29, 2004 8:12 AM

Brad said:

That's an easy one ... they don't. We slog on in relative obscurity, being assigned more work and more responsibility for which we have demonstrated ability, but that's about it ...
# January 29, 2004 8:18 AM

Russ C said:

Congratulations on the MVP but reading your blog just made me realise that I've never heard the term 'core competency' outside of a Scott Adams book until today :)
# January 29, 2004 9:11 AM

Jason Salas said:

Hi Russ,

LOL! That's 2.5 years in graduate school for ya...
# January 29, 2004 9:16 AM

Jason Salas said:

Hi Brad,

Yeah..the tecnhies get more work, while the marketing morons continue to wear sunglasses inside, take 3-hour power lunches and play golf. :)
# January 29, 2004 9:22 AM

Jason Salas said:

One thing I do know about getting technical achievements...I may not get recognized for it, but they sure are quick to push me to doing talks and sales calls. Funny...
# January 29, 2004 9:26 AM

Ian Cooper said:

Well I'm working my way towards an MCSD.NET and I know of others that are. I think there has been a delay caused by the depressed market - why get the certs if there is no one to sell them to. .Net arrived when there were precious few new projects for folks to cut their teeth on. But that seems to be changing, new projects are emerging and certs seem once again to be a valuable addition to a resume.

So I think pronouncing the death knell for certs is a little premature
# January 29, 2004 9:53 AM

Derick Bailey said:

You guys are lucky. I get a "why didn't you get this done last year?" and a "sign this form that says you won't leave or quit for the next year, or we'll make you pay us back at the highest possible interest."
# January 29, 2004 10:11 AM

Derick Bailey said:

correction: "won't quit or get fired for the next year"
# January 29, 2004 10:11 AM

Scott said:

News flash Jason (har har, pun intended) :)

Certs are and always have been useless! Read on true believers!

http://www.lazycoder.com/article.php?story=200401291020509
# January 29, 2004 11:24 AM

TrackBack said:

# January 29, 2004 2:36 PM

Scott said:

Derick: That's exactly why I never let my work pay for any training, unless they force me to go, or certification tests I take (only happened 3 times). I knew a guy who was a CNE and refused to put that on his business card because the company he was with wasn't paying him enough to get the extra cred his cert would have given them. The CNE cert was one of the few that required you to actually KNOW something non-trivial.
# January 29, 2004 3:01 PM

David Eichner said:

Can you give me the contact info to get a sponsorship number?
# January 29, 2004 4:43 PM

Jason Salas said:

Hi Derick,

I've heard & read that IBM had a serious turnover problems becauses of this...people got jobs there and just worked there, and as soon as they got the comp,any to pay for training/certification, they split. A former empployer of mine made all staffers sign an agreement that said that we had to agree to work there as long as it took to get trained or certified, if the company provided for it.
# January 29, 2004 5:01 PM

Jason Salas said:

Hi Scott,

Good point. Many ocmpanies I know could care less if the people they employ have credentials, but they do pay for certification and training to use their people as sales drivers.
# January 29, 2004 5:03 PM

Jason Salas said:

Hi Scott,

I read your counterpoint, and I really enjoyed your thoughts.

Sure, the MVP program has taken off due to more people being awarded it than in the past, and with greater frequency (it apparently used to be only a few people selected annually, now it's several quarterly, if memory serves). It’s on paper an acknowledgement of one’s commitment to using and sharing knowledge of Microsoft products, and indirectly acts as a way of ensuring external promotional push, which is an invaluable asset in any industry.

Not a bad idea, and a classical approach to marketing dominance we’ve seen time and again from all types of businesses – I’ve been doing this for years with having people outside my newsroom link to stories on our site to get us free exposure.

There are pros and cons to which is better/more superior/carries more clout – the MVP program or genuine Microsoft certification – or if either is even worth it in the real world. Foremost among these is that the MVP is, as you pointed out, by selection only from Microsoft staffers, so one can't buy their way in like one can with certs. The MVP program is, when you think about it, that same model in reverse – Microsoft is not only rewarding the commitment of those who use its stuff, but it’s also securing their brand loyalty.

However, you’re right...this very reason makes the program suspect for political favoritism. There's certainly a justifiable argument that those granted MVP status (myself included) are MS kiss-ups and not really gurus. Still (and granted I can only speak for ASP.NET), I’ve yet to meet a person who’s been selected as an MVP who’s not what would be considered an expert and professional, being extremely knowledgeable, competent and conducting themselves in a mature, civil, friendly, helpful manner. So there is some distinction in the designation.

But in the end, you’re right – certs and credentials don’t really make the developer, its skills and the ability to use them that separates the men from the boys in programming. In the meantime, it’s all about stacking Ye Olde Resume in the hopes of opening a door with a good company or landing a sweet contract.

At any rate, keep up the good work...I enjoy all your blog posts...especially this retort! Write me back at jason@kuam.com if you want to rap about this some more, or if you post other comments to this subject. I'd love to read them. :)

Jas

Note: I got certified several years back and was just awarded MVP status myself a couple weeks back, and it's interesting to see the differences between the two programs first-hand. However, in either case I’m no more “Rah Rah, Microsoft” than I have been (or have not been) in the past because of it. And neither makes a developer that have them superior to those who don't.
# January 29, 2004 8:48 PM

Scott Mitchell said:

I've gone through the interview process twice - once for an internship and once for a full-tiime job. The vast majority of the questions I got were technical, and not brain teasers or riddles like those listed. There were some typical college CS classes, like, "Write the code to do a postorder traversal of a binary tree," "Given an list of words as an array of strings, write code to find all the anagrams," "Write code to implement C's atoi() function," and "Write code to determine if there exists a cycle in a linked list."

I also had some typical questions - where do you see yourself in 5 years, why do you want to work for this company, blah, blah, blah. Both interviews, though, were a boatload of fun - one up in Redmond and one in Silicon Valley.

>assume you have to market a new alarm clock for the
>deaf. How do you do it?

"Market" or "create?" If it was market, I dunno, run some ads in "The Deaf Quarterly," and on deaf-related sitcoms.

>suppose two spaces occupy two distinct values.

I know those words, but that sentence makes no sense. A space occupies a value? Usually things occupy spaces, not the other way around, no?

>how can we make Word better to lawyers?

What's funny, my lawyer uses some ancient version of WordPerfect that is DOS-based, he has to drop to the command line to run it and gets 80x25 resolution. No WYSIWYG, no mouse. But, man, he knows the keyboard shortcuts like nobody's business.
# January 30, 2004 12:50 AM

Jason Salas said:

Hi Scott,

Yeah, part of the challenge was sussing out what was trying to be said. I think you're right about the "create" over "market" question, but I do remember vividly one hiring manager asking about spaces occupying values, which I took to mean variables. It was basically a math question to have X, Y and Z, and have Z at some point assume X's value. Or something like that. I found the answer in a book I bought in the Seattle-Tacoma Airport "How to Get A Job At MIcrosoft"...on my way back home after the interview. :)
# January 30, 2004 12:55 AM

Uffe said:

The company where I work dont like to pay for the courses and tests nor the cert itself anymore, cause they believe ( the new boss anyway ) that " the only reason that we want certs is that it`s more easy for us to get another job" . Wouldn`t you ?
# January 30, 2004 1:14 AM

Jason Salas said:

Good point Uffe,

Why train when it's just setting you up for departure?
# January 30, 2004 1:18 AM

M. Keith Warren said:

I got asked to describe 5 server controls the ASP.NET team should add; then once I was done answering I had to tell the interviewer why they should not add them.

Another memorable one...Design an object model for poker :)
# January 30, 2004 1:27 AM

Jason Salas said:

Hi Keith,

I forgot about that one! I was also asked to describe a new server control for the ASP.NET team and break down the object model, and add in new features. The big challenge was that the hiring manager kept shooting these rapid-fire conditions at me while I was in the middle of my sentences.
# January 30, 2004 1:31 AM

M. Keith Warren said:

We must have been interviewed by the same woman! She kept interrupting me trying to guide (or misguide) my path of reasoning. Twas frustrating but considering the position, very neccessary.
# January 30, 2004 2:19 AM

Jared Evans said:

I was in talks with someone over at Microsoft about a possible interview and she had a tip for me:

Read this book: Programming Interviews Exposed: Secrets to Landing Your Next Job

There would be questions related to thing such as insert/delete a node or reverse a singly linked list. Also, you should be able to do the same for a doubly linked list. (To reverse a doubly linked list, just swap the next and previous pointers -- it's a trick question.) Other types of questions are to determine if a b-tree is valid (nodes on the left are less than nodes on the right), to reverse a text string, etc.
# January 30, 2004 2:36 AM

TrackBack said:

# January 30, 2004 2:43 AM

Scott Galloway said:

Personally, always found it about as funny as a nail in my hand...but I guess my cultural perspective is different...I don;t think it's quite as appreciated in the UK as it seems to be in the US
# January 30, 2004 7:05 AM

Jason Salas said:

Hi Scott,

Yeah, I've heard that Benny has a bigger fan club to the left of the Atlantic. :)
# January 30, 2004 7:35 AM

Cameron Reilly said:

a few of us were talking recently about how benny died a broke, lonely old man... he was dead for a week or something in his flat before someone noticed...
# January 30, 2004 7:43 AM

Jason Salas said:

Hi Cameron,

I've read that despite his success, at the time of his death Benny didn't own his own house or car.
# January 30, 2004 7:45 AM

Scott Galloway said:

But he wasn't broke...he left £7.5M, he was just really mean (http://www.vgernet.net/tpelkey/bennyhill/bio.htm)
# January 30, 2004 8:09 AM

Scott Galloway said:

I had a couple when I interviewed - One was about the number of cars going over the golden gate bridge, another was about telling which was the heaviest out of n balls in the fewest moves. I had a security one about secure key exchange (public / private key stuff) and an odd one about 'the perfect alarm clock'. Unfortunately, I was sick and jet-lagged, they may as well have asked me to count up to 10 in sumerian for all the sense they were going to get from me (I spent the next 2 days in a Seattle hospital)
# January 30, 2004 8:47 AM

Tim Marman said:

Or you could have a bunch of gay guys make-over the ne.... oh, right. Has to be original.

I hate reality television as well, but the one that let me down most was Joe Millionaire. As I've said in the past - they should have found a Bill Gates look-alike and brought HIM on there.

It's like put Halle Berry or Heidi Klum etc up there and tell me she's rich. Then tell me she's not. Big deal, she's still hot, you know?
# January 30, 2004 10:21 AM

Scott said:

I feel dirty knowing this but....

They always make sure that the reality people don't have access to a TV or radio and limited access to the internet. Every time I see that I think "that would never fly with a geek in the house. He/she would have some kind of proxyless WiFi connection leeched off the house down the block using a Pringles can."
# January 30, 2004 12:18 PM

Scott said:

"I've got a lovely bunch of coconuts."
# January 30, 2004 12:47 PM

Scott said:

Hi Jason,

Thanks for reading my dinky little articles. :)

My point, which I may or may not have made, is that certification is being replaced by the MVP program. I hope my retort didn't come off as slagging the MVPs. I have to say that MOST of the MVPs I've seen blogging would get my respect anyway. They don't need a title. I didn't need to see the little MVP logo at Scott Hanselmans site to know he knew his stuff. I knew it when I downloaded his TinyOS sample. I can't fault them for accepting the title, they get swag with it. Swag is like air to a geek. :) That being said, it seems to me that there is a wide margin for questionable MVP selection and a lack of clarity in what being an MVP actually means. For example, Chris Pirillo was recently made an MVP for "Digital Media". (http://chris.pirillo.com/archives/2004_01.html#008768)
I have no idea what that means? I should contact Chris if I'm having trouble getting WMP to play my MP3's? If I wanted advice on internet marketing, Mr. Pirillo would be one of the first people I would think of as a resource. If I wanted advice on SVG, I think DonXML(http://weblogs.asp.net/donxml) would be a better choice.

I've noticed questionable code and design posted on some MVP blogs which has made me think, "How in the heck did THEY get MVP status? What does MVP really mean?". (a an aside I see some of the same things in the Microsoft blogs) I realized that MVP doesn't mean any more or less than the old MS certifications. Some people seem to actively campaign for the title, which tends to give it a popularity contest type feeling.

Like I said, it's a win-win situation for MS. The carrot is dangled for people who aren't participating and the people that win have to keep participating to maintain the status. It's a lot cheaper than the cert program.
# January 30, 2004 1:18 PM

Jason Salas said:

Hi Scott! No sweat, and like I said, I agreed with the majority of your rebuttal, and you're right in the end. And no one's more surprised that they landed the MVP than me. Keep up the great work and great thoughts!

Jas
# January 30, 2004 5:53 PM

Jason Salas said:

Hi Scott,

Yeah, my jetlag had a little to do with the rapidity of my responses...coming from Guam, I'd been on planes for 19 hours straight, and then got into Seattle at 5AM, with the interview at 7AM. But nothing like yours. Hope everything worked out.
# January 30, 2004 6:05 PM

Jason Salas said:

Hi Scott,

Not like I want to talk bad about a man that gave me so much laughter, especially after he's passed on, but there was a big controversy about his politics and the fact that several people thought he was a bigot.
# January 30, 2004 6:09 PM

Alex Lowe said:

My old company put out a press release to the Associated Press. They also included a blurb about the award in a "Meet the company" presentation they did with new customers, etc.
# January 30, 2004 7:19 PM

Scott McCulloch said:

My Company uses it in all there marketing brochures, presentations, and uses it for requirements into the various partner programs at MS.

The only help I got towards the certification was the company paid for my exams after I passed each of them, which is okay since they are so expensive now.
# January 30, 2004 11:03 PM

Tejas Patel said:

Jason, sounds like a very good idea indeed. I think you should or someone else should approach a techie producer and director and start something up. Very nice idea indeed.

# January 31, 2004 1:04 AM

Tejas Patel said:

Although I cannot say what the task was and are assigned on a daily basis, I can say that my Boss allways comes up with work and which is "just very urgent" and "ASAP". People in my company comes up with problems and want the answer or solution straight away (they think computer people are God).

Well I quite enjoy the level of respect I get when I get it but I also enjoy the challenge that I face and the innovative ways I come up with to meet those challenges.
# January 31, 2004 1:12 AM

TrackBack said:

# January 31, 2004 1:26 PM

asdf said:

asdf
# February 1, 2004 3:13 AM

mike said:

Not sure what you mean by "rename" the GridView. GridView is a new (in 2.0), improved version of the DataGrid control. (What's to rename?) We'll also get a DetailsView control that allows you bind to a data source and to scroll through individual records to view and edit them, *and insert new ones*, yay.

As you probably know, the data controls will (can) use a new model whereby you put a data source control on the page that handles the connection and the query. You then bind controls to the data source control. IOW, data access is abstracted into a component (technically still a control) that you can bind any bindable control to. This will apply to the new controls like GridView, etc., as well to the older controls like ListBox, etc.

The new model is easier also in that the data source control and the control bound to it can talk and determine when it's time to data bind. No more 4-line Page_Load snippets to perform data binding.

And just to be clear, all old data-binding technology will work just fine.

Hmm. Got off on a tear there, sorry about that. :-)
# February 1, 2004 8:24 AM

Colt said:

Just add on Mike, we can always use (backward compatabile) DataList, DataGrid, GridView and DetailsView control in ASP.NET v2.0. FYI: http://aspalliance.com/88

Moreover, just want to mention 1 point and the subject of this blog might be:
The evolution of a control: DataGrid ==> MxDataGrid ==> GridView ...

(MxDataGrid is an "enhanced" DataGrid control and work like a GridView control and come with the ASP.NET Web Matrix project)

# February 1, 2004 9:03 AM

Colt said:

ooops...typo: backward compatible instead of backward compatabile
# February 1, 2004 9:05 AM

mike said:

True -- Web Matrix is a pretty good peek at many of the new Whidbey features. :-)
# February 1, 2004 3:40 PM

Jason Salas said:

Hi Mike,

It's halftime during the Suepr Bowl, so I've got about 30 minutes with which time to respond. :)

I know of the GridView control (a souped-up baby brother of ASP.NET 1.x's DataGrid), and I enjoy it, as well as the DetailsView for ASP.NET 2.0. But check out the article I linked to in the blog (http://weblogs.asp.net/rprabhu/archive/2004/02/01/65777.aspx) in which Raghavendra indicated that for WinForms, GridView has been renamed to "DataGridView". I'm not sure if this was just for WinForms or not.

Go Pats!

Jas
# February 1, 2004 8:23 PM

Raghavendra Prabhu said:

My post referred to just the WinForms control, not the ASP.NET one.
# February 1, 2004 10:59 PM

Christian Nagel said:

Jason,
Read my weblog entry and sample about extending CultureInfo. I've done a sample to create a Klingon culture (et-Klingon):
http://weblogs.asp.net/cnagel/archive/2003/07/06/9753.aspx
http://weblogs.asp.net/cnagel/archive/2003/07/06/9751.aspx
http://weblogs.asp.net/cnagel/archive/2003/07/06/9750.aspx
# February 2, 2004 1:39 AM

Jason Salas said:

Thanks much Christian! I was gonna mess with Pig Latin as a sample project, but I'll check out your stuff. :)
# February 2, 2004 4:09 AM

TrackBack said:

# February 2, 2004 5:19 PM

TrackBack said:

# February 2, 2004 5:19 PM

Mark Hurd said:

I'd guess it is something more simple like you can't inherit static (Shared) methods, so it's hard to fabricate the proxies.
# February 3, 2004 7:55 AM

Jason Salas said:

Hi Mark,

Yeah, I figured it was something like that. :)
# February 3, 2004 8:15 AM

Jay Glynn said:

I've been working with Wiley since they picked up some of the Wrox titles. Pro C# should be out in March. I have to say that working with Wiley has been a joy compared to others. Best of luck.

Jay
# February 3, 2004 9:18 AM

Tejas Patel said:

Good luck Jason.
# February 3, 2004 12:50 PM

Jason Salas said:

Thanks Jay! IO'm still steamed at not being paid and being ignored when trying to collect, but I've got some reliable friends that work there now, so everything should work itself out.

Jason
# February 3, 2004 5:30 PM

Jason Salas said:

Thanks Tejas!
# February 3, 2004 5:30 PM

Jason Salas said:

Here's the actual code for extending the CultureInfo class Christian mentioned in his reply above (thanks, Christian):

using System;
using System.Resources;
using System.Collections;
using System.Data;
using System.Data.SqlClient;
using System.Threading;
using System.Globalization;
using System.Diagnostics;

namespace Nagel.Demos.Enterprise
{

// derive from CultureInfo, so it can be used as a CultureInfo
public class EnterpriseCultureInfo : CultureInfo
{
private string name;
private string displayName;

public EnterpriseCultureInfo(string extendedCulture) : base("en-US")
{
if (extendedCulture != "et-klingon" && extendedCulture != "et-vulcano")
throw new NotSupportedException("The culture " + extendedCulture + " is not supported");

name = extendedCulture;

switch (extendedCulture)
{
case "et-klingon":
displayName = "Klingon";
break;
case "et-vulcono":
displayName = "Vulcano";
break;
}
}

#region Overridden properties of CultureInfo
public override string DisplayName
{
get
{
return displayName;
}
}

public override string Name
{
get
{
return name;
}
}

public override string EnglishName
{
get
{
return displayName;
}
}
#endregion

// also needed for a full implementation: date/time format, Klingon calendar, number format...

}

}
# February 3, 2004 7:19 PM

Dody Gunawinata said:

I started in 2000 on the PDC bits and Code Behind never grow on me. I still hate it with the same vigor now as it was then :)

# February 4, 2004 5:26 AM

Scott Galloway said:

Wow...never had that experience, I use to code ASP with VBScript classes, I always hated in-line coding - especially as in ASP 2.0 they had a big performance hit (the context-switching issue). I jumped from ASP to Jave then to ASP.NET - sode behind seemed far more straightforward to me...
# February 4, 2004 8:06 AM

Scott said:

All the ASP projects I worked on, at least the large projects, all used the code-behind paradigm anyway by placing all the business logic in VB COM DLL's and calling them from the ASP page. Most of my ASP pages looked like this.
<%
set oBO = Server.CreateObject("ApplicationName.BizObjects")
oBo.doStuff() ' paraphrasing, I often had several different methods for each piece of functionality

set oBO = nothing
%>

Well, I usually had some ASP code in the page as well to manipulate the HTML. But most of my drop down list creation waas handled with a call to "createDropDownList(byVal rs as ADODB.RecordSet, textFieldName, valueFieldName)". A short stint in the Java/JSP world made the transition to C$ and ASP.NET a lot easier; Helped me get into a more pure OOP state of mind although you can still see some procedural linerarity in my code.
# February 4, 2004 9:50 AM

TrackBack said:

# February 5, 2004 4:09 AM

Frans Bouma said:

"...therefore completing the “Wine, Women and Song” trifecta."
:D
I don't think a lot of people call the E-A powerchords hetfield is hammering on his jackson V guitars 'songs' ;)
# February 5, 2004 5:00 AM

Jason Salas said:

Ouch...that one hit home...I've been covering Metallica songs since I was 12 (I'm 29). Keep in mind that most blues music (from which lots of metal, including Metallica, is derived) is based on the 1-4-5 chord progression, which by its nature isn't that complex, but leaves lots of room for improvisation. =-)
# February 5, 2004 5:06 AM

TrackBack said:

# February 5, 2004 10:48 AM

Tejas Patel said:

That's a bit of pity Jason. Well atleat you can access it at office. i am sure it won't be that difficult for you as you would be found in the office 80% of your time :). While having heard your story I will try to have a bit more patience why my ADSL connection is playing up.
# February 5, 2004 7:53 PM

Cameron Reilly said:

i saw a stat yesterday stating that only 8% of Australian homes currently have broadband. Even though I've only had access to it for about a year, I can't imagine life with out it. Or without my 802.11G home network either.

But, let's look at the upside of not having broadband... oh wait, I can't think of any! :-)

Dude, have you ever thought about moving?
# February 5, 2004 8:38 PM

Jason Salas said:

Hi Cameron,

Yeah, I've thought about moving somewhere else on island, but I live in a really nice, quiet, crime-free neighborhood with stores and schools close-by (and I'm only 5 minutes away from work), so it wouldn't offset not having broadband to ship out.

It's funny...Guam is growing in broadband use...about 11,000 people have it locally out of the 30,000 potential customer base, so it's gotten better (I used to work at a large ISP here).

However, if I do make it out to the States...
# February 5, 2004 8:48 PM

Jason Salas said:

**UPDATE**

Thanks much to Paul Murphy (http://blogs.aspadvice.com/pmurphy/) for confirming my theory about the requirement for an instantiated object. He responded in the ASPAdvice mailing list:

--------------------------------
You can not create a Context around a static method (since there is no instance how to you wrap it?). Therefore the wrapper attribute that does the serialization can’t be applied to the method. If you want to read more about it dig into the System.Runtime.Remoting.* namespaces.

Paul
# February 6, 2004 2:28 AM

Scott said:

Yeah, your only other choice besides moving is probably a satellite connection. Those aren't that great though, lots of latency.

re: great thing about not having broadband. - when I first moved to Seattle, I didn't have anything but a local free ISP for dial up. I noticed that I tended to be a lot more picky about what I surfed. Quality over quantity. I spent a lot more time reading and programming. hmmmmmmmm, maybe I should call Comcast and cancel?

Using SQL Enterprise Manager over dial up is an experience not unlike being on the receiving end of a root canal without the benefit of novacane. Heck, the same could be said for using EM over broadband.
# February 6, 2004 9:58 AM

Paul D. Murphy said:

yeah. I agree. I've been in the email marketing business for 3 years now and the 1% that does things wrong has grown to about 20%. It has made it virtually impossible for us legitimate marketers to deliver campaigns while ensuring that only those who are willing to be deceptive and criminal are operating with impunity across the world.

It's a massive problem and it won't go away until companies subscribe to personal data instead of people giving a copy of personal data to companies.

I can't wait for Longhorn.

Paul
# February 8, 2004 3:17 PM

TrackBack said:

# February 11, 2004 3:35 AM

TrackBack said:

# February 11, 2004 4:37 AM

Wallym said:

Jason,

The reason that I see why they aren't using FreeText and such is that MS's fulltext engine in Sql2k is not very good. It takes an amazing effort on the part of the CPU to get it working. Yukon's full text engine is suppossed to be much improved.

Wally
# February 11, 2004 5:46 AM

Derick Bailey said:

The actual indexing may take some cycles, but it only happens on the schedule that you set. Any good DBAmin should know how to setup the schedule to run during the lowest traffic times, and create a good fulltext index for searching.

As for the actual fulltext searching in SQL Server 2K, it's actually part of Indexing Service that gets called to do the searching. If someone complains about SQL 2K fulltext, but also uses the Indexing Service, then that person is full of crapp.

I personally think that the fulltext searching in SQL2K is quite nice. But then, I actually spent a few minutes to write a query parsing engine that builds proper fulltext search queries based on user input.
# February 11, 2004 9:24 AM

AndrewSeven said:

Never whistle while you are pissing.

-Fictional character in a book by R-A Wilson.




# February 11, 2004 10:53 AM

TrackBack said:

# February 11, 2004 10:53 AM

TrackBack said:

# February 11, 2004 10:53 AM

Scott said:

I've got two, one inspirational and one that simply reminds you of the "big picture" in any project.

"Imagination is more important than knowledge" - Albert Einstein

"When you are up to your ass in aligators, it is difficult to remember that your initial objective was to drain the swamp." - Unknown
# February 11, 2004 11:16 AM

David Cumps said:

If they make better or worse managers, no idea. But the mental if then structure probably exists in a lot of us programmers.

But sometimes, thinking with logic isn't always good, there seems to be different kinds of logic. What seems logic to you may be completely wrong to someone else, and vice versa.

I do believe programmers are a lot mor goal driving, with long term plans (like when you code something, you think in the future as well) and also, our minds thinks in a form of statements, which kinda creates order (or chaos in the eyes of others)
# February 11, 2004 2:40 PM

Jason Salas said:

Hi guys,

Good thoughts. I'm pondering moving to FTI myself, but in doing so I'll need to migrate the entire SQL Server DB we use now (only about 9,000 records, with multiple NTEXT fields) to a different database server.

Has anyone seen any creative alternatives to using a good classical search?
# February 11, 2004 6:59 PM

Jason Salas said:

Here's one of my personal faves form the late Benny Hill:

"The wise man believes only 50% of what he reads, but it is the genius who knows what 50% to believe."
# February 11, 2004 7:02 PM

Scott Galloway said:

Hmm...although the Microsoft way of interviewing is often seen as the pinnacle of Tech Interviewing, it's not perfect by any means. Have a look at "How Would YOu Move Mount Fuji?" - it gives some decent insights into this method of assessment as well as some pretty decent opinions as to what works and what doesn't with this approach...
# February 11, 2004 7:09 PM

Jason Salas said:

Hi Scott,

I agree, the MS interviewing process is admired by many, but certainly its still a fallible machine (is anything perfect these days?). However, I did learn a lot from my trips to Redmond, about asking questions and really pushing a candidate to think.

My biggest challenge is getting someone to really experience what it's like to work in our hectic environment, and really expose them in some fashion to the problems we've got, as they're likely being brought on to solve some of them.
# February 11, 2004 7:43 PM

Stephane Dubois said:

Thanks for the good word on our web service test page design. It may not serve much purpose for the guy who goes straight to the WSDL but it helps those less familiar with it.
Best Regards
-Stephane Dubois
Xignite
# February 11, 2004 9:01 PM

Jason Salas said:

**UPDATE**

I wrote Juval Lowy directly and he confirmed that this would not work, as (1) returning a type from a WS call requires the assembly to be local to the client, and (2) such would arguably be a major violation of most security and versioning models.

I was actually thinking of using this as the basis for an app I was going to share with the members of my user group - developing a core API and letting them derive from it for their own implementations.

Oh well, back to the drawing board. 1 out of every 10 every crazy ideas I get like this actually works. :)
# February 11, 2004 10:38 PM

TrackBack said:

# February 12, 2004 1:31 PM

TrackBack said:

# February 12, 2004 2:18 PM

James Geurts said:

Via an article on This is Broken (http://broken.typepad.com/b/2004/02/frontpage_banne.html) there is an error in the HTML code in the ad. There should be no slash in the <p> tag on line 28.

Kind of makes me want to believe that FrontPage will be better...
# February 12, 2004 7:36 PM

Jason Salas said:

Ha! I wonder who created this ad - a technical firm or an ad house. Ifd it's the latter, that's what happens when you leave a technical ad to artistic people.
# February 12, 2004 8:15 PM

R said:


Not the first time I've seen typos in Microsoft Ads. There's one that keeps appearing in DDJ magazine, and CUJ that not only mis-spells webService as webServce - in a code sample; it has done since the advert has been out (several months).

I sent a mail to feedback@mic.... but it's never been fixed. Guess they just don't care ..
# February 13, 2004 2:08 AM

Ron Miller said:

Hi Jason:
I appreciate you quoting my post, but you should know that I wrote that based on a news story about the impending release of FrontPage 2003.

I haven't actually looked at or reviewed the program, so I can't say with any authority that these changes made it in, or that they lived up to the pre-release hype.

Regards,
Ron Miller
# February 13, 2004 7:23 AM

Jason Salas said:

Hi Ron,

No problem..I figured that. No intention to hold you responsible for the features the program did or didn't have. :)
# February 13, 2004 7:35 AM

Michiel said:

Well, what about WebML? http://www.webml.org
# February 15, 2004 11:03 AM

Jason Salas said:

Hi Michiel,

WebML is great, but NOT specific to ASP.NET, which is what I'm after.
# February 15, 2004 11:23 PM

Jeff said:

I agree... it'd be nice to see something with a little more meat to it. I was really interested when MS published the "case study" on Match.com and its conversion to .NET, but it was really weak in terms of getting to what they were really doing with architecture. I suppose there's only so much you want to reveal in that case (the dating site market is pretty competitive), but something more than an assembly and server count would've been nice.
# February 17, 2004 8:30 AM

TrackBack said:

# February 17, 2004 2:02 PM

Mike Gunderloy said:

Don't worry, you'll find the new AdventureWorks sample database to be just to your liking, I think. If you want a preview, download the SQL Server 2000 Reporting Services evaluation, which includes the first (I think) public release of AdventureWorks.
# February 17, 2004 10:04 PM

Jason Salas said:

Good news to know! Thanks Mike.
# February 17, 2004 10:48 PM

mike said:

The problem for those of us creating samples that talk to a database is that we often don't want to focus on the underlying database, but rather on whatever it is we're illustrating -- ADO.NET code, whatever. So we pick a database that we figure the largest percentage of our reader base will be familiar with. IOW, Northwind. Even when Yukon comes out with AW, Northwind will still be the best-understood database out there, and so we'll probably continue to use it for examples that need to use just any old database you happen to have handy. Unless, of course, the point is to illustrate some specific feature of Yukon or of AdventureWorks itself.
# February 17, 2004 11:21 PM

Jason Salas said:

Hi Mike,

Oh sure....and I agree, testing with the Northwind or Pubs DBs is a snap because they've been in use for so long that we can recall the recordsets from memory, so if we connect and call data, we can be sure a script works.

I was just hoping for a new set of data from perhaps a different industry, using a different DB schema and table configuration - just to be honest. :)
# February 18, 2004 12:30 AM

Robert McLaws said:

Northwind sucks. It has table names with spaces, it has stored procedures prefixed with sp_... it's a horrible example of how to design a database. Good to know it's gonna get better. Thanks for the heads-up Mike!
# February 18, 2004 1:12 AM

TrackBack said:

# February 18, 2004 4:30 AM

TrackBack said:

# February 18, 2004 4:30 AM

SBC said:

go for the DVD instead of CDs - you get a $300 rebate and lighter mail packages..
# February 18, 2004 6:25 AM

Jason Salas said:

Lucky me...I got the DVDs. I should have mentioned that. :)
# February 18, 2004 6:28 AM

Dennis said:

Too bad Microsoft has filed patents on their use of XML in Word....
# February 18, 2004 9:12 AM

Scott said:

You're right about the table names with spaces Robert, but not about the sp_. At least not on any of my installs of SQL 2000.

I think that pubs is fine to use for an example. Like Mike said, you don't want your "student" spending 1/2 their time or more trying to figure out your DB schema. But neither Northwind nor pubs are good examples of what SQL 2000 can do. Neither of them use user defined functions or types. Heck even the views in both of them are pretty simple. I'd include at least one partitioned view, those are pretty powerful IMO.
# February 18, 2004 1:56 PM

James Geurts said:

You might want to take a look at Salamander .Net Linker and Mini-Deployment tool (http://www.remotesoft.com/linker/index.html). It looks like it'll turn the IL into native code. "The framework appears as an integrated part of your own application"
# February 18, 2004 11:59 PM

mike said:

BTW, this seems to be a popular topic. Joel Spolsky wrote a piece on "can we have a linker?", which generated lots of commentary. Just a sample, starting with Joel himself:

http://www.joelonsoftware.com/articles/PleaseLinker.html

http://discuss.fogcreek.com/joelonsoftware/default.asp?cmd=show&ixPost=108812

http://weblogs.asp.net/pleloup/archive/2004/01/29/64541.aspx

http://radio.weblogs.com/0001011/2004/01/29.html#a6440
# February 19, 2004 12:32 AM

Jason Salas said:

Thanks Mike! I'm thinking about working on a consideration note to the ASP.NET team to possibly make this available.
# February 19, 2004 12:46 AM

Jason Salas said:

Thanks a bunch James. Good tip. I've been thinking about this more and the possibility of having a somewhat-portable runtime and hosting environment, and if it could fit on a disk or somewhere around there.
# February 19, 2004 12:48 AM

Jason Salas said:

**UPDATE**

Here's a good article that's along the lines of what I was talking about:
http://www.microsoft.com/belux/nl/msdn/community/columns/desmet/hostaspnet1.mspx
# February 19, 2004 1:41 AM

Jason Salas said:

**UPDATE**

A Microsoft PM that owns the Globalization subset of the ASP.NET feature set was nice enought to point me to a working sample of how to add new custom cultures in order to tap into resource files: http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=a193b952-2e44-45ed-811d-c1fabf2f6e8a
# February 21, 2004 12:28 AM

Christian Nagel said:

There is a List class in the namespace System.Collections (this is what the error said). This List class is private.
# February 22, 2004 7:06 AM

Jason Salas said:

Yeah...I got that part. Again, I understand about the List type being inaccessible, but the error code didn't really imply that. :)
# February 22, 2004 8:46 AM

Christian Nagel said:

The error code said "'System.Collections.List' is inaccessible due to its protection level". I think this is completely fair, because System.Collections.List is a private class.
However, you just wanted to use the class System.Collections.Generics.List. This list was inaccessible because you didn't include the namespace.

Maybe the error should say something like "if you want to use 'System.Collections.List' this class is inaccessible due to its protection level. If you want to use a List class from another namespace, import the namespace" ;-)
# February 22, 2004 9:42 AM

Rex John said:

Hey Jason Salas & M. Keith Warren ,
What position did you guys interview for?
Rex John
# February 22, 2004 9:55 AM

Jason Salas said:

Hi Rex,

At the time, I was up for a product manager position on the Office team.
# February 22, 2004 6:11 PM

Jason Salas said:

Right - I agree, the error code makes sense, but it's confusing as to the real nature of the problem with the code.
# February 22, 2004 6:12 PM

Gavin Joyce said:

Great idea Jason, I'd buy one in a snap.
# February 23, 2004 6:01 AM

Firoz Ansari said:

You can use any key mapping tool for this purpose.
Take a look at WinKey 2.8. You can download it from http://download.com.com/3000-2344-913626.html?tag=lst-0-1
# February 23, 2004 8:33 AM

Scott said:

Yeah, but you have to remember what the keys are Firoz.

Maybe we should pressure this company to release an overlay for Visual Studio and the different languages?

http://www.thinkgeek.com/computing/input/gaming/5fed/

I know they have overlays for Word and Excel.
# February 23, 2004 12:39 PM

Dumky said:

Why change the hardware?
Add a C# "mode" to a regular keyboard using a rarely used key as the toggle, or more generally use macros...?
# February 23, 2004 3:24 PM

Jason Salas said:

Hi Firoz,

Oh sure...but I'm one of those people who would prefer a set piece of hardware that had specific purposes in mind.

Also, should anything ever happen to my PC and the settings get erased (perish the thought), I'd have to do the whole thing over again. I wouldn't mind paying extra for new hardware that someone built that laid everything out for me.

Case in point: varying joysticks for flight sim and racing games.

In other words, I'm an idiot, I need help and I'm one the people who would buy this type of thing. :)
# February 23, 2004 7:23 PM

Jason Salas said:

Hi Scott,

Now there's an idea...I might shoot this by a couple of product managers I know for their input....
# February 23, 2004 7:24 PM

Mike Tanguileg said:

Yes, Jason, I'm still at Microsoft. I'm very interested in your localization project, as I have had to do some localization frameworks myself here. I'd be very interested in what you come up with.
Also, I'd certainly make my web service available to you, or anyone else for that matter. Got to keep the Chamorro culture alive, and this is one way I can do it.
# February 25, 2004 5:03 PM

Paul said:

Hi guys, I'm applying for an internship (summer) as a software design engineer. I have amazing background in mathematics and problem solving. I was a former International Mathematical Olympiad participant.

But the problem is, I've only experienced C++/programming for a year. So my computer knowledge really isn't THAT great. My worry is that they ask me some technical things about C++ or computer knowledge and I wouldn't have a clue.

I can ace the riddles/logic questions with ease, but technical C++ questions I don't think I can do too well. I've taken 2 courses in C++ so I know everything up to linked list/polymorphism...ect. But I really haven't delved too deep into techniques/tricks.

Am I in a bad situation?
# February 26, 2004 10:46 AM

Jason Salas said:

Hi Paul,

Just be yourself and answer honestly. Try and work out whatever strange problems they throw at you and give it your best shot. The worst thing you can do is try and lie your way through it or give up right away. Good luck!
# February 26, 2004 5:41 PM

Paul said:

I've sent in my electronic resume about a week ago and haven't heard a phone call yet. Does this mean there is no hope? Generally how long is the time between sending out the resume and receiving a phone call (if Microsoft is interested)?

Thanks.
# March 1, 2004 10:16 AM

Jason Salas said:

Paul,

This is the gray area. I've known people who've sent their resumes and get nothing back for months. The company is constantly shifting and evolving, and departments get new hires positions and close existing ones all the time.

Remember, Microsoft is a huge corporation, so they literally get thousands of applications a day, which stack up over time.

Sadly, the only thing you can do it wait. :(
# March 1, 2004 7:36 PM

ware said:

well all i know is that benny hill has to have been one of the funniest comedians of his time, i still really crack up laughng when i see a skit involving Fred Scuttle.
I think it's a shame the way he died alone but can't we just remember the man for how funny he was and how he managed to bring a smile to everyones face?
# March 2, 2004 4:41 AM

Paul said:

Is it also the same for interns? When do people applying for summer interns (college student) get interviews?
# March 2, 2004 1:29 PM

Jason Salas said:

I think if you have to openly apply for an intern job (i.e., you're not contacted by a Microsoft recruiter or your school doesn't set it up for you), it's a waiting game.

Good luck!
# March 2, 2004 4:38 PM

swc said:

(IE users) If you have edit text software.. no need for file/save as.. just "Edit button" and select which tools you want to use to view the source. And then save it right into your hard drive. So far I have not seen any site can prevent that.
# March 6, 2004 10:05 PM

MihaK said:

OK, let me start with some simple model for ASP.NET apps:

4 class stereotypes:
- <<ClientPage>> (represents the stuff that comes down the wire and renders/executes in the browser)
- <<ServerPage>> (represents the .aspx page on the server that builds the ClientPage)
- <<CodeBehind>> (represents the .cs or .vb code that is referenced by ServerPage
- <<JavaScript>> (represents the stuff that executes locally when runs-on-client events triggers)

4 relations stereotypes:
- <<builds>> (the relation from ServerPage to ClientPage: "ServerPage builds the ClientPage and sends it down the wire")
- <<event>> (the reletation from ClientPage to JavaScript - "ClientPage triggers the execution of JavaScript" or from ClientPage to ServerPage - "ClientPage triggers the submit up to the ServerPage")
- <<redirect>> (the relation between ServerPage and ServerPage - "ServerPage redirects to another ServerPage")
- <<include>> (the 1:1 relation between ServerPage and CodeBehind)

At design time you build ServerPages, which automatically include specific CodeBehind-s for every ServerPage. At run time browser calls ServerPages (event) that generate ClientPages (build) that fire events either locally (to JavaScript) or back to ServerPages.

If you agree with this, we can move on to Web Services model.
# March 7, 2004 6:57 PM

Scott said:

I had hella problems with it under Windows 2000 (IIS 5 I think). Things like images coming up rex'ed, CSS missing, all sorts of stuff like that. I'll have to try it again if I ever get to work on at IIS 6 server. :(
# March 14, 2004 3:24 AM

Robert McLaws said:

That's funny, cause the CODE directory is my least favorite feature. I hate the fact that Microsoft is continually dictating to me what my directory structure should be. That folder should be configurable on a web-by-web basis.
# March 19, 2004 6:19 PM

Jason Salas said:

Ahh...so you're one of those people who instead of using the default "images" directory, changes it to "pictures" just to be non-conformist? :)
# March 19, 2004 6:26 PM

Robert McLaws said:

LOL.

No, actually, I have a folder called "Common" that hold all the items common to the different parts of the site. I then have several nested folders underneath. They are:

-Components (Code)
-Controls (User Controls)
-Images
-MenuData (ASPnetMenu XML Files)
-Scripts
-Stylesheets

You shouldn't have .VB (or.CS) files strewn around your site for no reason. If it's not an ASPX page, it doesn't belog outside the common folder. When several sites depend on the same files, I have a "Common Folder" outside of the main web, and link it into the web directories using NTFS junctions. That way, if one file changes, all directories get updated.

I'm extremely anal about website organization. Mostly because most people aren't. I got fed up with inheriting projects with no organization whatsoever. So I came up with a predictable system that I use every time. Has served me very well.
# March 19, 2004 8:31 PM

mike said:

The good news, I think, is that the further you are beyond that first critical job, the less the degree and institution matters. Lots of high-tech firms recruit directly out of such universities (and many more), but when hiring someone with experience, the experience count about 1,582% more than the schooling. Just as with high school -- that GPA mattered when applying to colleges, but who cares now?
# March 19, 2004 8:34 PM

mike said:

I vote for the Code folder. :-) It's actually double-good, although that's my opinion. First, no need to compile classes -- just run and go. We could have used this feature w/ Web Matrix, heh. Second, the Web page designer in Whidbey gives you IntelliSense on anything in the Code folder. How cool is that?
# March 19, 2004 8:37 PM

Jason Salas said:

Excellent points! (Although, those dang Ivy League fraternities seem to stay eerily close-knit...)
# March 19, 2004 9:01 PM

Jason Salas said:

Sweet. I know people that sing the praises of Microsoft technologies up and down the street, but change absolutely every default setting and recommended coding convention just to prove they can.

These type of people setup an MS-driven site and then proceed to make the default documents something different than "index.html" or "default.aspx", rename all the provided dirs and other quirky stuff.

I'm in the middle...I change some things, and leave others the way they were set up. I always create several directories:

/images
/css
/modules
/customcontrols
/usercontrols
/servercontrols

Hey, it takes all types...
# March 19, 2004 9:06 PM

Jason Salas said:

Hi Mike,

I'm very pleased directories like /code, /themes and /resources got the treatment they did for V2 on a functional level. However, I was surprised at the naming convention used. It makes sense to keep things simple, and undoubtedly the engineers took the fact that legacy apps may have those dirs named already and so would allow files and folders within those spaces to be served and/or non-compiled, but I think for some it creates a headache.

I would have opted for some other naming system...something most people woulnd't be using to rule out not technical incompatability, but confusion for webmasters running migrated sites.

Think about how many people out there right now have a /code and/or /resources folder one step down from root containing sample source files.

I guess it's a self-defeating argument...you can't really pick a name that's easy to remember and short enough that someone out there isn't using already.
# March 19, 2004 9:12 PM

Jason Salas said:

And for the record (and for any corporate recruiters reading this now), I once got 3 gold stars and a complementary puffy sticker for drawing The Pokey Little Puppy for my 4th grade book report. :)
# March 19, 2004 9:13 PM

Cesar said:

One great email validator is one that, after performing the string expression validaton, check if the domain name exist (using dns query), get th MX for this domain and check if the user exist in SMTP server. Theses validations may be anabled/disabled by properties of this validation control.
# March 20, 2004 11:40 AM

Rich Storaci said:

Jason-

Very well-expressed. Remember what you have going for you more than any platinum-level diploma is your technical competence and quality work experience. You're one of the most brillant men I know, especially with all the varied and demanding hats you wear at KUAM. Keep smiling, Jason, as you're going places!
# March 21, 2004 7:52 PM

Jason Salas said:

> Keep smiling, Jason, as you're going places!

Thanks Rich...hopefully sooner than later! :)
# March 21, 2004 11:45 PM

TrackBack said:

# March 23, 2004 1:52 PM

TrackBack said:

# March 24, 2004 3:45 PM

TrackBack said:

# March 24, 2004 3:52 PM

Jason Salas said:

**UPDATE**

They made the change. Cool. :)
# March 25, 2004 5:50 AM

Jeff said:

I'm impressed. I got out of broadcast years ago because the pay and consolidation (in radio especially) made it not very fun anymore. I still miss it, being behind or in front of the camera. Good times!
# March 25, 2004 9:34 AM

Tim Marman said:

Non sequitor: Why must Stuart Scott adopt a "hip-hop vocabulary"? He's not ghetto - does he have to pretend solely because he's black? I don't get it.

:)

# March 26, 2004 7:11 PM

Darron said:

I write better code when listening to "lounge music" like Sinatra, and Deano.
# March 26, 2004 8:04 PM

David said:

Actually for me Techno or Hard House is the way to go - must moving at over 140 beats per minute have proven to wake you up. (better than caffeene) Allows me the same sort of clear focus you observed. Code becomes much easier and productivity goes way up.
# March 26, 2004 8:48 PM

Mark Erikson said:

Techno / electronic type stuff. I highly recommend www.modarchive.com . There's a big mixture of stuff there, all sorts of styles. I've barely sampled it myself, but I've found plenty that works good for me.
# March 26, 2004 10:40 PM

Jason Salas said:

Hey David & Mark,

Cool. I think because I grew up listening to metal, it's more conducive to the way I work. Like I said, I know people who CAN'T work without techno.



# March 26, 2004 11:02 PM

mike said:

Jazz, man. Late night work + late night jazz = true productivity. And the guys at the radio station must know that, too, coz they just keep the good stuff comin'.
# March 27, 2004 12:43 AM

Jason Salas said:

Now that's the ticket! I can also code pretty well to the blues...Jimi Hendrix or Stevie Ray Vaughn, mostly.
# March 27, 2004 12:52 AM

Chris McKenzie said:

ALl kinds of music: Bela Fleck and the Flecktones, Beethoven, Sarah McLachlan, Crystal Method, Mudvayne, Slayer. I dig it all.
# March 27, 2004 10:18 AM

mike said:

The mobile story in Whidbey uses so-called adaptive rendering; each control has an adapter that can render the markup appropriate to the browser request. This works something like browsercaps, but rather than just set various switches based on the user agent, the control can instiate entirely different classes to render the markup. It's both tons more powerful as well as extensible. (New device? New adapter class.)

Whidbey also introduces device filtering, which you can apply at the property level. For example, you can have default text (maybe terse text for all devices) and override the Text property for desktop browsers with more verbose text.

So these features are in the service of making it substantially easier to create single-source pages that work for many devices. (Rather than having to author MMIT pages separately.) That said, adaptive rendering and filterin aren't going to make the need (or desire) for separate desktop and device pages go away altogether.
# March 27, 2004 12:43 PM

Jason Salas said:

Hi Chris,

Beethoven ==> Sarah McLachlan ==> Slayer

Now that's an eclectic list! :)
# March 27, 2004 5:03 PM

Trench said:

Sounds like a great idea man. Looking forward to see how things turn out.
# April 5, 2004 9:37 PM

Sean McCarthy said:

Have you found anything that is relatively easy to use or easy to program yet?

I found a java applet on Johnny Damon's website ...
# April 6, 2004 12:19 AM

PatF said:


If you can change the 404 page used on your site to a .aspx page, you can effectively have the .net framework process any path you want (as long as that path doesn't actually exist).

You could use this to have your asp.net pages look like .html pages or directories, or anything you like :

protected void Application_BeginRequest(Object sender, EventArgs e)
{
string strPath=Request.RawUrl;

if(strPath.IndexOf("404.aspx") > 0 && strPath.IndexOf("mypage.html") > 0)
{
Context.RewritePath("realpage.aspx");
}

}

This would translate any request with the string mypage.html in it to the page realpage.aspx.

# April 6, 2004 11:39 AM

Garrett Baker said:

You could look up the user's ip address in whois to find the owner of the IP block.

This would provide the company information. Usually this information includes email addresses and URLs. Of course, this is more complex than using a web.config file.
# April 6, 2004 8:57 PM

Jason Salas said:

Hi Garrett,

Interesting tip...although I'm pretty sure the default homepage URL for mobile splash pages wouldn't be available from within a WHOIS query.
# April 6, 2004 11:42 PM

Sachin Patil said:

Guys!!!

I have an interview in another 2 or 3 days. That is a phone interview of 20-25 mins. Please do tell me the ways. What is generally asked in the initial Phone interview.

# April 8, 2004 5:45 AM

Jason Salas said:

Just keep some of the comments on this post in mind...and check out Chris Sells' post at: http://www.sellsbrothers.com/fun/msiview/default.aspx?content=question.htm

Good luck!
# April 8, 2004 6:02 AM

Sachin Patil said:

Thanks Jason,

I will let you know my performance !!!!
# April 8, 2004 2:39 PM

Bill Hayes said:

Hi Jason,

If you were interviewed on MS campus by less than 6 interviewers, is that a bad sign?
I read from web resources that 6 interviews (the last one being the project manager) is a good sign.
But my recruiter said it doesn't have to be 6 interviews....


Thanks,
Bill
# April 13, 2004 7:12 PM

Jason Salas said:

Hi Bill,

I'd say that's typical. I've met people that say they've been through the wringer as many as 9 times in a day, and I've also seen people who have only gone to 5 hiring managers. And of course, executives typically have one high-level talk and they're in :)

Good luck!
# April 13, 2004 8:59 PM

Santos said:

I got an on-site interview with them on friday, and Im excited and scared at the same time. I know that its quite a challenge to get a job and I also know that there are a ton of really smart people applying also. I managed to get passed the phone interview and get a shot with the oncampus trials. It'd be awesome to get a job there but I look at stuff like, XSLT drawbacks and ASP.NET controls, and I have little to no knowledge about either technologies. I'm applying for a fulltime Sofware Design Engineer (I graduate in June), but considering these questions, I dont know that I have much of a chance.
# April 14, 2004 5:23 AM

Jason Salas said:

Hi Santos,

Just be yourself...talk about the stuff you know and they won't harp on areas that you've got no experience with. You'll be expected to give deep opinions on the areas you are interested in and that you do work with, so just concentrate on being strong on working with what you do know.
# April 14, 2004 5:26 AM

Prashanth said:

Can any one help me for accessing the viewstate contents thro javascript code.
Kindly mail me at prashanth.k@sonata-software.com
# April 23, 2004 8:56 AM

Dan Kelly said:

I have an interview for a director level marketing position at Microsoft. Please guide me with any inputs to face the interview successfully. Thank you
# April 23, 2004 2:00 PM

Jeff said:

Couple of reason why advertisers may user flash or standard GIF... If you are simply displaying text and maybe a few images, flash may yield a smaller file size. On networks like AOL:AIM advertisers use flash to display short movie previews simply because most people have flash and it does not require any extra download. It may not be of the best quality but it is extremely light weight. Also, I don't know of any publisher who would allow anything but flash or image as an interstitial.
# April 26, 2004 9:23 AM

Shannon J Hager said:

I just had a conversation with a designer about this Friday. He was forced to use an animated .gif when the client really wanted Flash. The effect was nowhere near as nice and the file size was outrageous. Flash would have done the trick with ease.

Another thing to keep in mind is that you don't really know what is going on besides the animation you see. There could be all kinds of client/server communication going on and/or dynamic building of the text and animations. Most aren't doing this, of course, but Flash is still (usually) smaller and better looking than a similar animated gif (except for simple "blink" type animations).
# April 26, 2004 3:00 PM

Jason Salas said:

Hi Shannon,

Good comments. I guess admittedly one thing that's nice about Flash is that you can also prevent someone from *easily* copying a resource.
# April 26, 2004 7:28 PM

Adam said:

Does anyone have the wav of that skit. Preferrably the, "I got a fever, and the only perscription is more cowbell."? Or atleast know where I can find it?

Thanks

Adam
# April 27, 2004 9:45 AM

Jason Salas said:

Hi Adam,

I found this floating around in great volume before...on Kazaa, AudioPlanet and Napster when it was "legit" to use those services.
# April 27, 2004 9:36 PM

Jason Salas said:

Actually, I think the SNL Blue Oyster Cult sketch w/Christoper Walken and the Jimgleheimer Junction sketch w/Cameron Diaz are the funniest bits to have come from SNL in the last 10 years.
# April 27, 2004 9:37 PM

TrackBack said:

# April 29, 2004 7:38 AM

Barb said:

Interesting comments, Jason. :)

I still don't like Mike Hall, I don't think he deserved to win, and I think ESPN cheated the viewers by not counting the audience vote at the end of the first hour of the finale.

If they had, Zach Selwyn and Aaron Levine would have been tied, and it would have been up to the infamous "red phone" guy as to who got cut. Zach probably would have been axed anyway (even though I thought he was better than Aaron was in the first hour), but at least it would have been a bit more upfront. (btw, only way I know about the audience's vote was a crawler at the bottom of the screen at the end of part 1. Votes to cut Zach were lower than the votes to cut Maggie -- how did she last so long, anyway, except for her writing? -- and to cut Aaron.)

Be that as it may, I still enjoyed what you had to say about the show -- and appreciated reading your comments, as they're more informed than most because you've actually done the job before.

Barb
# April 30, 2004 3:32 AM

Jason Salas said:

Hi Barb,

Thanks! yeah, I really enjoyed the show. I had a feeling it would be between Aaron and Mike...although it's a reality show, ESPN still is a business, and those two fit the mold of prototypical sportscasters best. But trust me...Zach's going to be picked up by someone, and damn if he doesn't ESPN down because of it.

Maggie's also got a brilliant career ahead of her...hell, I'd hire her. :)
# April 30, 2004 3:42 AM

Phil Scott said:

I saw that show and they installed a chandeller, a makeup kit and a coffee machine. I guess the equivalent would be a bunch of java applets, rotating graphics and a flash intro.
# April 30, 2004 9:33 AM

Greg Pyatt said:

What about blinking text? You can't forget blinking text! Teh <bink> tag t0tlly r0x0rz for teh intarweb! LOL!!!!11111eleventy

Seriously though, I think it's a great idea and it couldn't hurt to inject a little more humor (note: GOOD humor, not groan-inducing nerdo-humor, m'kay?) into some of those MSDN videos.
# April 30, 2004 11:42 AM

Jason Salas said:

Hi Phil!

LOL! Yeah, and they could migrate a slow site from the Zeus web server to IIS 6.0 with HTTP compression!
# April 30, 2004 11:12 PM

Jason Salas said:

Hey Greg! Oh sure...how could one neglect the <BLINK> tags? Maybe something very DHTML-heavy and very Flash friendly.
# April 30, 2004 11:14 PM

Damian said:

But it's free here http://tinyurl.com
# May 2, 2004 11:18 PM

Francesco said:

It may be free at TinyURL, but they do not offer any of the advanced features coming soon to URL123.

# May 3, 2004 12:39 AM

anonymous nerd said:

Isn't bigger, better? http://www.hugeurl.com/
# May 3, 2004 2:27 AM

Francesco said:

LOL. Seriously though...

No where else can you edit the URLs after you create them, view statistics on hit counts and browsers, delete them when you're through with them, set them to be active for x number of days, password protect them, require a user to enter an email address before being redirected, and best of all...customize your own subdomain, giving you guaranteed access to all possible character combinations for your subdomain, for example:

http://jason.url123.com/news

instead of the harder to remember:

http://url123.com/5w2e3
# May 3, 2004 10:57 AM

Sonu Kapoor said:

Good thing pal. Pretty cool to write articles for MSDN. Keep it up !

Sonu Kapoor
# May 3, 2004 9:36 PM

Jason Salas said:

Thanks Sonu! Yeah, I've already got another one on the way I'm hoping will be published, too, on pagination concerns with mobile apps. Should be a scorcher!
# May 3, 2004 9:38 PM

Robert W. McLaws said:

Where the bloidy hell have you been? LOL. Good to have you back.,
# May 3, 2004 10:24 PM

Jason Salas said:

Hey Rob! Working on mobile apps, and getting ready for my station's coverage of the upcoming local elections in the 3rd quarter.
# May 3, 2004 10:26 PM

Nyt Q. Crawler said:

I think that it would be a good idea if it were actually educational and they left the code somewhere on a website for others to download and use.
# May 8, 2004 9:41 PM

Jason Salas said:

Hi Nyt,

Great site! It'd be a great way to do something positive for someone...get really good guys to come in and really revamp a project.
# May 9, 2004 1:32 AM

James said:

I watch espn daily. Where is this Mike Hall its time to see him in action. I heard Dan Patrick saying not so nice things of Hall. I guess that 95.000$ dollar salery before he even worked for it could rub you the wrong way! On the other hand he beat out 10,000 people for the job, not a everyday situation when applying for a job. Espn i luv it!.
# May 10, 2004 11:35 PM

Jason Salas said:

ESPN's letting Mike start after he graduates from the U of Missouri in May. Dan Patrick said on his radio show that he really didn't agree with the Dream Job concept...saying something like "it's like letting the winner of the punt, pass and kick competition land a starting job in the NFL". Funny!
# May 10, 2004 11:51 PM

Shannon J Hager said:

I want to see a talented, responsible group of developers (and managers, etc) get together and tackle the reliable, secure electronic voting problem. There are too few players in this arena or else they would not be able to produce such terrible products. I refuse to believe that coming up with a Microsoft Access-based eVoting application that *works* and meets currently accepted security guidelines is as hard as Diebold and other companies are making it out to be. Electronic voting *is* going to happen; I think the use of defective products in the last election is evidence of that. I live about 15 miles from where (according to Diebold memos) someone had to do "some fancy footwork" on the .mdb in an election last year. As a developer, I refuse to believe that such things are acceptable.
# May 15, 2004 6:10 PM

Jason Salas said:

Hi Shannon,

Good ideas. In my role in the media now, we're essentially building 3 types of systems, each of which serving a distinct purpose:

1) marketing/promotional (candidate bios, issue information, voting registration, etc.)
2) internal DSS tools to help us track issues and for live broadcasts
3) election-night broadcast systems (real-time results generator, multi-platform data rendering)

I'm not sure Access would be the way to go for a large, distributed, high-volume app. :(
# May 16, 2004 1:07 AM

Paul Wilson said:

Unfortunately ASPAlliance is losing its simplicity.
# May 17, 2004 8:08 AM

Dave Burke said:

Paul, thanks for the yucks! Jason, I haven't seen this WS-based formatting and layout approach to article submissions, but I enjoyed reading about it. Thanks!

# May 17, 2004 9:40 AM

Steven Smith said:

Yeah, and unfortunately the web service thing didn't scale at all, so as the site grew more popular, it had to be replaced. And now that the site is part of the Codewise Community and is searchable via VS.NET and the Codewise Federated Search, it requires a few more fields from authors submitting works.

But, hopefully, the extra traffic from and usefulness for VS.NET users will make it worth it. Thanks for the plug, Jason.
# May 17, 2004 11:25 AM

Chris Howell said:

Good Job and Congrats, Jason. I enjoy your participation in the .NET community.
# May 17, 2004 12:38 PM

Jason Salas said:

Thanks Chris! Your efforts are appreciated, too!
# May 17, 2004 7:06 PM

Shannon J Hager said:

I am CERTAIN Access would NOT be the way to go. Diebold, however, thought/thinks otherwise. They have used and abused Access in their buggy, insecure voting machines that are currently used across the US, that is the only reason I mentioned Access: as a point of reference.
# May 18, 2004 7:41 PM

Larry Osterman said:

Fubar as an acronym dates from at least world war two, and probably before.

I've actually heard it as f*ed up beyond all recognition, but it's the same idea.
# May 18, 2004 11:59 PM

Jason Salas said:

Really? Interesting. I wasn't aware that the "F" word existed that far back in American history. :)
# May 19, 2004 12:01 AM

Phil said:

Check out the Jargon File entry: http://www.catb.org/~esr/jargon/html/F/foo.html

foo and bar predate Tango and Cash by a good 45 years, back to at least WWII. They've been used in programming circles since at least the 60s.

Many, many hours can be productively wasted browsing the Jargon File. Highly recommended.
# May 19, 2004 12:05 AM

Jason Salas said:

Thanks Phil! That's what I was after. I just turned 30 last month, so tragically my popular culture frame of reference doesn't go back any further than 1974. :(

I appreciate the help!
# May 19, 2004 12:08 AM

denny said:

try this link:

http://whatis.techtarget.com/definition/0,,sid9_gci748437,00.html

or this one:
http://dictionary.reference.com/search?q=fubar


also in the USAF we have the "BUFFF" which is a B-52
I'll start it out for you as "Big Ugly Fat Flying F*"
and a C-141 in green cammo paint is a "Leaping Lizzard"

# May 19, 2004 12:08 AM

ron said:

# May 19, 2004 12:59 AM

mike said:

I echo the earlier recommendation of the Jargon File, which rarely fails me, although just today I came up dry on "hork." :-(

Although per Raymond and the Jargon File "foo" and "bar," do not appear to be related to the military slang of "fubar," I thought I'd add a selection of terms that are related to the latter sense. These are from "Mrs. Byrne's Dictionary of Unusual, Obscure, and Preposterous Words." The first is probably familiar to most folks.

snafu adj/n. Situation Normal: All F*cked Up
fubar " F*cked Up Beyond All Recognition
fubb " F*cked Up Beyond Belief
fumtu " F*ucked Up More Than Usual
janfu " Joint Army/Navy F*ck Up
sapfu " Surpassing All Previous F*ck Ups
susfu " Situation Unchanged: Still F*cked Up
tarfu " Things Are REALLY F*ucked Up

# May 19, 2004 1:32 AM

Scott said:

Don't forget "cluster fucked" meaning someone in charge of something is making stupid decisions.

Check out this link about "foo", it's an RFC. http://www.faqs.org/rfcs/rfc3092.html
# May 19, 2004 2:19 AM

Heinz said:

I think I have heard it in another movie called "Forrest Gump" (one of the Vietnam scenes, if I remeber right).
# May 19, 2004 4:53 AM

Johnny Hall said:

And Saving Private Ryan (the "desk jockey" is told that it's German!).
# May 19, 2004 5:38 AM

TrackBack said:

# May 26, 2004 12:00 AM

Martin said:

I want one of thoseeeeeeeeeeeeee. But not only for Visula Studio.NET (puff). One for programmers, with {} $ etc easy access!!!
# May 27, 2004 10:24 PM

Skar-Skream said:

Everything, or at least more links to find, you need for the coolest character ever, Snake-Eyes.

Check out the costumes he made !
# June 1, 2004 2:10 AM

Skar-Skream said:

Oh, here's the site!

http://www.neoengel.com/snakeeyes

Check out the Snake-Eyes costumes http://www.neoengel.com/snakeeyes_costumes

And I found more GIJoe costumes there too http://www.neoengel.com/costumes
# June 1, 2004 2:12 AM

Pimp Master said:

I had a similair Idea...as I love the show aswell...

and gee...guess what????

I ran with it!

I had to make it marketable...Id like to eventualy have it more like im pimpin someones site...hard to find that target market though so I had to offer web dev for someone who just plain needed a site to begin with...

but hey!

Its a start! Good things to come...

check it ou!

http://www.pimpmysite.com

Pimp Master
# June 5, 2004 3:22 AM

Jason Salas said:

I love it! Great job!
# June 5, 2004 3:25 AM

Sreejathh S. Warrier said:

Jason,
When I read that you are using SPs instead of T-SQL for speed, I was reminded of Frans Bourma's post on the topic.
I suspect you would already have seen this, but just in case you havent.
http://weblogs.asp.net/fbouma/archive/2003/11/18/38178.aspx
Cheers,
Sreejath
# June 7, 2004 7:46 AM

David Crowell said:

I implemented my own search functionality for a site here at work also.

I took a slightly different approach. I have a base page class that overrides the Render method, and builds a keyword list from the HTML. I have two tables to stored indexed data, SearchedPages and SearchedWords. I also use the database and caching to store the last time a page was indexed, and don't index it again for 24 hours.

It's actually very fast, the results leave a little to be desired though. I'm probably not smart enough to write the next Google, so I'll look into using full text searching next time.

As far as stored procedures... That's a topic for a religious war (again). Use whatever you are comfortable with :)
# June 7, 2004 8:29 AM

Scott Galloway said:

Check out Lucene.NET (http://sourceforge.net/projects/lucenedotnet), this is a high performance file-based search engine...coincidentally, it's also used in .TEXT 0.96...
# June 7, 2004 8:29 AM

TrackBack said:

Take Outs for 7 June 2004
# June 7, 2004 8:31 AM

Phil Scott said:

I was stuck with the same problem with our site. I took the easy way out and just stuck a branded google search with a site:www.blahblahblah.com around it.

Honestly, it works great. I still feal a bit guilty about "cheating," but I've actually had a couple of people inquire on how I did it because it works so well. I've had no compliants either.
# June 7, 2004 10:00 AM

David Crowell said:

I would have loved to use a branded google search. The client would not go along with it though. We could have saved some serious time (and we were overbudget as it was).

At least I got to learn something along the way.
# June 7, 2004 10:39 AM

Brad said:

Puppy!
# June 7, 2004 7:17 PM

Addy Santo said:

Err.. Dude.... Nothing personal, but about half of those scenes are on my "Worst scenes ever" list... The Swordfish and Matrix Revolution scenes especially.

Want some *really* good scenes? Neo's kung fu training in Matrix (1), virtually any dialog from Fight Club, Lilloo's jump in Fifth Element, Bryant's monologue at the end of Bladerunner, the Tatooin canteen scene from Star Wars.

# June 7, 2004 7:26 PM

Jason Salas said:

Hi Andy,

Ahhh...good point, but remember, film is art, and art is interpretive. So, one man's trash may be another man's treasure.
# June 7, 2004 7:29 PM

Alex Papadimoulis said:

One must concede the ubiquitious anoriphication encompasing the essense of "The Architect" is superceded only by the deplorication of Neo's uburbulous mortification with the dichotomy of the "real" reality (naturally juxtaposed with that of the faux reality) and implications that qualify the intermediary reality provided within the context of the train station.
# June 7, 2004 8:22 PM

Shannon J Hager said:

Addy: I think you probably meant Roy Batty's monologue at the end of Blade Runner ('tears in rain').
# June 7, 2004 9:23 PM

Scott C Reynolds said:

Um...Alex? I'm submitting your comment to thedailywtf.
# June 7, 2004 11:40 PM

Jason Salas said:

Good one Alex!
# June 7, 2004 11:43 PM

Phil Weber said:

Jason: Did you see Will Ferrell's spoof of The Architect on the MTV Video Music Awards? Classic! (Ergo.)
# June 8, 2004 1:31 AM

Jason Salas said:

Phil:

Oh yeah, I actually saw Ferrell's version before I saw the moie, so I was cracking up in the most critical scene while everyone was trying to concentrate. :)
# June 8, 2004 1:42 AM

TrackBack said:

Take Outs for 8 June 2004
# June 8, 2004 2:42 AM

Lotas Smartman said:

the home server part i agree with. i cant sleeep if my workstation, 2 servers and imac are dead. i hate power failures! i never walked into work and found cables being run from one end of a building to an other, yet.
# June 8, 2004 5:03 AM

Pimp Master said:

Check out the new talking pimp I just added.
# June 8, 2004 5:44 AM

Jason Salas said:

Nice touch. :)
# June 8, 2004 6:24 AM

christoc said:

ah yes, the days as a kid watching TV shows that were 2 weeks behind! I remember them fondly! I really need to take a trip to Guam again in the next few years. When we moved (Air Force father) we stayed at The Pacific Island club? I think that's the name....
# June 8, 2004 10:32 AM

TrackBack said:

# June 8, 2004 11:45 AM

TrackBack said:

# June 8, 2004 11:47 AM

TrackBack said:

# June 9, 2004 3:07 AM

Thomas Tomiczek said:

Yeah. Nice tool.

Just tried it here.

Guess what - it did NOT find ANY of the fake email addresses that I tried :-)

But then, we run a honey pot system - all email addresses are accepted by our public relay, and used as input into our anti spam thingy.
# June 9, 2004 3:17 AM

Jason Salas said:

Hi Thomas,

I saw it delete some test aliases I had put in there, but generally it was spot-on.
# June 9, 2004 3:58 AM

TrackBack said:

# June 9, 2004 10:28 AM

TrackBack said:

# June 9, 2004 10:28 AM

Phil Scott said:

Zach was also reading e-mail on PTI
# June 9, 2004 9:41 PM

Jason Salas said:

Yep...I mentioned Zach's cameo in the link above.
# June 9, 2004 9:42 PM

Phil Scott said:

Hmmmmm...how did I miss the first sentance of the post. I think it's time for bed.
# June 9, 2004 9:52 PM

Heather said:

Hmmm, what's that? I can't hear you....my head is to far up my...oh well, nevermind. ; )
# June 11, 2004 1:13 PM

Robert W. Leu said:

I only caught his first show on Tuesday...he seemed a little weak from the get-go, with no control over the panel. Did he get better as the week went on?
# June 11, 2004 9:07 PM

TrackBack said:

Take Outs for 12 June 2004
# June 12, 2004 2:32 AM

TrackBack said:

# June 12, 2004 12:04 PM

TrackBack said:

# June 12, 2004 12:07 PM

Jeff said:

I don't know what broadcast medium you work in, but my experience in "the biz" was that your customers were the idiots at the other end of the hall that sell ads. They only understood Arbitron or Nielsen, and therefore thought they understood programming. It seems to have only gotten worse since I left that horrible "profession." I miss it the work like hell, but I'd be in no rush to back to the environment.
# June 13, 2004 12:05 AM

Jason Salas said:

Hi Jeff,

Oh yeah...that's an entirely different issue unto itself. Recall Billy Crystal's line from "City Slickers" where he describes his role as a radio ad salesman as someone who really doesn't sell anything tangible, therefore he sells air.
# June 13, 2004 12:39 AM

Jeff said:

You inspired a rant of sorts... not entirely related, but you indirectly got me thinking!
http://weblogs.asp.net/jeff/archive/2004/06/13/154500.aspx
# June 13, 2004 12:49 AM

Jason Salas said:

Glad to have shaken up the system!
# June 13, 2004 1:44 AM

Rodrigo Pineda Icaza said:

what a piece of Boloney, You do that in most business are and you gonna be OUT of BUSINESS in no time.

Television MEdia is a Goverment regulated MONOPOLY and you may get away with that but not in mosost business.




# June 13, 2004 9:27 AM

michael said:

The "I love the 80's" really did put VH1 back on the map (Was it ever really there to begin with?). If I'm flipping channels and come across any of the 80's shows, I'll usually take out the batteries in my remote and hide them from my girlfriend.

I joke about the 90's show with my friends because we're only four years removed. What will be next? "I love the year 2001"?

In any case, I'll be watching all of those episodes as well.
# June 13, 2004 6:55 PM

Jason Salas said:

Hi Rodrigo,

I agree that TV is subject to *some* government dictation, but most industries are, too. I argue the last point that in most businesses using an aggresive stance wouldn't work...I've done this for years in retail, in telecommunications, in provate consulting, and in the hospitality industry.

So try it for yourself. If you wind up getting fired or go out of business...well, then, maybe you're right. :)
# June 13, 2004 7:43 PM

Jon Galloway said:

Oh, and also note that ADO.NET hides the root cause of the error a bit. You can probably get more info from the Event Viewer. I realize this doesn't answer your real question as to whether the patch caused it, but may help you in solving the problem.
# June 14, 2004 7:19 PM

Jason Salas said:

Hi Jon,

Thanks for the link. That's interesting, although I'm using a field of type TEXT, so I'm not sure I'd have to explicitly state the size of the data being INSERT'ed...would I? I'll keep this in mind.
# June 14, 2004 7:23 PM

Jason Salas said:

Hi again Jon,

Yeah, my web host took a look at both the Error Log and the Event Viewer, and the precise message in the latter that was returned had something to do with "bad buffer recieved from client." I've never gotten this before...this is totally weird. :(
# June 14, 2004 7:24 PM

Jason Salas said:

To be precise, I think this would be it, from the link you posted:


---------------------------------------------------
Error: 17805, Severity: 20, State: 3
Invalid buffer received from client.
---------------------------------------------------
# June 14, 2004 7:25 PM

JOE SHMO said:

I'M THRILLED THAT HE IS HOSTING IS HE IS AMZAING
# June 14, 2004 8:39 PM

Jason Salas said:

I think I may have found the culprit...but this is supposed to be a fix?!??!

http://support.microsoft.com/?kbid=839523

"To work around this problem, do not use a stored procedure to update a text column in a table." This sucks for in-place systems that have been using such processes for years! Argh!
# June 15, 2004 1:04 AM

Jon Galloway said:

Yikes. Well, it does mention there's a Hotfix available by request. I was wondering why we never hit this, but we don't have an INSTEAD OF trigger on the table. Text fields are like BLOB fields in that they're just a 16 bit pointer to an external file, by the way. They're stored separately because they can be huge - 2GB if I remember correctly - so that wouldn't work with the file structure in SQL Server.
# June 15, 2004 1:19 AM

Jason Salas said:

Yeah...it's a bummer, alright. I'm not sure as this is *the* definitive problem, as our issue stems in INSERTs as well as UPDATEs, and the KB article mentions the latter exclusively. I also don't use INSTEAD OF. This is weird. I'm going to petition my web host to just uninstall the HotFix. Wish me luck!
# June 15, 2004 1:23 AM

TrackBack said:

# June 15, 2004 2:26 AM

TrackBack said:

# June 15, 2004 2:29 AM

Jason Salas said:

# June 15, 2004 5:29 PM

Jerry Pisk said:

You couldn't be more wrong. If you don't specify the type of your parameters they will default to whatever you pass, nvarchar for string, int for int, bigint for long, uniqueidentifier for Guid, datetime for DateTime and so on. They are not converted to strings when passed to the server...
# June 15, 2004 9:34 PM

Jason Salas said:

Right - that's my point. It WAS working without type information as a TEXT, but now it's forcing me to specify that it's a NVARCHAR with a limit of 4,000 characters.
# June 15, 2004 9:56 PM

Robert W. Leu said:

Typical Microsoft style.
# June 16, 2004 7:55 PM

Raza said:

synergy
cognizant


# June 19, 2004 11:20 PM

caroline said:

i grew up int he 90's not the 80's so i'm excited i'll know what they're talking about! but i fell off the couch when i saw the commercial i was very excited i marked July 12th on my CareBears calendar and everything. and i really do have a carebears calednar that just coincidentally has to do with the 90s wow im so cool
# June 20, 2004 11:15 PM

mike said:

If the file is 6K, there's got to be something in it. What do you see if you open it in Notepad or equivalent?
# June 21, 2004 11:11 PM

Jason Salas said:

Hi Mike,

This is what literally the full content within the file:

<%@ Page%>

...then, there's about 55 lines of blank space, but it can be highlighted, implying that there is/was something there, and that the text doesn't stop at the Page declaration.
# June 21, 2004 11:14 PM

Colt said:

I'm sorry to hear that Jason, but eating code is a common habit of Web Matrix.

Apart from power failure as in your case, I personally do face this problem occasionally, that is, the page was blank when I opened it in WM or some other rich editor. However, it'll become normal if I open it in *Notepad* again.
I know it looks weird, but I hope you can resume your codes in this way.
# June 22, 2004 12:13 AM

Jason Salas said:

Hi Colt,

I did think of that, and right after I opended the file unsuccessfully in WM, I tried it in Notepad, with the same result (actually, the Page declaration wasn't even visible). Everything worked out OK, but I seriously hope this is one event I'll not repeat anytime soon. I've been hitting CTRL-S like a madman today while working. :)
# June 22, 2004 12:27 AM

mike said:

Well, all in all, that sucks. :-( Nothing like that sinking feeling of realizing that that file is gone, man. Sorry you weren't able to recover it ...
# June 22, 2004 3:30 AM

AndrewSeven said:

Source Control?
# June 22, 2004 9:37 AM

Jason Nadal said:

Dumb question, but if this had been in a compiled dll somewhere on your pc, couldn't you have reflected it to get back something close to your source code?
# June 22, 2004 12:37 PM

jmj said:

Very funny!

I had the same problem too
# June 22, 2004 3:41 PM

Jason Salas said:

Hi Andrew,

If you're asking if I was using source control at the time of my accident - nope. Completely un-networked PC, just running Web Matrix independently. If yo're asking if I *should* be running it, yeah, I probably should. :(
# June 22, 2004 4:34 PM

Jason Salas said:

Hi Jason,

I didn't think of that. Good call. Actually, the one upside that came out of this is that because I recalled most of the core logic for the process, the second version came out better than the first, which is typical. The bitch was building the damn thing again from scratch.
# June 22, 2004 4:35 PM

Jason Salas said:

Yeah...why doesn't anyone just come out and say the "action" is the method name and the "destination" is the name of the class to be instantiated? Weird.
# June 22, 2004 4:42 PM

Francesco said:

Tiny url does not provide editing, custom domains, password protection, or hit reporting. URL123 does. And it's free.
# June 22, 2004 11:13 PM

Sassy said:

Fulltext searching on SQl2k is a pathetic joke. Not because of CPU cycles, because it _simply _dont _work. Once again, garbageware from Microsoft
# June 23, 2004 6:33 PM

alison said:

I love the 90's is going to rock(i.e. the subject but whatever). I can't wait until they go over clueless and there's something about mary, Naile imbrusia, titanic, baggy pants, and other importnat things that still rule our pop culture today. If i ever had a pop culture class, then I would have them watch this series, and the other I love series becuase they would learn so much. The commercial for this was so funny! She's like talk to the hand and hal sparks as hilarious(and slightly hot)
# June 26, 2004 11:08 AM

Jason Salas said:

Just an update...Microsoft Support tried to reproduce the error, installing the Hotfix on a server with the same build of ASP.NET and version of SQL Server 2000. They couldn't get it to replicate my error. Huh. Anyone else ran into something like this?
# June 26, 2004 10:46 PM

Jeff Perrin said:

Notepad2, my friend... Join the revolution ;)

http://www.flos-freeware.ch/notepad2.html
# June 27, 2004 11:13 PM

Raj Kaimal said:


Jason,

What is the name of the virus you got infected with?

Is it this one? http://securityresponse.symantec.com/avcenter/venc/data/w32.rusty@m.html

-raj
# June 27, 2004 11:22 PM

Jason Nadal said:

There's nothing quite as annoying as rewriting code you had gotten to work and lost, I can feel your pain there... a little something I like to call "computer imposed refactoring" :)
# June 28, 2004 8:00 PM

Bart Segers said:

Great taste of music. Here in Belgium it is difficult to get those songs but 90% is known to me...
I made some cassettes in the 90ths with a lot of your list on it...
As far as I can remember following songs were also on these cassettes
Journey - "Faithfully"
Journey - "Send her my love"
Whitesnake - "Ain't no love in the heart of the city"
Anderson, Bruford, Wakeman, Howe -" The meeting"
Magnum - "The last dance"
Gary Moore - "Empty rooms" - Get the live version from "we want Moore"
Queensrÿche - "I will remember"
Damn Yankees - ?
I will check at home and make a list :-)

# July 1, 2004 8:17 AM

Scott Galloway said:

Possibly the most depressing post I've every read.
# July 1, 2004 8:30 AM

Simon Owen said:

You have the Scorpions - so add Wind of Change to the list :)
# July 1, 2004 8:37 AM

Scott said:

Oh shoot me now!

Motley Crue - Home sweet Home
Winger - Headed for a heartbreak
Kiss - Reason to live
Kiss - Forever
Van Halen - When its love
Van Halen - Love walks in
Guns n' Roses - Sweet child of mine
Whitesnake - here I go again
Whitesnake - Is this love
Poison - Every rose has it's thorn
Poison - I won't forget you
Poison - Something to believe in
Bon Jovi - Bed of roses ( 80's? maybe 90's)
Warrant - Heaven
Cinderella - Don't know what you've got (till its gone)
Skid Row - I remember you
Def Leppard - Love Bites
Lita Ford/Ozzy Osbourne - Close my eyes forever
Ozzy Osbourne - Mama I'm coming home


That's all for now, all done from memory. I feel dirty. I'm going to go take a shower now.
# July 1, 2004 9:12 AM

David Findley said:

Metallica - Nothing Else Matters.
Firehouse - Love of a Lifetime.

:):):):):):):):):):):):)
# July 1, 2004 9:23 AM

Matt Berther said:

Lita/Ozzy - Close My Eyes Forever
Bon Jovi - Wanted Dead or Alive (This is the best rock ballad of all time)
Bon Jovi - Prayer '94 (Crossroads)
GNR - Patience
Mr Big - To be with you
Ugly Kid Joe - Cats in the cradle
Heart - Alone
Meatloaf - Anything for love
White Lion - When the children cry
Extreme - More than words
Damn Yankees - High Enough
Alias - More than words
Motley Crue - Without you

Hope this helps you a bit...
# July 1, 2004 11:56 AM

Dave Burke said:

Greatest 80's Monster Ballads! What a riot! I happened to recently start listening to my 80's rock cassettes again, so I'll keep this post bookmarked in case I can provide any contributions to what is obviously a VERY worthy effort!
# July 1, 2004 11:59 AM

Jason Salas said:

Bart - excellent! I also forgot a couple now that you mention White Lion. Thanks!
# July 1, 2004 3:17 PM

Jason Salas said:

Simon - good call, but I actually grew tired of that one, as MTV completely overplayed it. For that very reason, I left out a bunch of Bon Jovi and Motley Crue, too. :)
# July 1, 2004 3:20 PM

Jason Salas said:

Scott - "depressing" as in good or bad? Yeah, these songs will set you back emotionally a bit, if you're not in the right frame of mind. Break-up music, anyone?

Funny comment you posted, coming from a guy with the domain name "MostlyLucid". :)
# July 1, 2004 3:23 PM

Jason Salas said:

Scott Koon (LazyCoder) - EXCELLENT! OUTSTANDING! Man, I knew I could count on you! I had a strange feeling I left some Kiss and Ozzy off the list. :)
# July 1, 2004 3:25 PM

Jason Salas said:

Matt, good call with Heart...how the heck could I have left a Seattle band out? (Actually, I had Queensryche, but you can't neglect Nancy & Ann Wilson for too long).
# July 1, 2004 3:27 PM

Jason Salas said:

Dave - thanks! Like I said, this is more about me finding something to do while keeping creative. Man, if Napster, AudioGalaxy and the rest of the audio P2P crowd were still free & legit, I'd be having a field day with this...
# July 1, 2004 3:28 PM

Jason Salas said:

ALL - obviously, some of the songs I posted on my original list weren't Top 40 friendly (i.e., Scorpions' "Always Somewhere",Winger's "Miles Away" or Steelheart's "She's Gone), but trust me on this as a lifelong balladeer - if you've never heard of any of the songs, check them out. They're awesome work, if a little underappreciated.

Thanks everyone for your suggestions!
# July 1, 2004 3:31 PM

Emily said:

I've never agreed with anyone more on anything in my entire life.
# July 1, 2004 5:29 PM

Shannon J Hager said:

Faster Pussycat - "House of Pain"

Not sure how I missed this one the first time around, it was the favorite hairmetal song ever of a gf of mine in college and is never very far from being stuck in my head these days.
# July 1, 2004 10:33 PM

Shannon J Hager said:

oh yeah, there is NO song more fun to play by yourself than GnR's "Patience". My 4-guitar/4-vocal track solo version of that song was probably the funnest and funniest I ever recorded.

Thank God it was lost in a move.
# July 1, 2004 10:36 PM

Jason Salas said:

Hey Shannon,

Great story! Kind of reminds me how I butchered Dokken's "heaven Sent" in high school when I tried to do the whole thing. Thank goodness I've matured as a musician. George Lynch wouldn't be very flattered. :(
# July 1, 2004 10:45 PM

Bart Segers said:

Okay,
Here are some additions that were on the casette's. They were made initially to prove that hardrock had a lot of beautifull ballads:
Journey - "Who's crying now"
Journey - "Open arms"
Foreigner - "I want to know what love is"
Foreigner - "I don't want to live without you"
Triumph - "All the King's Horses/Carry On the Flame "
Night Ranger - "Sister Christian"
Night Ranger - "Hearts away"
Rush - "Closer to the heart"
WASP - "Hold on to my heart"
Extreme -"More than words"
Extreme - "Tragic Comic"
Marillion-"Seasons End"
Marillion - "Lavender"
Europe - "Carrie"
Boston - "Amanda"
Damn Yankees - "Silence is broken"
Thunder - "Low life in High places"



# July 2, 2004 6:25 AM

Bart Segers said:

OK the next cassette...

Tyketto - Standing alone
Tyketto - I won't cry
Toto - Mushanga
Toto - I won't hold you back
Toto - A thousand year
Toto - Roseanna
Foreigner - Out of the blue
Bad English - When I see you smile
Bad English - Time stood still
Bad English - Savage Blue
The Babys- Everytime I think of you
The Babys - Isn't it time
MSG - Nightmare
Giant - I'll be there when it's over
Giant - Without you
Lou Gramm - Just between you and me
Dare - Under The Sun
Dare - Return The Heart

If you like this kind of music check out: http://www.frontiers.it/indexbis.html
# July 2, 2004 8:26 AM

Bob Harrod said:

I've run into the same problem, but from the beginning our code has assigned SQL Types to the SQLCommand's parameters. Any other thoughts? This is happening pretty frequently and we cannot determine where to start.
# July 2, 2004 11:01 AM

Jason Salas said:

Hi Bob -

I was able to get around this by typing the SqlParameter, and that worked for me. I haven't had any problems otherwise, and Microsoft wss unable to replicate the error in their labs. What type of error(s) do you get?
# July 2, 2004 5:40 PM

Darron said:

Wow, you must have had a day like mine.

I totally understand where you are coming from. Been there, still there, will be there tomorrow.
# July 2, 2004 8:42 PM

jonpoon said:

I precisely know how you feel too! You practically mirrored what i felt at times of frustrations, especially the part on the random questions.

I got people that practically thought that i was the data source for google. Silly me.. how could i not realise that!
# July 2, 2004 10:59 PM

Felix said:

Ok Jason,
I'm learning C# - I've got some weekend time. Send me your blog code, I'll enhanced and send you the update. I'll send you a note through my SBC mail.
regards,
Felix
# July 3, 2004 1:06 AM

Stefano Demiliani said:

I'm interested to your application... maybe to do a VB.NET translation. If you want to share it... demiliani(at)gmail.com
# July 3, 2004 6:00 AM

TrackBack said:

# July 4, 2004 11:17 AM

TrackBack said:

# July 5, 2004 4:36 AM

TrackBack said:

# July 5, 2004 4:36 AM

TrackBack said:

# July 5, 2004 4:53 AM

TrackBack said:

# July 5, 2004 4:53 AM

TrackBack said:

# July 5, 2004 4:53 AM

TrackBack said:

# July 5, 2004 4:55 AM

TrackBack said:

# July 5, 2004 10:11 AM

DonXML Demsak said:

Here's what you are looking for: http://www.powertabs.net/pta.php?page=tab_download,4794,21,387153265 . To read this file, you will need the cool Power Tab Editor for Windows ( http://www.power-tab.net/ ), which is shareware/freeware. I prefer Guitar Pro (it has more bells and whistles), but for a free program, PowerTabs is pretty good.

Now, I'm going to have to break out my guitar and find my archive of all the tabs I downloaded over the years.
# July 5, 2004 9:53 PM

Jason Salas said:

Thanks a million Don - you're a life-saver! I downloaded another copy of the track produced in PowerTabs, but it was literally the guitar/piano transcription, so it didn't have the intro pieces for guitar. Thanks again...I owe you one!
# July 5, 2004 11:34 PM

Fox said:

Dude, RegEx is the way to go...

http://www.foxcorp.org/archive/2004/06/14/ASPNET_URL_Rewrite.aspx

(Some URL rewriting stuff)

And this is what happens when you DO NOT use RegEX hehe...

http://thedailywtf.com/archive/2004/06/24/399.aspx
# July 6, 2004 2:46 AM

Jason Salas said:

Thanks! That's a trip!
# July 6, 2004 2:58 AM

TrackBack said:

# July 6, 2004 4:14 AM

Jason Salas said:

Man...if only I could recall all the Spanish I took 14 years ago in high school! I should be able to suss it out, but thanks for the link!
# July 6, 2004 4:30 AM

Kris said:

Y&T - I believe in You
# July 6, 2004 8:05 AM

Tony said:

okay.. I LOVE LOVE LOVE 80's hair bands and I've gone to painstaking efforts to collect the best songs of the times and make my own mix cd's. So far I have 4. Here's some songs... some are ballads, some are blistering guitar tracks, some you may have, some you may need. Do with it what you will

Somethin For The Pain - Bon Jovi
Wild Is The Wind - Bon Jovi
You Give Love A Bad Name - Bon Jovi
Dont' Know What You've Got Til It's Gone - Cinderella
Nobody's Fool - Cinderella
High Enough - Damn Yankees
Love Bites - Def Leppard
Photograph - Def Leppard
Carrie - Europe
The Final Countdown - Europe
All She Wrote - Firehouse
I Need You Now - Firehouse
Love Of A Lifetime - Firehouse
When I Look Into Your Eyes - Firehouse
Once Bitten, Twice Shy - Great White
Alone - Heart
What About Love - Heart
Cold Blood - Kix
Don't Close Your Eyes - Kix
Home Sweet Home - Motley Crue
Without You - Motley Crue
Dr Feelgood - Motley Crue
Kickstart My Heart - Motley Crue
She's Gone - Steelheart
After The Rain - Nelson
Love And Affection - Nelson
House Of Pain - Faster Pussycat
Give It To Me Good - Trixster
Bark At The Moon - Ozzy Osbourne
Goodbye To Romance - Ozzy Osbourne
I Just Want You - Ozzy Osbourne
Iron Man - Ozzy Osbourne
Mama I'm Comin Home - Ozzy Osbourne
Road To Nowhere - Ozzy Osbourne
Shot In The Dark - Ozzy Osbourne
Crazy Train - Ozzy Osbourne
No More Tears - Ozzy Osbourne
Mr Crowley - Ozzy Osbourne
Nothin But A Good Time - Poison
Every Rose Has It's Thorn - Poison
Round And Round - Ratt
Closer To The Heart - Rush
I'll See You In My Dreams - Giant
Can't Fight This Feeling - REO Speedwagon
Rock You Like A Hurricane - Scorpions
Winds Of Change - Scorpions
18 And Life - Skid Row
I Remember You - Skid Row
Crying - Vixen
I Don't Want To Lose You - Steel Dragon
Honestly - Stryper

Growin On Me - The Darkness
Cherry Pie - Warrant
Heaven - Warrant
Here I Go Again - Whitesnake
Is This Love - Whitesnake
Screaming In The Night - Krokus
Love Song - Tesla
When I'm With You - Sheriff
When The Children Cry - White Lion
Goodbye - Night Ranger
Amanda - Boston
Poison - Alice Cooper
Up All Night - Slaughter
Never Tear Us Apart - INXS
Fly To The Angels - Slaughter
Come On Feel The Noise - Quiet Riot
I Just Died In Your Arms - Cutting Crew
Surrender - Cheap Trick
Heat Of The Moment - Asia
Seventeen - Winger
Night Ranger - Sister Christian
Love Is On The Way - Saigon Kick
Edge Of A Broken Heart - Vixen
Still Loving You - Scorpions
Send Me An Angel - Scorpions
Always Somewhere - Scorpions
Miles Away - Winger
Alone Again - Dokken

There you are man.. Months of work on the same type of project. Hope it helps!








# July 6, 2004 4:10 PM

Jason Salas said:

WOW. Tony, you are the king! I've got most of those, but also add in Nelson's "Only Time Will Tell". It was also really good to see some not-so-metal ballads in there like Cheap Trick and Cutting Crew. I think my next project is going to be compiling a list of my favorite new wave songs (Depeche Mode, Erasure, New Order, etc.).

Thanks a lot!
# July 6, 2004 6:45 PM

Tony said:

that sounds like an awesome next project... You'll have to put up your list when you've got that one too. Good choice on the Nelson... can't believe I missed that one!
# July 6, 2004 11:14 PM

Jason Salas said:

cool! i'll keep you in the loop. i also figured out that i neglected to include pantera's "this love" and "cemetary gates" and megadeth's "in my darkest hour" off my list. :)
# July 7, 2004 12:09 AM

Scott Allen said:

What do you think of using Context.Items versus query string parameters? For example, a class with ID, MonthFilter, City, and Attendant properties that is instantiated and put in the Items collection for the detination page to retrieve?
# July 7, 2004 10:55 AM

TrackBack said:

# July 8, 2004 9:27 AM

Tony said:

Cemetery Gates is an Awesome Song! I'm adding that one to my list. Good call. Also.. you can't have a good 80's rock compilation without Megadeth. Metallica also even did a couple good ones with Nothing Else Matters and Unforgiven!
# July 8, 2004 10:42 PM

Jason Salas said:

Hi Tony,

I'm one step ahead of you - I added in "In My Darkest Hour" by Megadeth and "Unforgiven II" by Metallica. Must haves!
# July 8, 2004 11:27 PM

mike said:

What were the errors? It seems to me that what should happen is a process reset.

# July 9, 2004 12:34 AM

Matthew Meyer said:

I'd just expect process restart too. We cautiously and sparring modfiy web.configs on live sites and basically just observe sessions getting abandoned...could depending on session state that suddenly isnt there be behind the errors youre seeing?
# July 9, 2004 12:44 AM

Scott said:

I've changed the web.config files on sites while I still have them open in my browser, hit refresh, and had no problem with the site.

The asp_net worker process doesn't restart. I'm pretty sure the framework supports reloading the web.config on the fly.

# July 9, 2004 12:55 AM

Jason Salas said:

Actually, I think it may have neen a combination of things. I've made changes to web.config and/or Global.asax before, without problems, but this is the second time I've had something negative happen.

Both time have resulted in deadlocks, so maybe Matthew's right...it might have been Session data that needed to expire. It may have been a glitch that somehow I got caught in the middle of.
# July 9, 2004 12:59 AM

Jason Salas said:

On second review, I noted that when I swapped out a web.config file I had locally, it may have used "localhost"-based database connection string(s), hence the problems between the data and business tiers.

I'm still in the dark about the initial inability to get the site to serve content. :(
# July 9, 2004 2:14 AM

Jason Salas said:

Also, I big thanks to Pam from ORCSWeb for being there...although the problem was something I ultimately resolved, it was great to have a patient, friendly voice guiding me through a very stressful process and keeping me sane.
# July 9, 2004 2:15 AM

Tony said:

Nicely done! If I'm ever in Guam we'll have to check out each other's cd collections. You've got good taste in music. My dad was stationed in Guam during Vietnam while he was in the Navy. He hated. Hope it's really not as bad there as his stories. haha
# July 9, 2004 2:19 AM

stefan demetz said:

i think that the web.config should be versioned like the metabase so that one always can go back ...
# July 9, 2004 3:06 AM

Wim said:

Stay the hell out of config files on live boxes? So we might as well just hard code things like appSettings values... ;-)

I'm happy to say I haven't had any problems doing this. Yet...(touch wood)
# July 9, 2004 5:31 AM

Scott Allen said:

The worker process might not restart, but a fresh application domain will spin up with a new copy of the application.
# July 9, 2004 2:35 PM

Lee said:

That's actually an extension of what we use in our branch offices. Our most recent system build allows for us to copy and paste resumes directly from emails and have them parse through an HR-XML based program to create our candidate folders. Candidate replies to job posting are completely automated using this process. It greatly cuts down on our data entry time and allows us more time to recruit. We also have Monster.com completely integrated in to our system allowing us to have a one stop shop for recruiting.
# July 9, 2004 3:54 PM

TrackBack said:

# July 10, 2004 2:27 AM

Scott Galloway said:

Tainted Love - Soft Cell
# July 10, 2004 5:40 PM

Jason Salas said:

Ahh...how could I forget?!? :) Thanks Scott.
# July 10, 2004 5:41 PM

bilbo said:

new edition - popcorn love
# July 10, 2004 8:42 PM

Jason Salas said:

hi bilbo....funny...never heard of that one...i'll check it out.

how could i have also forgotten white lion's cover of "Radar Love"? :(
# July 10, 2004 9:20 PM

Shannon J Hager said:

Alice in Chains - "Love, Hate, Love"
# July 10, 2004 9:30 PM

Jason Salas said:

hi shannon,

ahhh....seattle had to be represented at some point! that also reminds me of the group "Love Spit Love." :)
# July 10, 2004 9:33 PM

guam rules said:

Tesla is my favorite of all 80's bands. When I was stationed at Anderson in 89 and 90 I had seen that Tesla was there in 85. Missed that by just a bit. I believe they make a comment about it in the liner notes of Great Radio controversy. Are there many programming jobs in Guam, man I would love to make it back there some day. Beautiful place.
# July 10, 2004 9:52 PM

Jason Salas said:

Guam is where I grew up, so I remember Tesla playing the Pescador. The name of the band was something like "Young Kid Jet" back then (I can't recall at the moment). Guam isn't too big on programming jobs, but if you make the right connections, you can do very well for yourself. That;s the hard part.
# July 10, 2004 10:05 PM

denny said:

Queen -- Crazy Little Thing Called Love
Pat Benitar -- Love is a Battlefield (sp?)

Hmmm.... must set wayback machine to when I was 18-25 to recall more of them days....

can't recall full names but:

Love STinks ?

or something like that....
# July 11, 2004 2:49 PM

Jeff said:

Cheesy 80's songs, comin' right up (browsing the "Cheesy 80's" folder in the MP3 lib)

Air Supply:
* Lost In Love
* All Out Of Love
* Making Love Out Of Nothing At All
* Young Love
* The One That You Love

REO Speedwagon:
* Keep On Loving You
* That Ain't Love

Doobie Brothers: Real Love
Foreigner: I Want To Know What Love Is
Fleetwood Mac: You Make Loving Fun
Taylor Dayne: I'll Always Love You
Spinners: Could It Be I'm Falling In Love
ABC: Look Of Love
Corey Hart (and Elvis): Can't Help Falling In Love
Lionel Richie: Love Will Find A Way
Pet Shop Boys: Love Comes Quickly
Psychedelic Furs: Love My Way
Robert Palmer: Addicted To Love
Will To Power: Baby, I Love Your Way


# July 11, 2004 7:40 PM

guam rules said:

I believe Tesla was known as City Kidd before they changed their name. Is barney's beach bar still there? The coconut olympics used to be a good time.
# July 12, 2004 12:24 PM

Jason Salas said:

City Kidd - There you go! Barney's moved to at least one other location in Tumon, and then eventually closed down after getting wrecked by a typhoon. Shame...I used to play beach volleyball there all the time.
# July 12, 2004 5:55 PM

KT said:

OMFG!! I just watched it! It is hilarious!! I <3 Hal Sparks For Life!!!!
# July 12, 2004 11:03 PM

Jason Salas said:

oh, man! here on guam out TV programming is tape delayed by two weeks, so i won't be able to catch it! bummer! i knew it was going to be good!
# July 12, 2004 11:06 PM

shadylady said:

I love those series. I am watching it now and it is AWESOME!!
# July 13, 2004 10:36 PM

Jason Salas said:

Damn...I have to wait another 2 weeks until the tapes get here....I CAN'T STAND IT!!!
# July 13, 2004 10:41 PM

Bart Segers said:

Yes - Real Love
Journey- Send her my love
# July 14, 2004 11:17 AM

Jason Salas said:

Good one Bart! I also forgot L.L. Cool J's "I Need Love" and about every song Air Supplr ever recorded. :)
# July 14, 2004 5:34 PM

Justin said:

93
"Tonight on COPS we search a field for the penis"

I love this show now! I was rolling around for like 20 minutes after I watched 93
# July 15, 2004 2:14 AM

nicole said:

thank goodness tony put some reo speedwagon on there! you can't have a power ballad compilation without them. though i notice "keep on loving you" is missing...too sad.
# July 15, 2004 3:16 PM

Joe said:

NEED TO ADD:
Scorpions - Wind of Change

the other 3 scorpions songs don't matter without this one!
don't grow tired ...

Anyway, thanks for the list. It's a good compilation.
# July 15, 2004 6:58 PM

df said:

The George Wallace bit was classic. "Just what I need, something to remind me of the Civil War", and my favorite "when did *pewter* become a precious metal; pardon me madame, that is a beautiful ring, might it be pew-TAH". I honestly think of the George Wallace anytime I see any non-traditional chess piece.
# July 15, 2004 9:48 PM

Matt said:

Don't know if this is faster or slower performance wise, but this was my first thought on this:

SELECT * FROM tablename
WHERE DATEPART(d,[Date]) = DATEPART(d,'7/7/2004')
# July 16, 2004 6:38 PM

Jason Salas said:

Also, someone [ESquared] was nice enough to note the following after I posted my code:

• the first select statement will also return records from 7/8/2004 12 am because BETWEEN is inclusive. In any case you can just do @QueryDate + 1, no need to use DateAdd.

• In the second select, it is unnecessary to add +'00:00:00' because that is truly adding zero.

• smalldatetime does not store seconds. So, adding '23:59:59' ends up adding 24 hours and thus it is identical to the previous select. Change it to '23:59' for correct selection.

• the leading space character is unnecessary. The query engine is not adding a string to a string, it is adding a date to a date. Because of the way dates are stored internally in SQL server, '23:59' is equivalent to '1900-01-01 23:59', (and 23:59:59 is 24 hours) so you're really doing: '1900-01-02 00:00:00' + @QueryDate

This would be a revised version of the query:
SELECT * FROM TableName WHERE [Date] >= @QueryDate AND [Date] < @QueryDate + 1

Note the second comparison is not <=.
# July 16, 2004 6:45 PM

Lucky said:

I've always written it like this:

SELECT * FROM Orders Where CAST(CONVERT(varchar,OrderDate,101) AS DateTime) = '7/7/2004'

Convert the column to 'mm/dd/yy' (101) style and CAST it back to a datetime.
# July 17, 2004 1:15 AM

Millard j. Castroe said:

"I Love the 90's" is my favorite show, i love it. I wish that they had a marothon of "I Love the 70's, 80's, and 90's" that would be so cool
# July 17, 2004 1:34 AM

Jay Zea said:

This show would be so cool on DVD and/or VHS. I'd buy all three DVD's
# July 17, 2004 1:37 AM

shiantoo lee said:

i Agree with millard, and jay, they should have a marothon, and have dvd's.
# July 17, 2004 1:39 AM

Homie the clown said:

this is going to be the BEst show since "I Love the 80's"
# July 17, 2004 1:42 AM

TrackBack said:

# July 17, 2004 3:18 AM

TrackBack said:

# July 17, 2004 3:18 AM

Jason Salas said:

Hi Lucky,

Someone advised me against that:

"the conversion must be done for every row in the entire table and to boot may not use any indexes. Selecting with the >= AND < method has neither of these problems."
# July 17, 2004 3:37 AM

omen said:

As much as possible, avoid having computations on the column side of a comparison...shift the computation over to the "constant" side:

WHERE CAST(CONVERT(varchar,OrderDate,101) AS DateTime) = '7/7/2004' would be suboptimal and won't directly work for say, GETDATE(), as you must have the time stripped out

instead do:

DECLARE @Date datetime
SET @Date = FLOOR(CONVERT(float, GETDATE()))
..
WHERE OrderDate BETWEEN @Date AND @Date + 1

This will be more efficient and will take advantage of an index on OrderDate if one exists. @Date + 1 and FLOORing a date works in SQL Server 7 and 2000 and is faster than DATEADD and a CONVERT to a varchar with a style. It might produce different results (it might even be illegal) in future versions or other RDBMSs. I forgot if it worked in 6.5.
# July 17, 2004 2:50 PM

Scott said:

Where [date] like '7/1/2004%'

? Does that work, I think it should. Don't have Query Analyzer here in front of me to test it with.
# July 17, 2004 4:47 PM

Jerry Pisk said:

Scoot - no:

match_expression [ NOT ] LIKE pattern [ ESCAPE escape_character ]

match_expression
Is any valid SQL Server expression of character string data type.

a datetime is not a character string data type. And it will only work with US-English locale, which may be a problem as well.

And to comment on Jason's note: DATEDIFF will also use indexes. That seems to be the best way to search on dates belonging to one day - DATEDIFF(dd, @datetomatch, [date-column]) = 0. Matt's method of using DATEPART is flawed as it will match the same dates in different years.
# July 17, 2004 6:05 PM

Jason Salas said:

and if you love the 80's, you'll surely remember this:

http://weblogs.asp.net/jasonsalas/archive/2004/07/18/186216.aspx
# July 17, 2004 6:18 PM

Jason Salas said:

...and if you love the 90's you'll love this:

http://weblogs.asp.net/jasonsalas/archive/2004/07/18/186216.aspx
# July 17, 2004 6:18 PM

Jason Salas said:

I was actually surprised that VH1 didn't cover this in "I Love the 80's". They did other urban myths, but they missed this one. Huh.
# July 17, 2004 6:19 PM

Jason Salas said:

Thanks all for your input. This is actually the code I used in the end to get what I wanted to do. I realize that the @Date + 1 might not be the fastest way to get things done, but in my code, wherein I have to return records for a successive number of days, it works:

CREATE PROCEDURE GetWeeklyStories
(
@QueryDate SMALLDATETIME
)
AS
DECLARE @incrementor INT
SET @incrementor = 1

-- get the first story for the latest day in the week
SELECT * FROM TableName WHERE a.Date >= @QueryDate AND a.Date < @QueryDate + 1;

-- now, get the remaining stories for the week, counting forward
WHILE @incrementor <= 6
BEGIN
SET @QueryDate = @QueryDate + 1
SELECT * FROM TableName WHERE a.Date >= @QueryDate AND a.Date < @QueryDate + 1;
SET @incrementor = @incrementor + 1
END
GO
# July 17, 2004 6:33 PM

Andrew said:

Thanks for just scaring the **** out of me ;-)
# July 17, 2004 6:59 PM

Jason Salas said:

For real...the only thing more offsetting than talking about it is showing the picture. :)
# July 17, 2004 7:01 PM

Scott Galloway said:

Did you actually read the snopes link: http://www.snopes.com/movies/films/3menbaby.htm
It's just a cutout of Ted Danson which appears elsewhere in the movie - and was part of a deleted scene...
# July 17, 2004 8:31 PM

Jason Salas said:

yeah...that's one of the theories, but other sites i've found dispute it. yikes!
# July 17, 2004 8:32 PM

Jason Salas said:

actually, that's the conspiracy theorist in me....just propagating the myth...
# July 17, 2004 8:32 PM

Jerry Pisk said:

Jason, use DATEDIFF. That's what's it there for. Adding numbers to dates may break at any moment, DATEDIFF is guaranteed to work.
# July 17, 2004 11:41 PM

omen said:

although using DATEDIFF on a column will use a clustered index on that column if one exists, it will perform an index scan which can be very costly

using "BETWEEN @Date AND @Date + 1" and a clustered index on the concerned column will will perform an index seek, which is potentially much faster than an index scan

in the sample I have right now with 5000+ rows, DATEDIFF produces 65 logical reads while "BETWEEN @Date AND @Date + 1" produces only 2 logical reads

if you have a table with few rows this might make little difference but if you are dealing with tables in the hundreds of thousands or millions of rows then it will be a big deal

additionally, it seems both approaches wont use a non-clustered index so make sure your index is clustered. clustered indexes should be SOP on columns that heavily participate in range queries like this one
# July 18, 2004 2:44 AM

TrackBack said:

# July 18, 2004 3:02 PM

M. Keith Warren said:

Jason,

For your hard work, I hereby nominate you to the SVP Program. More can be read about the SVP Program below.

http://weblogs.asp.net/kwarren/archive/2004/04/13/112411.aspx


# July 19, 2004 12:14 AM

Jason Salas said:

hahahaha! good one! maybe i should change mine to "mediocre" valuable professional. Thanks for the laugh. :)
# July 19, 2004 12:25 AM

balamurugan said:

Can any one give me free downloads of all the benny hill comedy collection in this website. I am really an addict of him. i really wanna his show. Here in Germany, i can't see this shows. so please some one put his collections in this forum or website.


Bye

Balamurugan
Germany.
calltobala@spymac.com
# July 19, 2004 2:28 PM

SHERLY said:

FUCK YALL
# July 19, 2004 9:55 PM

TrackBack said:

# July 20, 2004 3:26 PM

TrackBack said:

# July 20, 2004 4:49 PM

Jason Mauss said:

It's funny reading this blog entry - I got the same email about an hour ago - read that headline and thought the same thing. "tab" controls = repeater, datalist, datagrid? huh?? I thought they were talking about tabs in the way you have tabs with the .Text admin tool or something.
# July 20, 2004 5:21 PM

Jason Salas said:

Hey Jason!

I really thought this was strange...maybe this was an overzealous intern getting the first cover story headline duty, or - perish the thought - a non-techie writer being assigned to write a strong headline. Bad things normally happen with the latter, in my experience (being a former non-techie myself). :)
# July 20, 2004 5:24 PM

Jason Mauss said:

Yeah - whoever it was, I don't think they understood how differently "tab" and "tabular" can be interpreted. I too think of the tabstrip concept by default whenever I hear the term "tab" used.

But hey, who knows, maybe "tabular" is old and busted, and "tab" is the new hotness. *<[:-)
# July 20, 2004 5:27 PM

Jason Salas said:

Bad things happen when marketingfolk enter a room for of technical people and say, "Hey...I've got an idea!".

Trust me...I've been on both sides of the equation. ;-)

Come to think of it. the term "tabular" is only one part of the List controls. If that were the case, why not include other databound controls like CheckBoxLists and RadioButtonList, which of course, allow for tabular HTML to be generated in their presentation? That would be more accurate, I think.

The only List control that is naturally "tabular", in the classic sense of the word would be the DataGrid's natural implementation. DataLists and Repeaters can be formatted linearly, so this rules them out somewhat.

But of couse, I'm preaching to the choir here, no?
# July 20, 2004 5:32 PM

Jason Mauss said:

Yeah - preaching to the choir indeed. IMO, tabular = at least 2 columns and at least 2 rows.
# July 20, 2004 5:55 PM

TrackBack said:

Lazycoder weblog &raquo; tight code and more RAM
# July 20, 2004 7:09 PM

Jeff Lewis said:

Just as a side note, AngryCoder.com doesn't have an rss feed, but I've provided one (from their xml feed) at http://consultutah.com/angrycoderrss.asmx/GetRss

# July 20, 2004 7:34 PM

Dave Burke said:

This post is almost as inspirational as your 80's Monster Ballads post. :-)

Heck yeah, I agree 100%. eZine was RADICAL! I learned a ton, coding my .NET butt off like it was 2001. All thanks to the aC. Thanks for posting this. Flamers to this post are lamers.

Thanks for giving Jonathan Goodyear's eZine source its due recognition.
# July 20, 2004 11:34 PM

Jason Salas said:

The corollary of this is that it's a shame FTP botched the headline...it took away from what was otherwise a brilliant piece of work by Doug Thews: http://www.ftponline.com/vsm/2004_09/magazine/features/dthews/

Then again, based on the implied message, it may have gotten a lot more views - albeit based on the wrong assumptions - than it normally would. :)
# July 21, 2004 12:44 AM

Jason Mauss said:

weird...I'm writing an article for angryCoder at this very moment...and I took a break to read some blogs and stumbled upon this. That's twice today that your blog has grabbed my attention because of some similar thoughts/ideas. too eerie.
# July 21, 2004 12:45 AM

Jason Salas said:

Umm...great minds think alike? Or at least people with the same name do? :)
# July 21, 2004 1:23 AM

Jason Mauss said:

heh, I'll go with both. Just don't tell me you had a bday recently or I might have to refer to you as my doppleganger.
# July 21, 2004 2:18 AM

Jason Salas said:

Well, April 24th...not too recently. I turned 30, sharing my big day with Barbara Streisand and Kelly Clarkson.
# July 21, 2004 2:30 AM

stefan demetz said:

probably the ASPNET process was paging on your pc with little RAM
# July 21, 2004 4:06 AM

Jason Salas said:

geez...256MB ain't what it used to be...
# July 21, 2004 4:43 AM

Scott Galloway said:

To be honest I'm pretty much the same, I came to web development from Perl and security apps (which were pretty much all command line). I still remember the time when I thought I'd never get the hang of HTML and Javascript was a strange and scary place. Windows forms stuff was something I seriously got into first time round during my VB6 / VC++6 days and I did not enjoy it at all...this time though I have to say, .NET does significantly improve the experience. Chris Sells' book on Windows Forms with C# is excellent and gets all the basics out of the way pretty quickly. For the apps I've tended to write I really haven't bothered much with going beyond what .NET offers (so very few DLLImports or calling native libraries). The way I got a handle on it was to have a relatively simple app in mind that I could do really easily in ASP.NET (so I had a grip on the basic structure), I then implemented it in Windows forms then enhanced it with sruff like threading, progress bars, multiple menus and tabs etc...
What I notice in developing Windows Forms apps was how trivial the actual interface building is in comparison to ASP.NET - the designers are just so much more powerful. Anyway, long reply, sorry! Anyway, give it a go, you might like it!
# July 21, 2004 5:31 AM

Martin Spedding said:

Hi,

maybe it is because I have been in this business for a long time but instinctively I build a win forms app. Sometimes, I will put a web interface on the application. Howver, I always feel like I am comprising when I do a web app, the experience is just not rich enough.

I think it really depends when you came to development, before or after the internet age.

I might expand on this in a blog entry as I have been thinking about this for a while.

Martin
# July 21, 2004 5:43 AM

Joe said:

I've found gems in films that otherwise tanked, and I've sat through movies that were perfect overall but contained little real substance in individual shot scenes.

I've found this too! For some of the movies which are great overall, I'm surprised that I can't find even one great scene. Then there are the crappy movies that do contain moments of what i consider to be most excellent scenes.
# July 21, 2004 6:32 AM

Søren Lund said:

I share your pain. I really want to make WinForms applications but the fact that you spend so much time just trying to get the UI elements placed just takes the fun out of it. That is why I am looking forward to Avalon which brings the ability to create WinForm GUIs in XAML much like we do with web pages today.

We only have to wait 5 years before XAML and Avalon is standard Windows functionality :)
# July 21, 2004 8:23 AM

Jay Glynn said:

I have just the opposite feeling. Everytime I have to do an ASP.NET app I feel like I'm developing with one hand tied behind my back.

Oh well, to each his/her own....
# July 21, 2004 8:44 AM

Nathan Allan said:

I found this when doing a google search for this very thing (a programmer's keyboard). I would buy one. Forget just remapping keys, how about adding a bunch of keys so we don't have to use exotic cords for things like "set bookmark", "collapse definition". It would also be nice to figure out away to reduce the stretch for things like parens. More than anything, however, I would like to see simpler navigation... some way to navigate the cursor quickly to a certain column/row without having to leave home position.
# July 21, 2004 12:06 PM

Tony said:

nicely put. I can tell by your extensive music knowledge and your wonderful gift of the pen that you must be a highly respected music critic for a magazie the caliber of Rolling Stone. Thank you so much for your input. If there is anything else we can do please don't hesitate to coach us and show us your wisdom
# July 21, 2004 1:06 PM

Jeff said:

I feel your pain. It's not that coding the app is difficult it's formatting the app. I can't stand that part of it. I'm bidding on a project right now that could easily do five figures, and I'm wondering if I really want to commit to it.
# July 21, 2004 1:22 PM

Shannon J Hager said:

The practice started on paper before it existed on screens, I think.
# July 22, 2004 9:07 AM

Alex Papadimoulis said:

For sure. Think of that awful, old green-white barred feed paper!

I think it's just a natural way to separate information visually.
# July 22, 2004 9:24 AM

chadbr said:

Always look to the mainframe... greenbar is almost as old as printers...

http://www.formspro.net/propane/images/sup_greenbar.gif
# July 22, 2004 10:52 AM

Ken Cox [MVP - ASP.NET] said:

Alternating table rows have probably been patented. Someday, the alleged inventor will surface in a lawsuit against Microsoft.
# July 22, 2004 11:53 AM

Jon Galloway said:

This can be done on the client side with Javascript and CSS, too: http://www.alistapart.com/articles/zebratables/.

And, someday, when we get browsers with CSS3 support, this can be done completely in CSS: http://www.w3.org/TR/css3-selectors/.
# July 22, 2004 12:01 PM

TrackBack said:

# July 22, 2004 5:07 PM

jason salas said:

i'm posting thiis now w/ the Tthera phone with Pocket PC 2004. SWEET!
# July 23, 2004 6:56 AM

Jason Salas said:

I can't velieve I'm saying this, but I'm finding that I like the Treo's web features better than the Thera. The PalmOS browser is always-on, as opposed for the need to connect to the Verizon-supplied proprietary network interface on the Thera. Also - and this was a shocker to me - I enjoyed the user experience a lot more with the PalmOS browser compared to Pocket Internet Explorer.

The latter didn't have a status bar, so you've no idea where a page is in terms of its loading completeness. Also, graphics appeared to be richers and supported more cleanly on the Palm device.

Wow...
# July 23, 2004 8:22 AM

Sam said:

The only time I say anything to my code is to swear at it. But usually I guess I'm swearing at myself for a silly mistake.
# July 23, 2004 8:41 AM

Scott Galloway said:

On occasion writing state management code can make me variously religious and outright obscene...
# July 23, 2004 9:06 AM

Dave Burke said:

Jman, I had a Thera for a few weeks and took it back to Verizon. It was a crappy phone (more like a walkie-talkie) and because its battery life was so pitiful, not a decent PocketPC either. I loved the idea of an integrated device that I could use as a phone AND read Pollyanna on while waiting for my food at Friendly's, but I'm happy with my Dell Axim and Motorola V60i combo since they both do what they do well.

Here's my original thera post if interested. That's when I still thought it was cool.

http://weblogs.asp.net/dburke/archive/2003/10/20/32724.aspx

As for the man purse, hey, why not go with a waist pouch? They rock!
# July 23, 2004 9:54 AM

Jerry Seinfeld said:

Get a European Carry All
# July 23, 2004 10:21 AM

Salman said:

Could the eZine be really called a blog? eZine is more of a content management system than a blog, just for the lack of RSS feed. I'm not an expert of blogs, but I guess the discussion comes down to "what is a blog application". Anyhow, it was a great app and I also download and learned from it in my early stages....
# July 23, 2004 11:50 AM

Tim said:

OK. You're weird.
# July 23, 2004 1:00 PM

Dave Burke said:

Jerry, with a puffy shirt, it'll be Boffo!
# July 23, 2004 1:13 PM

AlEx said:

On '96 it was soo funny that Hal Sparks did Forrest Gump and Karal from Sling Blade
# July 23, 2004 1:51 PM

Jason Salas said:

I'm also coming to learn that the browser on the PalmOS-enabled Treo does graphics a heckuva lot better than PocketIE. The former displays them just about as nice as they'd come up on the desktop WWW, while the latter shows severely pixelated renditions of images and graphics. Ouch. In IE's defense, there is a menu option to not load graphics, which helps.
# July 23, 2004 7:09 PM

Jason Salas said:

I found the solution to my woes....cargo pants!
# July 23, 2004 7:11 PM

marcy said:

you guys rock...these songs totally rule...love the site...wanna chat sometime hit me up yahoo messenger sevgarden27....name ismarcy im 27...any hotties out there? hehe laters
# July 24, 2004 5:50 AM

Smarter than you said:

Honestly, are all you guys Dorkwads??? I mean, honestly, who wants to watch ppl type html codes for 30 minutes? And if you were hoping for a rapper to host this show....u'd be out of luck! That's a truly sorry idea for a show. sorry if i crushed your dreams, but maybe next time. Then again, maybe not.
# July 24, 2004 3:37 PM

Kirk Linell said:

Hey guys i LOVE L.L. Cool J!!!!!

Oh guys!!!
# July 27, 2004 9:16 PM

agneta said:

*cough*
I want to join in and add the following.

Black Velvet /Alannah Myles
Lover of Mine/Alannah Myles
Love is a Killer/Vixen
Eye of the tiger/Survivor
# July 28, 2004 9:37 AM

agneta said:

(Eye of the tiger might not be a "ballad", but it's just so damn great!)
# July 28, 2004 9:38 AM

nvbnvbn said:

vbnvb
# July 29, 2004 7:22 AM

TrackBack said:

# July 31, 2004 7:06 AM

Jason Salas said:

If anyone's interested in what I thought about the smartphones, check out: http://www.kuam.com/news/10361.aspx
# July 31, 2004 5:25 PM

Jason Salas said:

It seems I spoke to soon...the iPaq charges up fine while in the cradle, but won't hold a charge on its own. Dang.
# August 1, 2004 2:27 AM

David Cumps said:

These are great! :p
# August 1, 2004 3:38 AM

Jason Salas said:

Glad you like them. I've used a couple of 'em in my day, and I've been hearing them for many more years. :)
# August 1, 2004 3:44 AM

TrackBack said:

# August 1, 2004 5:34 AM

JosephCooney said:

# August 1, 2004 7:35 AM

TrackBack said:

# August 3, 2004 8:12 AM

TrackBack said:

# August 3, 2004 10:08 AM

TrackBack said:

# August 3, 2004 10:09 AM

TrackBack said:

# August 3, 2004 10:16 AM

Scott said:

I think looking cross-ways at your application causes a complete site recompile. It's annoying. The nice thing is, it's annoying across all platforms and languages. You have to recomp your entire JSP application if you change a JSP file too. So at least the entire web development world is annoyed and not just ASP.NET (except for those friggin' PHP devs, DAMN THEM!!)

I'm interested in finding out how the ASP.NET worker process decides what files are part of an application. If it just gathers up ALL the files with extensions it knows in a given directory and sub-directory and compiles them or if it makes some kind of association between the files and JITs them based on that.
# August 3, 2004 8:35 PM

Jason Salas said:

Hey Scott!

AFAIK, the ASP.NET DLL will track any changes application-wide and then JIT-recompiles any/all files that are mapped to it for handling. I had assumed that this would force my homepage to be recompiled, forcing it to load a tad slower upon the first page load after the change was made, but I was really surprised to learn that my Cache API entries had apparently been invalidated, as well, if that's what really happened.
# August 3, 2004 9:13 PM

TrackBack said:

# August 4, 2004 2:53 AM

Scott said:

I've seen that kind of a switch thrown whenever the ASP.NET cache is changed. It's not a full process restart, but the application does seem to restart, resetting session vars and what not One of our sysadmins had a virus scanner actively scanning the asp.net cache directory, which modified the files, which then caused the application to recompile. The worker process still showed a date a few weeks back for the last restart.
# August 4, 2004 3:04 PM

Thomas Williams said:

G'day Jason, nice list, I agree with all (haven't seen Swordfish yet, and I can barely remember Tron). You could go further and list TV shows that use technology, my favorite being two episodes of the Simpsons, one where Homer starts "hyperglobalmegacorp" (or something like that), the other where he becomes overweight and works from home (one scene where he's frantically looking for the "any key" is pretty funny). Classics.

Is the bio here what you really do? Sounds like a lot!
# August 5, 2004 3:25 AM

Jason Salas said:

Hi Thomas,

Yeah, I do all that and a little bit more. When you find a job that you love, you never have to work a day in your life. :)
# August 5, 2004 4:31 AM

Bill Evjen said:

Man ... even the Wrox publisher, Joe W., told me that I HAVE to redo my photo as I am not smiling! :)

BUT ... you should have seen this lady taking my picture! I was nervous about her ... she was quite strange. I had about 6 huge lights pointed at me as well and was wiping the tears from my eyes between each shot. ... maybe I do need to redo it! ;)
# August 6, 2004 7:41 AM

TrackBack said:

# August 6, 2004 9:05 AM

TrackBack said:

# August 6, 2004 12:20 PM

Jason Salas said:

Hahaha! I did think that picture looked a little uncharacteristic of you, Bill! Maybe the book's content isn't the only thing in beta! Ha! I'll have your review posted soon.
# August 6, 2004 10:58 PM

Jason Salas said:

Well, here's the review for Bill's V2 book: http://weblogs.asp.net/jasonsalas/archive/2004/08/07/210356.aspx
# August 7, 2004 12:05 AM

jayson knight said:

agreed.
# August 7, 2004 1:53 AM

TrackBack said:

# August 7, 2004 7:57 AM

Bruce Johnson said:

You can't tell me that his idea for airtight security isn't an appealing one. ;)
# August 7, 2004 11:14 AM

TrackBack said:

# August 8, 2004 2:19 AM

TrackBack said:

# August 8, 2004 2:28 AM

Nasser Jasim said:

that was Big !!!


just one thing
"with Microsoft having successfully acquired Adobe"
what is that supposed to mean ?
# August 8, 2004 3:44 AM

Jason Salas said:

Just a theoretical projection. :)
# August 8, 2004 3:49 AM

bpo company india said:

As technology is developing the new softwares are customized to meet the user needs. This has been an important factor for the worldwide recognition of the software and its usage.

The more user friendly it is .. the more interest it generates
# August 9, 2004 12:40 AM

Andy said:

-------------------------------------
Well, people don't change. And it would be stupid for us to try to get them to change their expected behavior, lest we lose their interest in our product and stop using it altogether. Better doesn't always necessarily mean bigger.
--------------------------------------

Once the product highlights are announced the people are certainly going to recognize and adapt to it.
# August 9, 2004 12:44 AM

Joe said:

I just navigated to your FamiliarFaces page.

At first glance, the only way to interact with it is to click on "Click here to send your Familiar Face" (no I won't think to scroll down at first glance).
At the next step (signup page) the only visible way to interact is to signup.
a) people often don't read: so may miss that they can browse the gallery without signing up
b) there is no indication of how to browse the gallery if the user doesn't want to sign up. Maybe "browse the gallery" should be a hyperlink to the gallery browser.

Even if someone does manage to find their way to clicking on "See Classic Familiar Faces" they are immediately exhorted to "Click here to get started and submit your pictures...".
# August 9, 2004 5:39 AM

TrackBack said:

# August 9, 2004 6:02 AM

TrackBack said:

# August 9, 2004 6:02 AM

Jason Salas said:

Just a comment...at the end of the show, Craig closed the show with a "Get well soon, Keith, I'm proud of ya!" Doesn't take a genius to deduce that Keith Olbermann making a hurried, albeit non-scheduled appearance would be appreciated by a helluva lot of people.

Me included.
# August 9, 2004 6:41 AM

dan said:

Yeah, caught the "Get well Keith" line at the end. The funniest bits were flashbacks of goofy Charley Steiner giggling like a schoolgirl. Apparently, the persons on the other end of the earpieces just knew how to crack Charley up, and once he started, he couldn't stop. :P<br>

http://www.wooba.com/archives/2004/08/08/espn-old-school-makes-a-comeback
# August 9, 2004 3:41 PM

Jason Salas said:

Trust me...I can attest that on certain occasions when producers or co-anchors feel giddy...they'll do anything to make you laugh on live TV. I once was reading sports highlights when a co-anchor paraded into the studio and posed like David in front of the camera with his "naughty bits" adhered to his thigh with duct tape. That was a hard highlight to read through and keep a straight face.

Half of me wanted to crack up, the other half was in shock.
# August 9, 2004 5:08 PM

Sonu Kapoor said:

All the best for the job pal!
# August 9, 2004 10:02 PM

Jason Salas said:

Thanks!
# August 9, 2004 10:29 PM

Sazzad said:

take a loot at http://www.codeproject.com/csharp/dotnetbandobjects.asp

this probably what u r looking for.

or if don't have the time to do it either mail at djad442@yahoo.com. this can be a small project for me.

cheers

Sazzad
# August 9, 2004 10:55 PM

Jason Salas said:

Hi Sazzad,

I was looking for more of a toolbar embedded within IE, not the Windows Taskbar. That's a good start, though.
# August 9, 2004 10:58 PM

mike said:

As for the photo size limit, many people have two problems. One, a lot of people have no idea what size a problem is. Folks who use Windows Explorer in Details view know those kinds of things, but that's the kind of information that a person can easily not see.

And even if they do know what size their .jpgs are, a lot of people have no idea how to make them smaller. Outlook (and I assume other email clients) will ask whether you want to reduce the size of a picture "for the Web" or some such friendly phrase. But without an automatic tool like that, most people are lost. You surely don't expect them to use Paint, do you? :-)
# August 9, 2004 11:44 PM

Heather said:

I don't mind all the questions, so you are welcome...and good luck!
# August 10, 2004 12:31 AM

Jason Salas said:

Thanks Heather!
# August 10, 2004 12:42 AM

Danish Sami said:

Hi Jason,

You need a IE toolbar? just simply send your requirements along with the urls and other stuff you want to add to the toolbar.

I'm happy to make those $$$

Cheers,

-Danish Sami
sami_danish@yahoo.com
# August 10, 2004 1:15 AM

Michal said:

Good luck!
I went through the same few weeks ago, but after answering those entry questions I received a reply that there are no visas at the moment, so Microsoft doesn't consider international candidates (I'm from Poland). So, I'll try again later...

Again, best of luck to you. Maybe we will someday work together there...
# August 10, 2004 5:36 AM

TrackBack said:

# August 10, 2004 9:02 AM

Jason Salas said:

i'm lucky that i'm from Guam and therefore I'm a U.S. citizen.
# August 10, 2004 9:44 AM

TrackBack said:

# August 11, 2004 3:47 AM

TrackBack said:

# August 11, 2004 3:47 AM

TrackBack said:

# August 11, 2004 3:55 AM

TrackBack said:

# August 11, 2004 6:48 AM

Luciano Evaristo Guerche said:

Jason,

I'll bet here: ASP.NET 3.0 = XAML

What do you think about?
# August 11, 2004 4:45 PM

Andrei said:

Here is a small list : (i gave you a link to the SmartPhone aggregator)

PC : SharpReader, NewsGator sau RssBandit
PochetPC : Pocket RSS
SmartPhone : SPRSS (http://www.codent.com/smartphone/sprss.cab)
iPOD : Ipod Agent
Symbian : FeedBurner
Palm : HandRSS
Macintosh : NetNewsWire
Linux : Syndigator

Hope this helps
# August 12, 2004 1:26 AM

Jason Salas said:

Thanks Andrei! I downloaded HandRSS for my Treo and it's great! Just what I was after. It's sort of a pain setting up, as I've got to manually unsubscribe from all the default newsfeeds, and it's a bummer that the read can't parse XML feeds larger than 64K, but otherwise it's a sweet product, and worth the $14.95.
# August 12, 2004 7:34 AM

Darrell said:

I don't think it is a question of is it applicable to web devs or architects or windows devs, but of the skill level of the developer. I looked at the book's target audience, and I am definitely not in it! So, considering my free time (asymptotically approaching zero), there are other books that were a better use of my time. What I *really* appreciate is Mike clearly delineating the target audience.

And the problem with a review of this book is any nuggest one person mines and posts will probably not be what another would mine and post. I think the book is a great idea and I wish Mike all the best. One day I'll probably write a book and I'll bet Mike won't buy it because he's already familiar with the subject matter! :)
# August 12, 2004 10:59 AM

mike said:

I'm curious what you think the literary impact (as opposed to political impact) "The Satanic Verses" has been. Salinger is widely read and taught and, arguably, refreshed a traditional genre with a new voice. Rushdie (inadvertently?) stirred up a lot of political trouble, but I can't say I know anyone who's actually read the book.

I also suspect the readership of Gunderloy and Dan Brown overlaps quite a bit. :-)
# August 12, 2004 11:25 AM

Satan said:

Heaven? You guys are dreaming. Welcome home Ricky! The fire is waiting!

NOTE: The criteria used to determine that Rick James is going to hell is the universal rule of good vs. bad which has existed since the beginning of time. Being that Rick was known to experiment with crack, cocaine, and other undoubtedly wrong substances, he is not a prime candidate for Paradise. Sorry to dissappoint you.

See the link below for more information about Rick James' crack cocaine escapades:
http://www.google.com/search?hl=en&ie=UTF-8&q=rick+james+crack&btnG=Google+Search
# August 12, 2004 4:06 PM

matthew said:

coder to developer is for programmers with less than 3 years experience who probably do not read & research a lot (in which case they are the very people least likely to be exposed to the book). For anyone that actually knows what source control and bug tracking is, you will get very very little from it.

Code complete ii is twenty times more interesting (although not the bible it comes close to being), for a semi-experienced progrmmer.
# August 12, 2004 4:25 PM

Mike Gunderloy said:

Darrell: I'll just get your publisher to send me a review copy - go ahead and write!

Mike: I'd be happy if I just got some overlap from readers of the Illuminatus! trilogy; I go back to an earlier generation of conspiracy books. There are, of course, no secret in-jokes or conspiracy references in C2D.

Matthew: You've delineated my target audience fairly well, though I don't couch it in terms of number of years of experience so much as type of experience. It's perfectly possible to have five or ten years of experience coding without having looked out to larger issues of development, and then to have to make the change in a hurry. Those are the people I'm primarily writing to. In addition, as others have noted, my focus is .NET-centric (at least, in this edition), so it's most useful for developers in .NET shops. I don't think it competes with CODE COMPLETE; the two books have different purposes.

Now, on to the original question: how applcable is it to Web developers and architects? Certainly less than it is to desktop developers and coders, just as it's less for J2EE hopefuls than .NET beginners. But one thing I would point out is that the book is inexpensive and your time probably isn't. How many leads on useful tools and techniques do you need to get to make skimming the book worthwhile? Probably not a whole lot. If anyone is still trying to figure out whether it's the right book, there's more info over on http://www.codertodeveloper.com to help you decide.

# August 12, 2004 5:39 PM

Jason Salas said:

Hi Mike (Pope),

I haven't read The Satanic Verses, nor do I plan to anytime soon; I was postulating that for us newly-minted 30 year olds, the only significant literary works in terms of cultural impact that have come out in our lifetimes would be the mentioned titles (and possibly "Tuesdays with Morrie").

Where is the "Hamlet" or "To Kill A Mockingbird" of my generation? Sadly, I don't think we've been fortunate to have been blessed with such a contribution from anyone yet. :)
# August 12, 2004 6:05 PM

Jason Salas said:

Hi Mike (Gunderloy),

Thanks for the feedback. I'm anxiously awaiting to read your book, as I mentioned, it's all the rage with devs these days. I understand that in general the concepts and principles are more adhered to desktop devs, but then again, I've found in having read so many books that if the reader attacks a work with an open mind, you can find a gem and make it work for you in any title. I'll drop you a line when I post a review. :)
# August 12, 2004 6:09 PM

Jim Bolla said:

rock on indeed \m/
# August 13, 2004 11:02 AM

TrackBack said:

# August 14, 2004 1:44 AM

Geoff Appleby said:

Well thanks for the kind words :)

It's coming along swimmingly, by the way. The only major job i have left is to refine my custom controls into something prettier. Got any good references on custom control creation? :) Yeah yeah, i know, you're a web guy :P
# August 14, 2004 6:25 PM

Jason Salas said:

Very well deserved, I assure you. :)
# August 14, 2004 7:06 PM

William Luu said:

Cool, Aussies taking over the world :)

I'd like to check out this project sometime, is the source code going to be made available or?

Goodluck with it guys!
# August 14, 2004 10:07 PM

Geoff Appleby said:

William: If you keep up to date with Jason's posts, you'll see that we're rolling back to a non dotnet solution for this.

However, I've still developed vb.net only ie toolbars (and explorer bars) - i'll be releasing these as a generic downloadable set of controls and a full write up of how they were implemented and the source will be available. Where these get published (my blog, or codeproject, or a gotdotnet workspace) is something i'm yet to decide.

Contact me directly if you're interested, and i can send you a mail when i have something up and viewable :)

--Geoff
# August 15, 2004 10:16 PM

Leonard said:

So, is there any chance that a .NET compiled project be run on a machine without the framework ?
# August 16, 2004 10:23 AM

Jason Salas said:

As I understand it (anyone with more accurate knowledge than I feel free to jump in anytime), the only OS that ships with .NET support is Win2003. To get a .NET-compiled program to work on a machine without .NET installed requires downloading the 23.5MB .NET Framework Runtime.

It's bascially .NET or .not. :(
# August 16, 2004 7:04 PM

Torley Wong said:

I enjoy a diverse variety of music myself... I myself am a Technomusicologist so my bias towards the electronic/electronica/techno field is obvious, but it is such a big blanket. Some techno is repetitive and monotonous while other genres are quite the opposite and spastic and hectic and ever-varying. There's all sorts of hybrids too, even techno-metal! Cheers.
# August 16, 2004 8:02 PM

Darrell said:

Spider soliataire works well if your team at work has a "high scores" web site, like my old job used to. :)
# August 17, 2004 3:46 PM

Geoff Appleby said:

That's an interesting list you have there. Buggered if I know how who'd be on mine, but...

I like people 2, 4, and 8.
I'd change 3 to Kurt Cobain, most likely :)
Kirk Hammet! Yeah! I'm a metallica fan from way back, and he's most definately one of the best guitarists I've heard. Cant' say i think much of thier last album tho.
# August 17, 2004 9:06 PM

don@ghostdev.ca (Don Newman) said:

I wouldn't mind myself and without any events in Canada either I might as well be in Guam... Winter IS coming, maybe I can get work to send me to Guam...
# August 17, 2004 11:14 PM

TrackBack said:

Ping Back来自:blog.csdn.net
# August 24, 2004 3:08 PM

TrackBack said:

# August 26, 2004 8:39 AM

Ron said:

The Net -- kinda hokey, but still pretty cool.
# August 28, 2004 3:49 PM

TrackBack said:

Ping Back来自:blog.csdn.net
# August 31, 2004 3:32 PM

TrackBack said:

Ping Back来自:blog.csdn.net
# September 9, 2004 8:35 PM

TrackBack said:

# September 17, 2004 5:17 PM

Jeff Julian said:

Very interesting idea.
# September 18, 2004 12:31 PM

Douglas Reilly said:

I would add Susan Warren, perhaps, to the list of folks you have.
# September 19, 2004 11:39 AM

TrackBack said:

# September 19, 2004 3:34 PM

Jason Salas said:

Thanks for the suggestions...it may be the literary equivalent of VH-1's series "When [TOPIC] Ruled the World", in this case, TOPIC being ASP.NET developers. :)
# September 20, 2004 8:06 PM

RyanH said:

Hi Jason,

Nice post - i've extended this slightly and provided below the textbox class we use throughout our applications ;)

Option Strict On
Option Explicit On

Imports System.Web

Namespace InstantASP.Common.UI.WebControls

Public Class TextBox
Inherits System.Web.UI.WebControls.TextBox

Private m_Focus As Boolean = False
Private m_DefaultValue As String

Public Property Focus() As Boolean
Get
Return m_Focus
End Get
Set(ByVal Value As Boolean)
m_Focus = Value
End Set
End Property

Public Property DefaultValue() As String
Get
Return m_DefaultValue
End Get
Set(ByVal Value As String)
m_DefaultValue = InstantASP.Common.Globalization.ResourceManager.GetKey(Value)
End Set
End Property

Protected Overrides Sub OnInit(ByVal e As System.EventArgs)

If m_Focus And m_DefaultValue Is Nothing Then
RegisterFocusScriptBlock()
ElseIf Not m_DefaultValue Is Nothing Then
Me.Attributes("OnFocus") = "clearValue(this);"
Me.Attributes("OnBlur") = "resetValue(this);"
Me.Text = m_DefaultValue
RegisterDefaultValueScriptBlock()
End If

End Sub

Private Sub RegisterDefaultValueScriptBlock()

Dim strUniqueScriptName As String = Me.ClientID & "_DefaultValue"
Dim sb As New System.Text.StringBuilder
sb.Append("<script language=""JavaScript"">")
sb.Append("function clearValue(objTextBox) {if (objTextBox.value == """ & m_DefaultValue & """) {objTextBox.value = """";}}")
sb.Append("function resetValue(objTextBox) {if (objTextBox.value == """") {objTextBox.value = """ & m_DefaultValue & """;}}")
sb.Append("</script>")

If Not Me.Page.IsClientScriptBlockRegistered(strUniqueScriptName) Then
Me.Page.RegisterStartupScript(strUniqueScriptName, sb.ToString())
End If

End Sub

Private Sub RegisterFocusScriptBlock()

Dim strUniqueScriptName As String = Me.ClientID & "_SetFocus"
Dim sb As New System.Text.StringBuilder
sb.Append("<script language=""JavaScript"">")
sb.Append("document.")
sb.Append(InstantASP.Common.Enumerations.EnumFormName.frmInstantASP.ToString())
sb.Append(".")
sb.Append(Me.ClientID)
sb.Append(".focus();")
sb.Append("</script>")

If Not Me.Page.IsClientScriptBlockRegistered(strUniqueScriptName) Then
Me.Page.RegisterStartupScript(strUniqueScriptName, sb.ToString())
End If

End Sub

End Class

End Namespace
# September 30, 2004 6:55 AM

Jeff Coon said:

I've only recently begun my switch from classic ASP to ASP.NET. Can I ask you to elaborate on your statement about best practices when you denounce "passing DataReaders between application tiers"? I haven't yet written a multi-tiered application, as I'm still using VB 6.0 COM components and laying .NET as the presentation layer on top of that. But I'm beginning to envision what that might look like and was wondering why specifically you pointed out this example as something not to do? Thanks Jason.
# September 30, 2004 11:52 AM

TrackBack said:

# September 30, 2004 4:21 PM

Jason Salas said:

Hi Jeff,

In the early days of ASP.NET development (circa 2001), it was generally thought it to be a bad thing way to transfer data in n-tier web applications by passing DataReader objects between the data tier and business tier. This was due to the fact that because DataReaders are fast, forward-only reader, they stay open until explicitly closed by a call to their Close() method at design time.

So if anything were to happen in code, by way of an adverse situation kicking in - like an exception or just negligent programming - the DataReader would pass between tiers, with the reader itself and the underlying database connection still open, unnecessarily occupy a database connection that could be used for better purposes with another user. The .NET Framework would be smart enough to release the connection eventually on its own as a means of housekeeping, but this would usually be to the detriment of the app.

For this reason, it became more advisable to use disconnected DataSets between app tiers. This is because the DataSet.Fill() method not only puts data into the DataSet, but it automatically closes the underlying connection to a data source (typically a relational database).

This became a topic of much debate, and people generally said that it's safer programming to just pass DataSets and leverage their disconnected nature. The only downside is that working with DataSets results in slower performance than DataReaders.

That having been said, I will compliment author Cristian Darie on coming up with an intriguing way of what seems to appear to be safely passing passing DataReaders between a data and business tier. He uses this general construct throughout the middle tier:

SqlConnection conn = new SqlConnection("DB_CONN_STRING_HERE");
SqlCommand comm = new SqlCommand();
try
{
return comm.ExecuteReader(CommandBehavior.CloseConnection);
}
catch(Exception ex)
{
conn.Close();
throw e;
}
finally
{
// do anything else required in code
}

Darie explains how this takes full advantage of the speed of a DataReader, while ensuring to close the database connection should anything unexpected happen. It's a pretty cool concept.

Hope this helped!
# September 30, 2004 7:55 PM

Cristian Darie said:

Hi Jeff,

I’m Cristian Darie, author of “Beginning ASP.NET 1.1 E-Commerce”. I’ve come across this discussion and I’d like to share my opinion on the subject.

So ... I do agree with Jason that passing DataReader objects between application tiers should be discouraged in many circumstances. However, there are circumstances where this solution may prove to be your best option. Let me talk a little bit about both possibilities.

In theory, each application tier should comply to the “black box” concept – every object should communicate with the other objects only through their publicly exposed interfaces, while not being aware of the other objects’ internal workings.

The bad news about passing DataReader objects between application tiers is that it breaks the “black box” principle. The DataReader is indeed the fastest way to read data from your database, but it requires an open database connection to operate. When passing a DataReader object to the presentation tier, you also delegate to the presentation tier the responsibility to close the database connection used by that DataReader. This means that the lower tiers aren’t well protected and independent, since their integrity depends on the presentation tier. The consequences of ill behavior on the presentation tier side can be keeping database resources locked, which can result in a slower (or even malfunctioning) application. This problem is especially sensitive in the context of a web application, where an error that happens in one visitor’s session can result in the application malfuctioning for all the other users.

The good news is that in practice you can trick the system to take advantage of the full power (and speed) of the DataReader, while keeping risks low. Microsoft was smart to offer the CommandBehavor.CloseConnection option (have a look at the code snip provided by Jason), which tells the DataReader to also close its connection when it closes. At the same time, the ASP.NET web controls that take the DataReader object as data source are careful to close the DataReader object immediately after reading its data, thus ensuring the database connection isn’t kept open longer than necessary. These details, combined with a clever error handling strategy, can lead to a very reliable and very fast web application.

In my opinion, the main problem with passing DataReaders is that, in case of complex applications, breaking (even if just for a little bit) the “black box” concept can affect the application’s flexibility and extensibility on the long term. For this reason I would not recommend implementing an architecture based on passing DataReader objects for building large applications. However, I did find this solution to be the optimal choice for building small to medium web applications, such as the one presented in “Beginning ASP.NET 1.1 E-Commerce”.

BTW. the code snip provided by Jason is in C#, although the book actually uses VB.NET.

Regards,

Cristian
# September 30, 2004 10:42 PM

Cristian Darie said:

Jason, thank you very much for the great review! I did enjoy writing the "Search" chapter at least as much as you enjoyed reading it (especially because I couldn't find any other book on the market to present the same information).

I'm the most recent fan of your weblog :)

Cristian.
# October 1, 2004 7:18 AM

Jason Salas said:

Thanks Cristian! Both for the compliment and for helping Jeff with his query!
# October 1, 2004 7:22 AM

mike said:

I assume the first implementation will be in your blog, where you can refer people to other posts they might like. :-)
# October 1, 2004 11:01 AM

Jeff Coon said:

Wow, excellent replies - thank you! I didn't realize when posing the question that DataReaders left the connection to the database open. Knowing that, I understand the reasoning for discouraging passing them between tiers. Were I writing only a single tier responsible for passing data, I wouldn't want to leave it up to another developer to close the connection to my database.

I can envision using the trick you provided to safely pass a DataReader for a personal project where I could be certain the DB connection would be closed, but any such applications I can think of wouldn't have the sort of traffic necessary to warrant the performance boost of a DataReader over a DataSet.

I'm finding the actual programming aspects of .NET fairly easy, but questions like this about best practices are tough to find answers to. I can Google up articles on how to code a DataReader and a DataSet, but it's much harder to find articles explaining when to use one or the other. (actually, it's probably easy for those particular objects, but I was just trying to illustrate a point about finding it hard to find articles on best practices) I guess the best way to learn that is just to keep reading as much as possible and asking questions.

Thanks again for the great replies.
# October 1, 2004 12:10 PM

Jeff Coon said:

Access freaks can be database gurus?! (kidding) (kind of) ;)
# October 1, 2004 12:12 PM

Jason Salas said:

Jeff, check out the book "ASP.NET Best Practices" or look for articles on DataReader vs. DataSet on MSDN or in ASPAlliance.com. I recall there being several such pieces written on the topic. Most ADO.NET books for ASP.NET will mention this at some point.
# October 1, 2004 7:01 PM

Cristian Darie said:

Jeff,

Good to hear you found the answers helpful. I have just one note regarding your answer. Many decisions you will make about the architecture of your application will be driven by the complexity of your application, and not necessarily about the expected traffic. A small e-commerce website can get much more traffic than a very complex web application with lots of features, etc. That's it, have fun playing with ASP.NET :)

# October 2, 2004 2:43 PM

larry said:

a few years back Microsoft Research slipped one of their projects into the box with Commerce server 3.0 called the predictor which (If memory serves) does some of the functionality that your are referring to. Here is some info on it http://msdn.microsoft.com/library/default.asp?url=/library/en-us/comsrv2k/htm/cs_mmc_predict_shmu.asp
# October 3, 2004 1:41 AM

TrackBack said:

# October 4, 2004 4:05 AM

TrackBack said:

# October 4, 2004 4:06 AM

Wallym said:

Sql Server Full Text Search. Use the rank feature. also, apply your aggregate function over sales back against the menu.

Wally
# October 4, 2004 8:52 PM

Jason Salas said:

Hi Wally,

Thanks, but my DB schema is such that I'm storing restaurant items so that they can infer their own relationships numerically (by a separate Categories table including fields for PRIMARY, SECONDARY and TERTIARY categories to which each item belongs, each of which contains the ID of another item). I'm hoping to figure out what constant(s) to use and in what formula to develop my own ranking scheme.

So essentially, I'm looking to get the main jist of developing a ranking algorithm down, and then tweak it for my own needs.

I did consider running FREETEXTTABLE queries against the product names, but it would come up lame much of the time. I'd like to be able to tweak this directly. :)
# October 4, 2004 8:57 PM

Dave Burke said:

Great review, Jeff. This may be the next nerd book I should buy. I appreciated Cristian's input here as well, another strong selling point.
# October 4, 2004 10:54 PM

Jeff Coon said:

Ooooh, excellent. Thanks for the best practices book info, Jason. I'll be picking this up at lunch!
# October 6, 2004 11:36 AM

Raj Kaimal said:

# October 7, 2004 9:41 PM

Geoff Appleby said:

Hey man,

Yeah, so many things that appear to be 'vb only' are really just classes and methods in the microsoft.visualbasic.dll

On this same tracvk, just remember that when whidbey comes out i'm pretty sure you'll just as easily be able to reference and use the My namespace. Of course, i'm still undecided just how much of the My namespace i want to touch. :)
# October 7, 2004 10:46 PM

Daniel Auger said:

After reading this, I poked around through are utility code here at work. I found some C# emulations using the standard methodology that you see where if it isn't the datatype, an exception is caught and a false is returned. I know this form of emulating is relatively accepted in the community, but I also know that you should not, whenever possible use exceptions as logic flow. I would hope that the VB classes are not doing this internally. Does anyone know of any metrics of the VB code vs the try catch emulation?
# October 8, 2004 10:51 AM

Justin Rogers said:

Yes, if you read the link posted by the guy above, there are actual numbers for int.Parse versus VB's IsNumeric...
# October 8, 2004 2:27 PM

Richard Tallent said:

Not sure exactly what you are getting at here, but I did suggest awhile back the idea of creating a P2P "meta-web" using web browser clients, abstracting the P2P part inside a proxy server:

http://www.tallent.us/blog/CommentView.aspx?guid=94bf85ef-f2d5-46cd-915d-38f81ba6a519
# October 9, 2004 2:38 AM

Max said:

big deal!!
# October 27, 2004 1:56 AM

Michael Sumerano said:

KUAM-TV definitely has a better, more readable interface. I was instantly turned off by the PDN site. You know it's bad when you actually get angry. :)
# November 4, 2004 8:29 AM

Bill Evjen said:

That's so funny .... they put no thought into that ... it looks like it was a copy and paste from Excel.
# November 4, 2004 5:46 PM

Jason Salas said:

Hey Bill,

Yeah, they did...except they forgot to include the headers, so one doesn't easily know that the unbalanced columns with inconsistent spacing represents vote tallies by individual districts. :(
# November 4, 2004 6:07 PM

TrackBack said:

# November 8, 2004 5:14 AM

David Crowell said:

Are you checking for Page.IsValid before calling the code? That will make sure the validation runs on the server side also.
# November 8, 2004 7:42 PM

Jason Salas said:

That's probably it...it's not working like that in any other browser, but you're probably right on. :)
# November 8, 2004 7:45 PM

Jeff Perrin said:

You should always check if the page is valid no matter what, anyways. Client-side validation only works if Javascript is enabled, so even users with IE will be able to bypass your validation if they really want to.
# November 8, 2004 8:25 PM

Jeff Perrin said:

After a little digging:

http://aspnet.4guysfromrolla.com/articles/051204-1.aspx

ASP.NET uses the non-standard 'document.all' script function to get validation working. IE seems to be the only browser that implements it.
# November 8, 2004 8:41 PM

Jason Salas said:

Christian Nagel gave some insight on this conundrum:

> Connecting from all over the world is a big issue against multicasting. Many Internet providers don't route the multicast protocol.
# November 9, 2004 7:17 PM

Jason Salas said:

Looks like I may have to go the route of using TCP Binary-based .NET Remoting as a transport.
# November 9, 2004 7:18 PM

TrackBack said:

Ping Back来自:blog.csdn.net
# November 16, 2004 6:27 AM

Senkwe said:

Boy that Pistons-Pacers was wild. This only elevates the rivalry though (which I daresay is needed in the NBA anyway)
# November 21, 2004 3:03 AM

khines said:

Pistons and Pacers brawl with fans is by far the worst thing ever to happen in sports. In fact, you can't even call it a brawl between two teams, it ws a brawl between two thugs on the Pacers and FANS of Detroit. Ron Artest should be arrested and banished from the NBA for life. A true disgrace for a league that has done nothing but promote thugs and criminals a real low point for society.
# November 22, 2004 10:06 AM

TrackBack said:

# November 23, 2004 1:58 AM

MAXAt said:

i ve same problem with pp2002 emulator, also i am searching solution.
# November 30, 2004 9:47 AM

Jason Salas said:

Hi Max,

Here's something that might help...I got word back from Microsoft on non-supported devices:

----------------------------
Motorola V710 doesn’t show up in the list of supported devices so I hope you have added a config section for this after profiling the device [the device profiler is available at http://www.asp.net/mobile/profile/default.aspx ]. The issue you are seeing happens when the capability “requiresUrlEncodedPostfieldValues” is wrongly set. The default value is false. Please browse to a page which prints the capability value [Response.Write(Request.Browser["RequiresUrlEncodedPostfieldValues"]);] for this device and then reverse it in config.

Note: As the issue is related to post field encoding you do not run into the issue on GET but only on POST [that is why the first browse is working and 2nd to nth pages are throwing].
# November 30, 2004 5:45 PM

Jason Salas said:

SOLVED!!

Thanks much to Kashif Alam at MS for his help for sussing this out. The following blcok goes within the <system.web> element in web.config to get the content to properly render after page postbacks on Motorola V710s:

<!-- ADD-IN SUPPORT FOR NEWER MOBILE DEVICES -->
<browserCaps>
<use var="HTTP_USER_AGENT" />
<filter>
<!-- device support for Motorola V710 -->
<case match="MOT-8700_/00.62 UP.Browser/6.2.3.2.156 \(GUI\) MMP/2.0">
requiresUrlEncodedPostfieldValues="true"
</case>
</filter>
</browserCaps>
# December 3, 2004 4:58 AM

Kieran Lynam said:

Arsenal Football Club complete a full Premiership Season undefeated... first team to do so in over 100 years! :)
# December 7, 2004 4:53 AM

Aidas (LTU) said:

USA beats Lithuania in Olympic small basketball final :) I wish that was different :)
# December 7, 2004 7:34 AM

Geoff Appleby said:

Wow. I dont' much about the guy, but I can so often recognise his guitar work.

It's a shame. Pantera rocks a lot of butt.
# December 9, 2004 10:45 PM

Sports Fan said:

I have heard of the Red Sox victory (nice comeback) and the Ryder Cup - what is the rest of this crap? Has anyone outside of some crappy insular stateside community ever heard of any of it? It is not like football (that is soccer) or any other games the rest of the world play.

BORING!
# December 10, 2004 12:17 PM

Jessica said:

I've been into Pantera for 6 months and didn't know the members well, but when I heard the news it hit me like a ton of bricks. It's a shame he was killed and three other innocent lives were taken. It filled me with rage, saddness and disbelief when I heard it, it's a shame we have to celebrate another death date on a life that ended so tragically and had an even more promising career ahead of him and it was cut short by some deranged, envious person.
# December 10, 2004 7:10 PM

Jarek said:

IT'S OVER!!!IT'S OVER!!!IT'S OVER!!!I CAN'T BELIVE IT!!!WHY DARRELL???Ten ktos kto to zrobil jest gnojkiem!!!Nie zasługuje na to zeby byc nazywany człowiekiem!!!Pewnie miał kompleksy bo DARRELL był kims wielkim!Kims kto powodował że u wielu ludzi pojawialy sie ciarki na plecach!!!DZIEKUJE CI DARRELL!!!
# December 10, 2004 7:25 PM

Bob The Builder said:

Rofl, that guy got owned!
# December 10, 2004 7:29 PM

disasterpiece219 said:

i'm glad they shot the fucker that killed Dimebag
# December 10, 2004 7:29 PM

brian kletzka said:

he was one of my heros . i have ben playing guitar for 10 years or so and he is a god. i can not belive that this happen what the hell is wrong with people .. R.I.P. DIMEBAG ..
# December 10, 2004 7:40 PM

Metal_Man said:

I cant beleave it dude i cried when i heard the news man R.I.P Dimebag Darell Abbott
# December 10, 2004 9:00 PM

wallace said:

Rock In Peace Dime. You were a god, now even more up above
# December 10, 2004 9:05 PM

wallace said:

I'm speechless, so speechless.anywhere you are, you're still the best. love you Dime
# December 10, 2004 9:07 PM

nz dimebag said:

I have been a fan for the past 14 years have learnt to play most of dimebags songs on the gat and i was absolutely flawed when i heard the unspeakable news, dimebag is a god, He will be missed RIP Bro!!
# December 10, 2004 9:24 PM

Chasu said:

damn so sad i cried too man my favorite guitarist died damn shame RIP dime
# December 10, 2004 9:32 PM

Brandon "disto" White said:

such a tragic loss, not much for a christmas present, Rest In Peace, Rock In Peace Dimebag Darrell Abbott, the god lives on as a higher being
# December 10, 2004 9:44 PM

Robbo said:

if it wasent for Dimebag and Kirk Hammet i wouldnt play the guitar right now. I remember one of the first real technical song i learned from them was cemetary gates. I have Dimebag to think for my rising hobby of playing the guitar. I was on the way to school when i heard on the radio that Dimebag got shot at his concert. When i heard that i almost ran off the road because of the shock. I dont think ill ever forget about the awesome guitarist Dimebag was. Metal will never be the same without Dimebag Darrell Abbott
# December 10, 2004 10:00 PM

Mickey said:

man i cant believe that dime is gone hes my role model he was the reason why i started playing guitar and to the guy who killed dime you can rot in hell
R.I.P Dime Bag Darrell
your spirit lives on
# December 10, 2004 11:25 PM

Jason Salas said:

The same problem/fix (those devices not supported as of ASP.NET v.1.1 Device Update 4) applies for Motorola V265 phones, too.
# December 10, 2004 11:34 PM

groovemetalhead said:

fuck this, i loved pantera, i loved damageplan, i love dime, i never got to meet him but i feel like i've lost a brother!!! metal will never be the same! DIME, i love ya bro! R.I.P.
# December 10, 2004 11:35 PM

RCF said:

When will Americans understand that the only people in society who need and should be allowed to own guns are the police, security forces, Farmers & hunters? Why was this lunatic ever allowed to own a gun? Why does anyone in a city need a gun? Why can't we just punch each other a few times, shake hands, have a beer and go quietly. Guns are for cowards, real men use their fists. This should have never happened. What a tragic loss, such a gifted musician and a wonderful human being.
# December 10, 2004 11:45 PM

Christian Roberts said:

im glad the cops killed dimes murderer. because if he wasn't dead id have to kill him myself. that was a sad time for the metal world. you were the best. and will always be. if i ever become deaf i will still be able to here your shreddin solo's ringing in my head. ROCK IN PEACE. just ROCK IN PEACE. you will always be a legend. your talent will never die.
# December 10, 2004 11:57 PM

lobu said:

R.I.P dimebag the music never dies u will rock forever!! u are god but higher in power!
# December 11, 2004 1:11 AM

felix diaz said:

it is so sad,sorry dude i am still in shock,wherever you are Dime STAY HEAVY!!!!!!!!!!!!
# December 11, 2004 1:21 AM

Ryck Zarick said:

Thanks for the detective work here! My V710 had those errors while trying to access the wap.geocaching.com site. People on the forum there found your solution and geocaching.com has applied it.

I have access to the new Cingular GSM Motorola V3 Razr, and plan to test the above site with it too.

Thanks!

Email addy at my site
# December 11, 2004 1:51 AM

Jason Salas said:

No problem Ryck! You can see what devices are supported by ASP.NET v.1.1 Device Update 4 at http://www.asp.net/mobile/testeddevices.aspx?tabindex=6
# December 11, 2004 1:55 AM

Dave M said:

Dimebag was one of the best ever. He could do things with a guitar that most musicians will never be able to do. The metal world will miss him forever. My prayers go out to Vinny. Stay strong man, your brother is sadly missed by many.
# December 11, 2004 4:07 AM

cory said:

i never met him but i knew someone who did and she was so shook up like ive never seen her. He was an amazing musician but from what ive heard an even more amazing friend and person. R.I.P. dimebag
# December 11, 2004 6:19 AM

Dave, undefined said:

This is shit, what the hell did he do to any one. I've been into Pantera for 8 years, and finding out he died, i have nothing but visions in my head of what he would have looked like in the aftermath. I wish they didn't kill the bloke who did it. I whish they arressted him so every fucker in jail and the world could find him and make his life hell.
See you up there man!! R.I.P DD.
# December 11, 2004 7:18 AM

Rach said:

R.I.P Dimebag, you will be greatly missed in the world of metal, and whoever shot you deserved to have his life ended. Love you man!
# December 11, 2004 9:45 AM

MARIO said:

I CAN HARDLY BELIVE THIS HAPPENED !!! REST IN PEACE DARREL !! THE BEST MAN AN GUITAR PLAYER!!

MAY GOD BE WITH YOU!!
# December 11, 2004 9:52 AM

eric said:

rip
# December 11, 2004 10:17 AM

D said:

that killer is lucky he died. if he went to jail, where there are hundreds of pantera fans i'm sure, you know exactly what would be happening every single day. that fuckin' dumbass. i'm sorry, i live in columbus and i can say that damageplan was playing in the smallest club in columbus. there is no security there, none practically. i always stay out of the pit because i always thought about how it would suck if some psycho brought a knife in and started slashing people, and know look what happened. dime didn't belong in the alrosa, that place is for underground metal bands. damageplan could have taken a bigger venue easily. RIP to those who lost their lives. Dime, and especially the fans who just wanted to see their heroes.
# December 11, 2004 11:50 AM

JP FI said:

Since Cowboys from hell was released, me and many of my friends (most of them musicians) have been devoted fans, Dimebag´s killer sound and riffs made the music feel like you´re in no holds barred bare knuckle fight taking blows all over the body and LOVING IT the whole time.Right after we heard the shocking news,depression and anger took over , because for decades there has been at least one safe place for bands and artists: THE STAGE and that line is not meant to be crossed EVER!! Riffmeister Abbott, remembered and respected- R.I.P.
Our condolences to all the families who lost a member and to those who were injured and/or traumatised on that night.
# December 11, 2004 12:05 PM

Charles said:

Unbelieveable !!! First off, Vinnie, Rita,and Jerry... I feel absoultly hollow inside at the thought of your loss! I know how much Darrell ment to countless friends,and fans. And to his family, and loved ones this is an undescribeable tragedy ! My heart ,and prayers go out to you all ! I live in Arlington TX. I have been a avid Pantera fan for 21 years. I am exactly 3 days older than Darrell. I first saw Pantera in the spring of 1983. It was at a little club in Fort Worth (Savvys) .I had just recently bought their newest album " Projects In The Jungle" . And I could'nt believe my ears when I heard the shear wizardry of Darrell's playing, and the total kick ass grove that is Pantera. From the frist time I saw them live I knew Darrell ,and Vinnie were going to reach the highest peaks in the metal world. Darrell's gifts were beyond belief. The guitar was'nt an insturment for him, it was an extention of his body, and spirit ! At 17 years old he was undenyably the most creative, and talented guitarist to walk the earth !!! And in the 21 years to follow, his gift to us all, his passion for his craft only shined brighter, and brighter every time he entered the studio, or took the stage. As a guitarist Dime you are without a doubt my all time favorite !!! Simply Untouchable !!! And I am lucky to say that I am fortunate enough to have many awsome memories of Darrell off stage as well. I would go and see Pantera 3,4,5 nights in a row when thay would play Savvys. And the 3rd ,or 4th time I saw them i had been standing against the stage in front of Darrell Banging my head .and air guitaring the whole night. As they were taking a break ,and leaving the stage I yelled " Darrell You kick ass!" He turned to me , and reached to shake my hand ,and said "No dude you kick ass, you 've been banging it out the whole time ! Fuck em up, bang ! " Well as you can imagine I was in a state of disbelief, There my guitar god was giving me props ! And for the next year I adopted his saying " fuck em up, bang ! . And I honestly have at least 100 other stories of times that I got to hang a little, or drink a beer , or black tooth, shoot the shit, talk music,and guitar,or smoke one in the old suburban behind Savvys during stage break. I saw them at Rascals, Raffels, Joes, Bronco bowl, Ricks, The Electric co. ,Savvys, On The Rocks, Starplex , The Denver Colisuem. Mile high Stadium, and I know I am leaving out so many other venues. But everytime , every show, every encounter, it was a unforgetably awsome , and exciting experience ! The "Abbott brothers" are truely wonderful people !! Who care, and love their fans. So many people can testify this to be true . All around the World they have welcomed us all to stop ,and say howdy, shake your hand, sign your cd's , take a picture, or share a beer. They are the perfect example of how a Rock Star should treat their fans. No bullshit, just mutual gratitude between a couple of dudes from Texas who love to play their insturments, and millions of fans across this planet who love to listen to them do it ! Dime, Vinnie, I cant thank you enough for what you have given to us all, We will never forget, we just wish there was more to come ! I'll play my cd's ,and watch my videos, and show off my autographs, and tell my stories to anyone who will listen. Darrell's legacy will never fade ! And his guitar will echo throughout time !!! THANKS FOR EVERYTHING BOYS !!! And thank all of you who took the time to read this . Its been 21 years for me folks , and I just needed to tell someone how I feel . It hurts like hell , but I feel A little better now ! Dime,& Vinnie I love you guys.... You are the greatest !!! GOD BLESS YOU ! FUCK EM' UP , BANG !
# December 11, 2004 12:11 PM

Renzo said:

es lamentable y triste que existan locos de mierda que te pueden matar cuando estas en le escenario, me uno al dolor mundial pro esta terrible perdida.
# December 11, 2004 12:19 PM

PhiL said:

man im 14 and like Dimebag was my idol and i cant belive that this happend i mede a tribute page on my site to Dimebag if any one wants to look at it http://28phil28.piczo.com/?g=2393025. "Dimebag"Darrell Abbott was one of the best metal gatiuar players of all time and he will e missed but never forgoten
# December 11, 2004 1:19 PM

sid h said:

An icon, a hero, an idol, a god .. he was larger than life.

Truly, the great metal era has ended.

It's sad..


RIP Dimebag Darrell
# December 11, 2004 1:23 PM

tommy said:

if you think it's a good thing dime is dead you are a fagot muthafuckin cock sucker that s.o.b who killed him i hope he rots in hell like the fucking piece shit he is
dime was the shit.
fuck you im out
# December 11, 2004 2:05 PM

tommy said:

r.i.p dimebag
# December 11, 2004 2:06 PM

Adrian said:

"I'd bust the punks that rape steal and murder" anselmo should write hollow part 2. he lived by his guitar and died whit it R.I.P
# December 11, 2004 2:06 PM

Shredmaster said:

I'm just passing by, but allow me to express my thoughts on this.

Just been told of this terrible, TERRIBLE news by a friend of mine. As a musician and a metalhead, I've always loved Pantera's work. Truthfully, I don't know what to say other than that I'm so very sorry about what happened. God, how this all had to happen to one of the most influencial musicians in the modern heavy music scene is completely beyond me.

R.I.P. Dime... And I thank you for being one of my musical influences.
# December 11, 2004 3:36 PM

shocked said:

wow....i cant beleive it....how could a ture metal head kill one of the best metal guitarist is ridiculouls...so what pantera broke up...this was senseless..i dont really know what to say except that i wish the cops didnt kill that guy cause that motherfucker should have been tortured!!! as a bassist he inspired me as well..i want to do what he did on guitar on bass.he made me really look at other instruments for inspiration...metal hasnt been as popular as in the past....it has been getting better...but my point is...he stayed true to metal never even slowed down never sold out....shit he just got heavier and sicker!!! and how da fuck did someone get in there with a gun anyway? they need to shut down that club for ever and make sure he never opens another venue again and he should pay for the rest of his pathetic life...man i'm so pissed i could write about this for hours...i'll just stop right now..dime i'll miss you...but at least your music will live on bro...:(
# December 12, 2004 3:15 PM

David said:

If only I could go back in time to that show and stop this. Then I'd have some fun with that Gale motherfucker who killed him. I can't even begin to explain the pain I'd put him in. Never the less, I can't, and all I can do is mourn. Dime was the best Metal guitarist of the past 20 years, possibly the best of all time. It's people like his killer and those Columbine bastards that ruin our country. No matter what, if you kill it's bad, but when you're such a worthless, pathetic piece of shit, to kill over some bullshit, like "They took my songs" which I bet isn't even true, you deserve to be up there with people like Bin Laden. I kind of wish the police didn't kill him, so he couldn't go to prison, and get the shit beat out of him every day. My condolences go out to all of the Abbot family. Vinnie you're an awesome drummer as well, you're one of my biggest influences. Also, I wish everyone luck in getting through this, and just remember, in instances like this, a good beating can do the trick, but don't fucking kill someone. This really sucks. R.I.P Dime.
# December 12, 2004 3:30 PM

Marco said:

I remember seeing Pantera first time long time supporting, I think, the Monsters Of Rock tour at some enormo-dome in New Jersey. Was for 'Cowboys from Hell'. That was great...and I became a fan from then on. But for their next two albums I had the sweet pleasure of seeing them at NYC's Roseland Ballroom (and kept the ticket stubs like a chick does), a 750 to 1000-person standing-room kinda place, where I have seen a ton of other bands if all kinds, especially heavy ones. I have never seen a venue turn into such a monstrous mosh pit in my life. Pantera were just soooo fucking heavy...I mean...I've seen Celtic Frost, Slayer and VoiVod in tiny shithole clubs, back when the heavy music was heavy, before it started to fucking suck for a long while, which Pantera then came around to save. And Dimebag was a singular reason for that rescue...with that god-size guitar tone....fucking love and death in every riff....those weigh-more-than-ten-tons sized riffs...let alone what Vinnie and Phil and Rex were adding into the mix. But that mammoth guitar....like the middle section in 'Floods' before the acoustic guitar and Dime-solo...sounds like a prehistoric fucking creature coming out of the woods, in slow sludge steps. Dimebag's tone. And at those Roseland shows...sweet Christ the place went fucking apeshit bananas. Awww God...it was just so beautiful and heavy. And perfect...cuz they played all the tracks as if they were playing the record. I didn't know how Dimebag would pull that shit off live....and he was a monster...thrashing, banging his head, 'acting like a maniac', and nailing every lick, every twisted, screaming solo, every bestial, fucking hollowed-out bent E that reminded me of why I needed them so much in college to get me through my fucking shit at the time....bodies were flying everywhere...they did 'Fucking Hostile' at both shows and I thought nothing would be left. They were just soooo fucking heavy...and real. A no bullshit band. No bullshit players. No toning down. For love. For love of the feeling of such fucking beautiful, heavy music. Shit man...the opening riff to 'New Level'...awww man...Dime...I hope you know what you have done to set
heavy music right...to put the teeth back in guitar after years of fucking falsies.
In the long line of musicians in history, Dimebag will be that landmark where it all pivoted around. Like that other Texan before him, a certain little Stevie Ray Vaughn, he changed how it all should be...how it could be done and how it could be. I'm glad I bore witness. Condolences sincerely to the Abbott family.
Bless your son.
# December 12, 2004 4:34 PM

Kaino said:

DIME!!............why man, WHY??? to me this is the single most tragic thing to ever happen! I cant understand why some little bitch of a piece of shit excuse for a man would ever want to hurt Dimebag, or metal for that matter. I dont blame any single person in general, other then that fucken worthless piece of shit that is, but i dont think that his murder should of ever been allowed to happen! but i wont go any further then that. I would just like to say to all metal fans out there who loved pantera or damageplan, all you fucken awesome guys and girls out there just keep remembering what Dime did for us and to never say he's dead, cause he wont die in our hearts and minds if we dont let him. RIP "DIMEBAG" Darrell Lance Abbott. I'll miss you buddy!
# December 12, 2004 5:05 PM

Jason said:

I met him once, just a few months ago. They were just about to start the Damage Plan tour and they were at my local radio station. I drove to meet them and Dimebag was the nicest guy. He joked with me, signed an autograph and gave me a hug telling me he appreciates that im a fan. Nobody could have deserved this less.
No offense to Phil Anselmo, but he was an asshole when i met him. He acted like he was higher than me, Dimebag is on the same pedistal and he never forgot why he was there. He died playing, he'll play from beyond. RIP Dimebag Darrell.
# December 13, 2004 5:30 AM

TrackBack said:

# December 13, 2004 10:28 AM

TrackBack said:

# December 13, 2004 12:08 PM

TrackBack said:

# December 13, 2004 4:11 PM

TrackBack said:

# December 13, 2004 4:15 PM

Brian said:

I feel so bad about what happened.Pantera was one of my favorite bands and how could one of thier fans kill one of the members.I just dont get it.They were one of the greatest metal bands ever and someone had to end DimeBags career in an instant.
# December 13, 2004 7:03 PM

TrackBack said:

# December 13, 2004 8:30 PM

Jason Salas said:

I just did a more formal article to remember Dime: http://www.kuam.com/news/11879.aspx
# December 14, 2004 7:17 AM

Tom. M said:

Allow me to get this off my chest...

I saw Pantera only once in my life, sadly beacuase I don't think I had any friends cool enough to introduce me to them...it was in 2001 at Festival Hall in Melbourne, Australia. I rocked up tipsy and relaxed after many cans of jim beam and coke, with some friends.....and that night I can honestly say was the best day of my life. Even though Philip Anselmo had drunk way too much, and was being a dirtbag to the audience, and not even trying to do the songs very well, it was still the best day of my life, and I'm forever greatful for it.

I think it makes sense that Darrell stated the bastard of a song to put together, 'I'll cast a shadow' ended up for him being , '"It's my favorite now, the most badass song on the record." .

-- Darrell Abbott, you have died... and you ARE casting a shadow, over the whole metal world.

Darrell was the "whole package", guitar skill and mastery of movement with the instrument.

May your father, brother, wife and son have the strength to carry on.

Your death will get more people interested in your music, and hopefully one day just one day. we will see another gentle giant like yourself with an amazing ability to play axe, have fun, and give joy to millions of metal heads.

Quote Darrell Abbott - "Alright brother, rock on!"

Hope to see you again some day, wherever you are. Maybe you could pour me a black tooth'? Cheers, wheewwww!
# December 14, 2004 7:55 AM

ishfaque , abu , omra said:

tor maire chudi khanki maggir pola jaita darell dimebag re marse hala tui na morle tore ami maire feltam.....shala go to hell the murderer.....
# December 14, 2004 9:20 AM

Todd said:

RIP Dimebag.. wish I could hear your duet with Randy Rhoads at the pearly gates.. theres some major shreddin goin on in heaven tonight.
# December 14, 2004 1:15 PM

Pantera fan said:

I can't believe that dimebag darrell was killed by some lunatic. What an a**hole. Dimebag had a lot ahead of him. He was a very good guitar player. The guy who did this should be shot to death the same way he did to dimebag. I cannot believe this s***. He was probably a linkin park and hoobaskank fan. It's not dimebags fault he is a good musician. Linkin park and hoobaskank aren't alrite. They suck a lot.
# December 14, 2004 5:02 PM

Pantera fan said:

Man! its all over now that dimebag is dead. Now Pantera can't get back together. And now there ain't gonna be a reunion tour for Pantera. F*** that dirtbag. When I see him he'll know watsup when I f*** him up s***.

R.I.P dimebag darrell much love for you!
# December 14, 2004 5:06 PM

Damon said:

Pantera fan your right man. This guy is a linkin park and hoobaskank fan. Why would he do this shit man. Just because linkin park and hoobaskank suck doesn't mean he had to do this shit. He should've came up to me instead and fought me instead. I would've fucked him up. It's all about Pantera shit. dimebag darrell one of the best guitarists in the world man. Fuck all those ass hole hattin. Better pay your respects for dimebag.
R.I.P
# December 14, 2004 5:13 PM

kelelle said:

I was and still am floored at the passing of Dimebag Darrell. May he rock forever with best who have passed before him.
REST IN PEACE DIME!!!!
# December 14, 2004 7:39 PM

Mr. K. said:

R. I. P.......
# December 15, 2004 12:31 PM

MetalLord said:

This is just insane, the rock world is empty without Dime Bag in it. Yeah its a real good thing that killer got shot because his ass would be had. Rock on Darrell!
# December 15, 2004 4:29 PM

pacs said:

I sympathize and deeply saddened with the loss of a great metal guru of our time. Thanks for the music and inspiration... You're truly one of a kind... Your legacy will continue and your music will live on... Rest in peace man, rock on!
# December 15, 2004 7:53 PM

metalfukdemon666 said:

i'll kill that pice of shit that killed dime fuck him
# December 16, 2004 6:50 PM

Josh Murchison said:

I think that Ron Artest shouldnt of hit the piston fan and i hope the nba would fire im or something.
# December 17, 2004 11:53 AM

Josh Murchison said:


I have seen things bad in my life and i have never seen sometrhing this stupid.
# December 17, 2004 11:55 AM

a paul pierce fan said:

i hate ron artest because of what he did to the piston fans and i think hes a whimp if he will hit a fan and not ben wallece
# December 18, 2004 12:24 PM

Richard said:

Dime is one of the Best metal Guitar players out there. he's My Hero. He was living a great life. I'll Drink a beer and a shot of whiskey in remembrence of dime. I know your rockin out in heaven as i speak. R.I.P Dime and good bye you cowboy from hell Youve made Guitar History
# December 31, 2004 6:51 PM

Sid said:

RIP Dimebag
# January 2, 2005 7:58 PM

JDC said:

Shouldnt there be mention of the disappointing choice of Oklahoma over Auburn for the #2 spot in NCAA football BCS standings?
# January 5, 2005 2:26 PM

Jason Salas said:

Depends...if you think OU played better during the season than Auburn. I've said on my radio show that Auburn should have played for the national title, but the BCS is so screwed up that it wouldn't allow it.
# January 5, 2005 6:30 PM

Jason Salas said:

Actually, this is what I'm thinking in pseudocode now:

(1) have a user login and have them select the winners of the first 32 games in Round 1. Persist these values (the winners w/game scores) using Session variables or ViewState to Round 2 and post the page back unto itself. This will allow the winners to "advance" to the next round.
(2) repeat the above cycle for the remaining Rounds all the way to the National Championship as the elimination of teams reduces the # of games played (16 games, 8 games, 4 games, 2 games, 1 game).

Huh.
# January 26, 2005 11:47 PM

Todd said:

I built one. We are in the process of giving it a face lift. You can see it at http://deucemadness.martron.com/. I used the Tounry Logic control at: http://www.tourneylogic.com/. It was a god send. I could concentrate on the DB stuff rather than worrying about drawing the brackets etc. Email me if you want more details: twlichty@gmail.com
# January 27, 2005 11:18 AM

TrackBack said:

# January 29, 2005 6:49 AM

Steve Hall said:

Having been an athletic trainer/manager in a former life, I would presume that it's the local gym/arena's "floor policy": no hard-sole shoes allowed, to prevent scuff-marks. (I'm kind of surprised you didn't catch this one, being a sports producer and all...)

Most support personnel (coaches, managers, trainers, team doctors) of high school and college basketball and wrestling teams wear either cross-trainers (aka "gym shoes") or what appear to be "dress shoes". Those dress shoes are usually really rubber-sole shoes. For example, almost all wrestling coaches wear a hybrid shoe at wrestling mathces that almost passes for a black dress shoe, but is rubber-soled so that they can walk on the ultra-expensive wrestling mats without tearing them...but still look formal enough to go with their sports jacket and slacks. Basketball referrees wear a similar kind of shoe that appears like a dress shoe, but is really rubber-soled. High school and college basketball coaches usually wear the same shoe as the referrees to conform to the "floor policy". As a trainer or manager, I always wore either a Nike cross-trainer or rubber-sole "ref. shoes".

The reason NBA coaches get away with wearing hard-sole shoes are due to two factors: 1) the floors are temporary floors, and 2) the NBA has money. Since most NBA arena floors are not permanent floors, they're continuously reconditioned since they're put together and taken apart routinely. I.e., damanged pieces can be easily replaced each week. Permanent floors (at all high schools and colleges) are much more difficult to care for...and thus, the "floor policies" exist to make sure they last for 30-50 years. (Local citizenry are loathe to pay for new high-school or cellege gymnasiums every 10-20 years...)

At my own high-school gym, which was built in 1968, we had a 3'x10' section of maple floor that warped upwards over 6" from an under-floor water leak near a back door. That repair in 1972 cost over $10K, which if normalized to today's dollar value would be >$100K. (Today's high-school and college gyms with hard-wood floors are running well into the millions of dollars due to the floor costs.) In order to prevent floor-scuffs from idiots who walked on it with hard-soled shoes, the janitors put a half-dozen coats of varnish and 3 coats of wax on it during the summer, and a coat of wax on it weekly during the school year. Anyone caught scuffing the floor was given 3 demerits. Back then at most college basketball games, security guards wouldn't even let in people under 30 with hard-sole shoes...on the premise that at the end of the game, they'd end up on the floor scuffing it up during the post-game melee...

Once a college coach told me that the way to gauge whether or not the a college's alumni association cared about their basketball team was by the condition of their main basketball floor. If it was covered with scuff marks that were quasi-permanent, then this indicatd the alumni weren't "taking care" of the janitors (by tips and paying them enough) to keep the floors perfect or were being cheap about raising funds to replace the 30-year old floor.

Just remember, scuff-marks are the bain of every high-school and college janitor!

I haven't heard of any sort of fund-raising or "cause", but that's an interesting angle...
# February 6, 2005 1:46 AM

Jason Salas said:

hi steve,

i thought about that...that the NCAA might have imposed a new policy to give coaches better grip on the floor. i also thought it might be a particular brand running a promotion, given the fact that Duke and Cincinnatti are Nike schools. but, it looked like another coach elsewhere wore New Balance, of all brands. huh.
# February 6, 2005 2:09 AM

Bryce said:

It gets mentioned in this article...

http://sports.espn.go.com/ncb/recap?gameId=250360150

"...part of a promotion for the National Association of Basketball Coaches and the American Cancer Society."
# February 6, 2005 4:17 AM

Steve Hall said:

Back in the 70's and 80's the NCAA had no policies for or against any shoe styles, that I remember (although I seem to remember they had a sports jacket requirement for coaches). But in this era of selling out to corporate interests for sponsorship funding, it wouldn't surprise me any if there's a whole slew of policies about shoes and uniform markings to allow such funding. If these large sports outfitters have somehow coerced coaches into wearing only their products, then I think this source of funding has gone too far! (Making coaches become shills for a sports outfitter is unbecoming of the coaching profession, esp. since coaches are supposed to be instilling "can't be bought" values into their atheletes by example. If a coach is shilling for say Nike, then this teaches the wrong lesson to atheletes, e.g., tells them its alright to throw a game if someone like a Nike rep. tells them to...)
# February 6, 2005 4:32 AM

Steve Hall said:

Oops! Didn't see that last post until after posting... Sounds like an interesting promotion. At least it doesn't cause the coaches to compromise their ethics. The story about the coach near-fainting was interesting. I've never seen a basketball coach do that in the hundreds of games I've attended. Usually it's a ball player that's needs some nitrates and oxygen to continue playing...
# February 6, 2005 4:40 AM

Jason Salas said:

A-ha...

"[Coach K] jokingly blamed his lack of balance on the running shoes he was wearing instead of his normal loafers, part of a promotion for the National Association of Basketball Coaches and the American Cancer Society".

Good cause.
# February 6, 2005 6:31 PM

TrackBack said:

# February 8, 2005 9:44 AM

TrackBack said:

# February 8, 2005 9:44 AM

TrackBack said:

# February 8, 2005 9:44 AM

TrackBack said:

# February 8, 2005 10:29 AM

TrackBack said:

# February 8, 2005 10:32 AM

Johnnie Walker said:

I like the latter too. You may need to run 63 updates statements, but wouldn't be it for all user's? I'm probably not reading this correctly, but couldn't you run a single update command for each team, something like....UPDATE RESULTS SET SCORE = '64-62', WINNER = 'Villanova', LOSER = 'Providence' WHERE HOMETEAM = 'Villanova' AND AWAYTEAM = 'Providence' AND ROUND = 1.

Very simplified and probably wrong regarding your dataset, but I would much rather have multiple linking tables than 1 big flat table. I guess that's my relational nature.
# February 10, 2005 2:23 AM

John Galt said:

Since every game only has two participating teams, how about having predictions recorded in a single 63-character string of 1s and 0s and using that as an array? This is assuming that you're only tracking which team is predicted to win.
# February 10, 2005 5:38 AM

Alex Papadimoulis said:

I think the 30-minutes-or-its-free thing got canceled after drivers were constantly running over people while trying to deliver pizza.

I'll usually just pick it up. It's done in 10-15 minutes, and I save $3 on a tip. But then again, I've got three 'za places within 1/2 mile of me ... although, I've always wanted to get delivery from the place that's 5 houses down ...
# February 10, 2005 8:49 AM

Dean Harding said:

That Blockbuster deal is a bit of marketing hype. Instead of charging a "late fee" they make you buy the movie outright if you're more than 7 days late... or if you *do* return the movie instead of buying it, they refund the cost of the movie with *store credit* minus the cost of the rental, minus a "restocking" fee (not a late fee, mind you: a "restocking" fee. Obviously, that's completely different).

Check it out: http://money.cnn.com/2004/12/20/technology/techinvestor/hellweg/index.htm

Anyway, I still agree on the 30-minutes-or-it's-free thing. And like Alex, I usually do a pickup as well cause it's generally much quicker. I've been told in the past that to get it delivered I'd have to wait over an hour, but I could pick it up in 15 minutes...
# February 10, 2005 7:45 PM

Jason Salas said:

Hi Dean,

Oh yeah, the campaign is brilliant...I went in one day to Blockbuster and asked them to explain it to me and this all harkens back to a "policy" the company's been using for years - the longer you let a customer keep a video, the longer they won't watch it. So, by doing some slick sleight of hand (or mouth in the case, it being a marketing promo), they've been able to cash-in in the tens of thousands of irresponsible customers who won't return the products within a given timeframe. Brilliant!

That's why I majored in marketing...
# February 10, 2005 8:08 PM

Dean Harding said:

It definately pays to read the fine print in these things... nothing is ever free.

Plus I guess it also stops the situation I've found myself in a few times in the past. I'd go to one video store for a while, until one day I'd forget to take a video back. Now, generally by the time I realise I've forgotten, it's be so long since I hired it in the first place that the late fees would be so high that I'd just keep the video and start going to a different store.

It was probably easier back then since the big video-store chains have only recently started coming to Australia, and back in my uni days (when I was poor and this happened a lot ;) there were lots of independent stores that I could just join...
# February 11, 2005 2:00 AM

TrackBack said:

# February 15, 2005 7:00 AM

Wallym said:

Hey Jason. How is Guam? Long time since I have heard from you or sent anything to you. I hope all is going well on the other side of the world from me. :-)

Yeah, I'm not a big fan of the command builder myself. I've looked at the commands that it sends to a database, and all I can really say is yuck. I haven't looked at in Whidbey, but I should.

Wally
# February 15, 2005 7:03 AM

TrackBack said:

# February 15, 2005 7:04 AM

Jason Salas said:

Hey Wally!

Yeah....it's been awhile. Wow...a data access guru like you not getting into the next ADO.NET is major! :)
# February 15, 2005 7:05 AM

Jason Salas said:

Hopefully, someone from the MS ADO.NET team will see this and either say my rquest wasn't unique and that the changes are in the works, say it's not possible, or say they'll look at it. Cool by me either way.
# February 15, 2005 7:07 AM

Charles Chen said:

There are tons of better open source tools out there that do exactly this and can support much more complex queries.

NHibernate comes to mind as one of the better ones that I've seen. It does involve writing some XML, but the initial preview of ObjectSpaces works on a similar concept (object XML, mapping XML, and table XML). The nice thing about NHibernate is that it's based off of the relatively mature Hibernate framework for Java. There's plenty of documentation (albeit for Hibernate, but the two are mostly compatible), there's good tool support for auto generating schemas and classes from mapping XML files, and it's highly flexible.

Two good intro resources:
http://www.theserverside.net/articles/showarticle.tss?id=NHibernate
http://www.theserverside.net/articles/showarticle.tss?id=NHibernateP2

NHibernate homepage:
http://nhibernate.sourceforge.net/

Scott Bellware on NHibernate:
http://geekswithblogs.net/sbellware/archive/2004/12/19/18084.aspx
# February 15, 2005 8:25 AM

Jeff said:

The idea of best practices and there are few universal truths is something I think I mentioned several times in my book, and in fact right up front in the preface. The hardcore academic types seem to want to kick you in the nuts when you say it, but it's so true, the bit about skinning a cat (though I've never understood why you'd want to skin a cat).
# February 15, 2005 10:26 PM

Geovanny Tejeda said:

Excellent comment!
And excellent subject to prove it, that's one of the most abused subjects in ASP.NET (Paging/Sorting example with the datagrid), i heard Microsoft a consultant destroying some friends for using Text SQL's on their data tiers, of course, Stored Procedures provide another level of abstraction blah, blah, blah, but creating a temporary table sometimes can create an even larger overhead than not using the optimized dataAdapter.

Keep 'em coming!!!
# February 15, 2005 10:28 PM

Jason Salas said:

HI Jeff,

I'm looking forward to giving your forthcoming book a spin and do a review on it! When does it come out again?
# February 15, 2005 10:52 PM

TrackBack said:

# February 16, 2005 4:54 PM

Wallym said:

Hey Jason. I've actually been involved with ADO.NET V2 Whidbey/Yukon for a while. I just haven't looked at the commandbuilder specifically as I prefer to write my own commands to send info back to the database. Here is the link to all my data access posts. I really like the async support (drool, drool). http://weblogs.asp.net/wallym/category/553.aspx

Wally
# February 17, 2005 7:59 AM

Wallym said:

Guru? Where, where. More like a legend, in my own mind.

Wally
# February 17, 2005 7:59 AM

mschaef said:

That's a little odd.

Most Ph.D. level papers I've seen primarily cite either papers in referreed journals, or maybe working papers. Your own posts in a totally unreferreed forum are a little lightweight to be a source in a serious paper, I'd guess.
# February 17, 2005 9:08 AM

mschaef said:

"Your own posts in a totally unreferreed forum are a little lightweight to be a source in a serious paper, I'd guess."

BTW, don't take this to be an indictment of your writing or research skills, just the nature of the forums involved.
# February 17, 2005 9:09 AM

mike said:

I think it would depend entirely on what it is you're writing about and citing. If you're writing about comunications and new media, I can imagine citing a blog post and follow-up comments. If you're writing about populism in politics, of course. The linguists over on the Language Log (and various sites they point to) frequently cite blogs and email, since they represent a rich source of contemporary language usage.

What IS your thesis going to be about? I think I missed that part.
# February 17, 2005 10:29 AM

Scott said:

The only background I have is in writing scientific papers so this may not apply to other academic writing. One of the first "BS Tests" that my professors taught me to apply when reading a scientific paper was to look at the citations and see if the author cites his other works more often than they cite works by other people. Unless the author is truly doing groundbreaking work, they should cite others more than they cite themselves. "If I've seen farther it is because I have stood on the shoulders of giants" and all that. I was also taught to only considers citations from peer reviewed sources.

That being said, I'm not sure if a weblog counts as a peer reviewed source. You might be better off incorporating your blog writing into your disseration rather than using the posts as citations.
# February 17, 2005 10:37 AM

Derick Bailey said:

I'd generally agree with mschaef.

My wife is a Ph.D. in Psychology (teaching at Baylor in Waco, TX, FYI) and from what I've heard from her, and in my own experience with paper writing (limited, that it is), i'd elaborate by sayin it depends on how you are citing.

I would personally think it's not good to just go around quoting your blog all over the place, since it's not a "well known" publication like a Psy journal, etc. However, I would say some moderation in the use of it is not a bad thing. As long as you have the proper data, references, etc. listed in your blog, I think it would be fine to say something along the lines of "building on previous research from ...." or something in that fashion.
# February 17, 2005 2:32 PM

TrackBack said:

# February 19, 2005 3:00 AM

TrackBack said:

# February 19, 2005 3:02 AM

TrackBack said:

# February 19, 2005 7:09 AM

TrackBack said:

# February 19, 2005 7:20 AM

Jason Salas said:

well, Ray Allen's out, and i got the "finalists' wrong...it's the top 3 advancing. good sniping, Voshon.
# February 19, 2005 9:42 PM

Jason Salas said:

DEPAUL IN THE HOUSE! Good round, Q.
# February 19, 2005 9:50 PM

Jason Salas said:

Round 1's best dunk definitely goes to J.R. Smith. That was COOL.
# February 19, 2005 10:24 PM

John Cavnar-Johnson said:

I actually prefer a legal pad and a box of 8 Crayola crayons for software modeling. You can quickly iterate through designs, backtrack if you need to, and the crayons help you stay at the right level of abstraction (you can't draw too many shapes with crayons on a legal pad).
# February 19, 2005 11:42 PM

TrackBack said:

# February 20, 2005 9:00 AM

TrackBack said:

# February 21, 2005 4:00 PM

Joel Ross said:

Jason,

You can see the Tourney Pool Manager (and the Tourney Bracket Control) in action at http://pools.tourneylogic.com/AccentureMatchPlay/. Thought you might be interested.

And hey, you can win $25 if you win the pool!
# February 21, 2005 4:08 PM

TrackBack said:

# February 22, 2005 9:59 AM

TrackBack said:

# February 22, 2005 12:40 PM

TrackBack said:

# February 24, 2005 11:59 PM

TrackBack said:

# February 26, 2005 9:59 AM

TrackBack said:

# March 6, 2005 6:09 PM

TrackBack said:

# March 6, 2005 6:45 PM

TrackBack said:

# March 9, 2005 2:59 AM

Ron Krauter said:


Didn't know that existed. Thanks!
# March 11, 2005 11:23 PM

Clark said:

It probably has to do with rights.

The use fees for music on DVDs is much different that it is for broadcast.

WKRP, for instance, will not be released on DVD due to the large amount of music that would have to be replaced or licensed. Most shows released to DVD have had the popular music in them replaced with more easily licensed material.
# March 12, 2005 1:16 AM

mike said:

Weird, I was just talking to someone about these, like, this afternoon. This is one of those constructions that make OOP noobs have one of those "WTF?!" moments.
# March 12, 2005 2:54 AM

David Crowell said:

I wish I had known about the Tourney Logic thing weeks ago. I built one from scratch that goes live tomorrow. I haven't tried the Tourney Logic components, but mine doesn't require any postback until you've made all of your picks.

It was a real pain. Feel free to look at it (once selections have taken place) at:
http://makersmark.com/MarkMadness (you'll have to sign up as an "Ambassador")

Don't ridicule me too much, I had a tight deadline :)

# March 12, 2005 5:09 PM

David Crowell said:

After checking out the Tourney Logic thing, I still like mine better. It did take a while to write though.
# March 12, 2005 5:16 PM

Meg Klena said:

I think it has something to do with rights and maybe the thought just hasn't hit their mind.... Why don't you go to their website and suggest it?
# March 20, 2005 7:17 PM

Meg Klena said:

check that out
# March 21, 2005 11:29 PM

TrackBack said:

# March 22, 2005 1:20 PM

Phil Winstanley said:

Congratulations Jason!

:-)

Plip.
# March 23, 2005 8:46 AM

Wallym said:

Congrats
# March 23, 2005 1:48 PM

Jeff said:

Congrats!

You know, one of my R/TV profs in college, John Campbell, worked at a TV station in Guam. I think he was a reporter and anchor. All I remember is seeing his demo reel with him in a Hawaiian shirt. Classic stuff.
# March 23, 2005 3:47 PM

Jason Salas said:

Thanks everyone!
# March 23, 2005 9:35 PM

SBC said:

a very interesting perspective indeed!
I guess you'll look at 'The Republic' to build that perfect OO system.. ;-)
# March 28, 2005 7:13 AM

John Cavnar-Johnson said:

That's all fine, as long as your remember that it is Aristotle who dominated Western philosophy rather than Plato. This is significant because it means that in a single generation (Aristotle was Plato's student), some really smart people (the ancient Greek philosophical community) realized the severe limitations of Plato's ideas for describing reality. And we've had a fairly strong consensus about it ever since. OOP idealists really ought to consider that. I would argue that OO is indeed the Platonist way of looking at the world and SO is the Aristotlean way. Think about that when you model your next application.
# March 28, 2005 7:22 AM

Jason Salas said:

Hi John - excellent point!

Yes, in rejecting the rejected the teachings of his mentor Plato, Aristotle advanced his practice (such as the idea of Microsoft BOB becoming the modern Microsoft Office agent, and the defunct-.NET MyServices notion evolving into Passport authentication). By going against the grain of the Forms as a universally idealistic, abstracted model and treating human virtues as a defined set of unique characteristics, Aristotle branched off.

Expressed conceptually in object-oriented programming, this allows us to consider a generic overview of an application's model at the class relationship level (Plato), as well as being able to drill down into the individual members within each type (Aristotle). Aristotle stressed the essence of being something, as well as the causes brought about by the existence of a thing. From this knowledge we can derive modern-day programming examples in a type's members - properties, methods, and events.

If Plato can be seen as inspiring abstract classes, Aristotle's modified view of human virtue would be akin to sealed classes (NotInheritable/NotOverridable types), with a greater degree of individualism promoted.

Aristotelian theory shows us that in being the first philosopher who embraced much more than conceptual thinking, applying scientific experimentation, testing and evaluation, he drilled down more into the semantics of Plato's earlier ideas. This progresses beyond Plato's largely theoretical, and somewhat rigid rationale.

And yes, you're absolutely right…many of Plato's ideas were eventually dismissed with the advent of more scientific thought and as time went on. :)
# March 28, 2005 8:28 AM

Mischa Kroon said:

Jason, in that last comment I think you made a good point against OOP :)

It's just become too hard...

It's a nice idea to use OOP to simplify things but in practice it usually just becomes spaghetti.
# March 29, 2005 2:56 PM

TrackBack said:

# March 31, 2005 3:45 PM

TrackBack said:

# March 31, 2005 3:54 PM

TrackBack said:

# April 3, 2005 11:07 AM

TrackBack said:

# April 3, 2005 11:07 AM

TrackBack said:

# April 3, 2005 11:17 AM

TrackBack said:

^_^,Pretty Good!
# April 7, 2005 7:31 AM

TrackBack said:

^_^,Pretty Good!
# April 7, 2005 7:35 AM

mike said:

I'm amused to note that they'll be happy to take one's order for this forthcoming title. They'll apparently let you know when it's available ...
# April 11, 2005 4:25 AM

CsOver said:

helpful to everyone!it's selled in china!Ye~~
# April 14, 2005 3:24 AM

TrackBack said:

<p>Admittedly, I haven't used full text search on SQL 2000.<br />
But I am sure DBSight can beat it.</p>
<p>I have seen posts like this<br />
<a href="http://weblogs.asp.net/jasonsalas/archive/2004/02/11/71130.aspx">Technical pet peeve: no search services
# April 14, 2005 11:56 AM

TrackBack said:

# April 15, 2005 6:59 AM

TrackBack said:

# April 15, 2005 7:00 AM

TrackBack said:

# April 15, 2005 7:32 AM

TrackBack said:

# April 15, 2005 7:39 AM

TrackBack said:

# April 16, 2005 12:02 PM

Jason Salas said:

*** UPDATE ***

I guess I forgot to mention XM and Sirius as major contributors to winning distribution models....so make it:

- broadcasting/satellite radio
- streaming
- podcasting
# April 16, 2005 9:02 PM

TrackBack said:

# April 18, 2005 2:28 AM

TrackBack said:

# April 18, 2005 9:48 AM

TrackBack said:

# April 18, 2005 9:52 AM

TrackBack said:

# April 18, 2005 11:52 AM

Kyle said:

Great idea. The thing DNR is missing is more nuts n' bolts discussions. A show dedicated to ASP.NET would enable you to go really deep into the technology, which I'm sure the DNR critics would love. Please pursue it!!
# April 18, 2005 6:24 PM

Jason Salas said:

This is of course, in addition to companies like DiscountASP and the like
# April 18, 2005 7:01 PM

TrackBack said:

# April 18, 2005 7:14 PM

Guest said:

Also, that $5/mo applies only to the duration of the Beta phase.
# April 18, 2005 7:47 PM

Scott McCulloch said:

Check out this page..

http://msdn.microsoft.com/asp.net/beta2/hosters/

Some are free
# April 18, 2005 9:00 PM

TrackBack said:

# April 19, 2005 4:52 AM

Darren Neimke said:

Hi Jason, I'm giving a presentation of webparts and the portal framework at a Code Camp in Australia this weekend. I've already created a few demo's and samples that I can forward to you when I get back from my current IBF tour.

The demo's are conceptual in nature -so you might have to extend the analogy to something more concrete to get "the business" excited. My powerpoints may not be of much use to you as they are mostly focussed on WebParts lifecycle and how personalization is woven into the fabric.
# April 19, 2005 9:02 PM

Ron Krauter said:

"Hi Jason, kindly hold for Mr. Jones..."...

Yes, that drives me nuts too but it is company policy to be nice to eveyone so I have to keep the anger inside.... :(
# April 19, 2005 9:14 PM

Jason Salas said:

Hi Darren,


That would be sweet! I’d appreciate it. just send it to jason@kuam.com when you can. :)


# April 19, 2005 10:02 PM

Erik Porter said:

Come on, what are you? A forward thinker? Shame on you! ;)
# April 19, 2005 10:33 PM

Jason Salas said:

I'm quite busy myself, but I take pride in making all my own calls, setting up all my own appointments, and sending all my own faxes. It's like when I was in tech support and people would call in and ask for their password, and when I started reading it, they'd day "oh, wait a minute....let me get a pen and some paper...".

I still try and deal with these types of people, but they just get on my nerves. People who's job is basically to facilitate the functions someone should very well be able to do on their own just doesn't make sense to me.
# April 19, 2005 10:37 PM

Alex Lowe said:

# April 19, 2005 11:52 PM

Jason Salas said:

Whoops...all the links in the WebParts QuickStarts (say that 3 times fast) all return:

<h2>"Service Unavailable"</h2>

Yikes! :(
# April 19, 2005 11:59 PM

Darren Neimke said:

Jason, I actually agree with Alex. None of my demo's are really anything more than what appear on those QuickStarts. You are probably better off grabbing those and building a story around that. Of course, I *can* still send you mine if you like it's just that there's not really much value-add there.
# April 20, 2005 2:24 AM

Jason Salas said:

Yeah, I'd still appreciate it Darren. For some reason, the QuickStarts won't work for me. I keep getting the error. :(
# April 20, 2005 2:49 AM

Jason Salas said:

I just need something to show the crew to justify us getting into that field of work.
# April 20, 2005 2:50 AM

TrackBack said:

# April 20, 2005 5:33 AM

TrackBack said:

# April 20, 2005 5:58 AM

TrackBack said:

# April 20, 2005 7:57 AM

Bob Bachand said:

Jason,

I enjoy your podcasts and you are doing a good job, thanks. I do have a correction for you about your World Curling Championships observations in the 4/20 podacst. You referred to the surface that the game of curling was played on as a slick wooden floor like a bowling alley. It is a slick floor because it is actually ice (frozen water) which is why it is listed as something that would not be played on Guam.

Regards,
Bob Bachand
# April 20, 2005 9:07 AM

Jason Salas said:

Hi Bob,

Thanks for the comment and setting me straight on curling! I didn't realize the playing surface actually was ice! :)

I'll mention that and your correction in tomorrow's podcast. So keep your ears peeled for your name!

Thanks for tuning in!
# April 20, 2005 12:12 PM

Rich Ersek said:

Thanks for catching this, Jason. We had rapid fail protection turned on and it shut down one of the app pools. I've restarted the app pool and it should be working again.

-Rich
# April 20, 2005 2:19 PM

Jeff said:

As I understand it, that's what the little brooms are for. They warm up the surface of the ice, causing the rock to slide more on the wet ice. So when they're sweeping like mad, they're trying to keep the rock from slowing down.
# April 20, 2005 2:47 PM

Darren Neimke said:

Sure, no worries. I'll send them your way next week after Code Camp... along with some notes.

During my presentation I'm actually planning to spend 10 or so minutes with a marker and some butchers paper and get the crowd to do some brainstorming about WebParts.
# April 20, 2005 6:52 PM

Jason Salas said:

Thanks Jeff and Bob...great info! I mentioned the both of you on my podcast today and thanked you for setting me straight...check it out!

http://weblogs.asp.net/jasonsalas/archive/2005/04/21/403623.aspx
# April 20, 2005 8:33 PM

Jason Salas said:

Thanks much Rich! I appreciate the knowledge.
# April 20, 2005 8:33 PM

Jeff said:

Been there done that, and the bros got too arrogant in thinking their whole mythos was something really important. The second movie was OK, the third one sucked. The game wasn't horrible, but it wasn't great either. The other little pieces were clever, but did little to add to the big picture.

The whole thing was more interesting when it was one money and not a gigantic cash grab.
# April 20, 2005 10:43 PM

Jason Salas said:

Hi Jeff,

> The other little pieces were clever, but did little to add to the big picture.

You really think so? I will admit that the only parts of The Animatrix that really contribute to the main storyline are the Rennaisance films 1 & 2, but they completely change the context of the story once you see them. And the other films arguably did go a little overboard, but the whole story about B1-66ER and 01 really made me think. How about you?
# April 20, 2005 10:47 PM

TrackBack said:

# April 20, 2005 11:51 PM

TrackBack said:

# April 21, 2005 2:01 AM

mike said:

Dude, *where* was this guy when I was implementing trackback? :-) I see that he's a subscriber to the theory that if it ain't markup, you create it as a handler.
# April 21, 2005 11:05 AM

TrackBack said:

# April 22, 2005 1:55 AM

TrackBack said:

# April 22, 2005 2:09 AM

rogelio said:

Cool!
# April 22, 2005 5:04 PM

mike said:

How would Google know that a site is a blog?
# April 23, 2005 5:47 AM

James Crowley said:

Sounds like a sensible idea to me!

I'm sure it wouldn't be beyond Google's capabilities to successfully infer that for most blogs... even just using the presence of an RSS feed, "trackbacks" and lots of dates would give you a good idea :)
# April 23, 2005 9:47 AM

bestcomy said:

really good idea.
# April 24, 2005 5:23 AM

TrackBack said:

# April 24, 2005 6:06 AM

TrackBack said:

# April 24, 2005 4:30 PM

Chris Martin said:

Shit!!! I'm next :(
# April 25, 2005 12:10 AM

Dion said:

You can try here, I understand the 7.95 package has interesting storage and bandwith:

http://www.dreamhost.com/
# April 25, 2005 3:53 AM

Jason Salas said:

Thanks...ironically, DreamHost is the company I'm with at the moment. I'm actually going through a company who bought space from DreamHost and has a bunch of sites on their server...and my site (easily the largest and most bandwidth-intensive), is transferring about 13.3GB per day.
# April 25, 2005 4:00 AM

Dion said:

Like Jason said, I was dealing with the same problem as I am sure a lot of podcasters will run into the same. I found a solution to the bandwith/traffic problem. Ourmedia.org provides a solution. They provide free storage and free bandwidth for videos, audio files, photos, text or software. Forever. No catches. The files are stored at the internet archive (www.archive.org).

The solution is still in alpha fase, and takes some patience to get it to work but the files are stored freely. I still am experimenting with this service, it seems to work fine (not super fast, but fine) until today when the servers were not reachable. This could be just today, like I said the service is still in alpha.

It could be a possible working solution for podcasters to archive their shows.
# April 25, 2005 7:02 AM

Wallym said:

BitTorrent or Torrent?
# April 25, 2005 8:11 AM

Yuval said:

Hey man i saw a great piece on how to upgrade an Ipod to 40GB
http://www.axel-findling.de/ipod.html
if you want to try and search i saw once i think in SlashDor.org or Scripting News a nicer article with pictures but i am not sure if it was on the Ipod or other hardware.
good luck if you get to upgrade.
# April 25, 2005 8:46 AM

SBC said:

Talk to Carl Franklin (.NET Rocks) since he has been doing this for a long time - he may know some host-providers who may meet your needs.
# April 25, 2005 9:01 AM

kaniz said:

Possible solutions.
1. BitTorrent, provide links to torrents of the files.
2. Zip the file, although it wont add much to the compression of the file, it will prevent people from streaming them, as they will need to download the entire file and unzip it before being able to listen to it.

Still, hosting podcasts is still going to be a large burden on bandwidth, esp if a podcast gains any sort of 'fame' and becomes highly used.

Not sure if this is already being done yet, but for podcasts which dont have music in them, could you get away with encoding at a much lower quality? Not sure what encoding the typical podcast uses, as to be honest - I havnt listented to any, but you could most likely get away with far lower than 128k on a voice-only podcast.
# April 25, 2005 10:13 AM

patag said:

Have you tried http://www.servermatrix.com ?

There was also another hosting company like Server Matrix called Bench something, I forgot.

Good luck.
# April 25, 2005 11:11 AM

Robert McLaws said:

I use ServerBeach and they're awesome. Between my 2 servers I get 1.2 TB transfer a month, and they are really good with customer support. I've been a customer for 2 years and would highly recommend them.

http://www.serverbeach.com/catalog/index.php?REF=E3ADV6GDD6

If I were you, I'd set up a WMP9 streaminng media server, and have it reduce the bitrate on the streams. They have a ton of utilities to be able to do that.

An option you have as well is to have low-bitrate public files, and paid access to high-bitrate files. Always a thought.

E-mail me offline and I'll have another couple options for you in a day or two.
# April 25, 2005 11:19 AM

Jason Salas said:

Thanks Yuval...I'll check it out! I'm still not sure it would work for me, as I've got a 4GB iPod Mini.
# April 25, 2005 6:36 PM

Salman said:

Any predictions on when Google is going to start indexing voice?
# April 25, 2005 7:15 PM

Salman said:

Also try theplanet.com, they give I believe 2000 gigs monthly, which is about 65 gigs a day (meets your ~14 gig daily transfer, just don't get too too popular!)
# April 25, 2005 7:18 PM

Jason Salas said:

Hi Salman,

That's a good one...not sure just yet, as voice content is minimal, and reading through binary digital audio files would be a lot harder and than reading through textual documents. I hope it comes to fruition someday, though. Would be cool. And dangerous.

I guess for now we're stuck doing cross-promotion with blogs, wikis, sites, etc.
# April 25, 2005 7:21 PM

AndrewSeven said:

As a programmer, I like to have lots of little things that do one thing each, not one big thing that does every little thing.

/News/PressRelease.aspx?id=abc123
is so much better than
/page?s=news&pressrelease=abc123

/News/PressRelease_abc123.htm is really nice but requires a bit of work and some rules about the abc123 part.
# April 25, 2005 8:33 PM

Jason Salas said:

Hi Andrew,

I agree, your second URL is cleaner than the first, but also consider that:

/news/abc123.aspx

...is more visually appealing than

/news/pressrelease.aspx?id=abc123
# April 25, 2005 8:40 PM

Jason Salas said:

...and consider that ASP.NET 2.0 is making possible easy URL rewrites with a single config entry. :)
# April 25, 2005 8:56 PM

Rick said:

And consider that with Apache and mod_rewrite, /news/pressreleases/abc123.html is possible from a single script PHP app. Wordpress is written like this and has great URLs.
# April 25, 2005 10:29 PM

Matt Smith said:

mod_rewrite allows you to do /news/pressreleases/abc123.html like Rick mentions above, but even better, it allows you to do /news/pressreleases/abc123 (without the extension). Now you can have URLs that are entirely technology independent.
# April 25, 2005 11:00 PM

Dave said:

I think what's even worse are pages that continually post to themselves, like in asp.net. I mean you hit the back button and you get this warning content expired message. - Lame!
# April 25, 2005 11:06 PM

Erik Porter said:

Totally agree, Jason...but hey, I'd be impressed by say a single HttpHandler and 1,000 Xml files ;)
# April 25, 2005 11:44 PM

Jason Salas said:

Looks like I'll have to learn how to speak Dutch: http://weblog.dion.nu/2005_04_01_archive.php#111443223790994802

:)
# April 26, 2005 12:48 AM

TrackBack said:

# April 26, 2005 4:08 AM

TrackBack said:

# April 26, 2005 5:16 AM

Michael Sumerano said:

ASP.NET is not the cause of the content expired warning when you click your back button. It's because the page is set to expire its content immediately. That'll happen with any technology.

It seems to me that programming everything into a single page is making things complex on purpose. Job security anyone?
# April 26, 2005 9:03 AM

Charles Chen said:

"It seems to me that programming everything into a single page is making things complex on purpose. Job security anyone? "

No, it is, in fact, a better paradigm. What is a page? A page is a remnant of the old static HTML pages when you could only serve static content that differed by the "page".

Take, for example, a universal control which can control your VCR, DVD player, television, and stereo. Would you prefer to have such a device? Or would you prefer to have 4 devices, one to control each different component? Aren't the actions essentially the same with each device? Both VCR and DVD player require "Play", "Stop", "Pause", etc.; woudln't it make sense to consolidate two controllers into one? Take your televion and stereo. Both have a "Channel Up", "Channel Down", "Volume Up", "Volume Down", etc. Wouldn't it make sense to consolidate the two controllers into one?

Similarly, for any given website with any type of cohesive organization/layout is very similar from view to view (or page to page if you prefer). Consider this blog. The left navigation and top header never changes from view to view. How do we represent this in ASP.Net? Using inheritence. We have a concept of a "master" page which creates a template for us by inserting controls into a control hierarchy. Other pages inherit from this page and automatically gain the left navigation and top header for free. So any given view is really just a slight variation on this master view with a different set of controls defined in a dynamic (view to view) region. So it begs the question: Why would I have 10 different controllers (pages)? Why wouldn't I have one controller with different modes of operation based on a switch("VCR", "DVD", "TV", "Cable", "Stereo" button on a universal remote)?

To me, a single page architecture is more elegant and moves away from repetition. No matter what, so long as you continue to use different pages, you will end up with more repetition than is necessary.

With regards to the URL, it's not at all difficult to translate arbitrary "nice" URLs to "no-so-nice" URLs using custom HttpModule.
# April 26, 2005 9:24 AM

Charles Chen said:

Consider another example (sorry, just thought of this a very good example), look at what the Whidbey team has done with Visual Studio.Net as a single interface/controller for multiple "views".

If you install the latest SQL Server 2005 CTP, you might be surprised to find that Visual Studio.Net 2005 is also installed. Why is this? The development team has wisely consolidated the different interfaces into one: Visual Studio. It acts as a controller and operates in different modes, depending on a "switch", the project type. Depending on the project type, you have slightly different menu items, a slightly different workspace layout, and a slightly different set of tools. But the similarities far outweigh the differences. No matter what project type, you will always have:

* "Save" funtionality. In fact, you will have all of the functionality in the "File" main menu item.

* Toolbox functionality. While the toolset will be different for each project type, the toolbox metaphor will always be applicable.

* Property page functionality. While the property set will differ from object to object, the property page functionality is consitent.

* File browser functionality. 'Nuff said.

And on, and on, and on.

With Visual Studio.Net 2003 and SQL Server 2000, DTS package editor/designer is a seperate from Visual Studio. But there's no reason for it to be since it can make efficient use of the same controller with slight variations. As such, you will find that SSIS is now integrated into Visual Studio.Net 2005 and Report Designer is as well (as it was in 2003).

I don't understand why people still choose to make a distinction between web forms and windows forms. While they are two different paradigms, we see that with the right amount of abstraction (AJAX.Net, for example, which further eliminates the stateless, disconnected nature of HTTP), we are essentially dealing with the same programming model from a high level.

User interactions *within an application* simply change the controls in a view, not the page itself. When I click "Done" on a form, I don't need to be sent to "Done.aspx"; "Done" is simply a different *state*. Navigating to a different page for different content is so 1992. Certainly, there are scenarios where it does make sense to have different pages, but more often than not, in web applications, I don't feel that this is the case.
# April 26, 2005 9:42 AM

AndrewSeven said:

How about /news/pressrelease/abc123.aspx ;)

What is a page? What is a url?

Url mapping clears one side of the question, but the reason I have many pages is because the pages (not the urls) are functional modules.

I don't want if(urlInfo==loginpage) then DisplayLoginPage() else DisplayHomePage()

For the VS.Net paradigm, it sounds like you need to just use frames ;)
# April 26, 2005 10:08 AM

Chris said:

Voice indexing is already a reality, it's just not perfect. There are several companies out there doing it, but their products are too expensive for consumers yet. In a couple of years this will all change, no doubt Google will be the one to bring it to the masses.
# April 26, 2005 10:32 AM

Charles Chen said:

"if(urlInfo==loginpage) then DisplayLoginPage() else DisplayHomePage()"

This is a simplistic method of organizing it. http://geekswithblogs.net/sbellware/archive/2005/01/27/21276.aspx

>> "Methods that have switch statements or flat conditional branching are prime candidates for applying a pattern that uses polymorphism. Switch statements and flat conditional blocks are sometimes indicators of polymorphism phobia. Sometimes you have switch statements that aren’t indicators of polymorphobia, like in factory classes. If you're coming from a procedural programming, you wouldn’t have had objects and inheritance and subsequently no polymorphism-enabled patterns like Factory, so some of this stuff might seem like overkill."

Keyword is *Object Oriented* ;)

"For the VS.Net paradigm, it sounds like you need to just use frames ;) "

You miss the point of a single controller that operates in different context based on a switch, the project type. Read the analogy to DVD, VCR, TV, Cable, and home theater controller; it's a bit simpler to grasp because it's physical.
# April 26, 2005 10:35 AM

Charles Chen said:

To be clear on the VS.Net point, I'm not asking "how would you emulate the interface?" I'm praising the fact that they *reused* the same controller for different project types/development contexts. VS.Net is the basis for SSIS Designer, Reporting Services Report Designer, and so on.

Instead of having two different views/pages/desintations (i.e. Enterprise Manager *and* Visual Studio), we now only need Visual Studio.Net which acts as a host for the different design surfaces. Similarly, any given view/page/destination only differs slightly from any other one. It will have similar navigation schemes, similar look and feel, similar headers, similar footers, etc. Do you need 3 views/pages/destinations just because you have 3 different content types, even though the visual display of that content is 70% the same? Wouldn't it make sense to reuse the same view/page/destination and simply swap out the content?
# April 26, 2005 10:47 AM

foobar said:

Most web sites where you see a single file for the point of entry use an application based MVC paradigm. Such examples are Struts, Fusebox, Maverick, etc.

# April 26, 2005 11:28 AM

Charles Chen said:

"Most web sites where you see a single file for the point of entry use an application based MVC paradigm. Such examples are Struts, Fusebox, Maverick, etc. "

Exactly; most in the Microsoft development camp aren't familiar with these concepts/tools. But we see that even Microsoft is shifting developers towards this type of model with their extensive coverage of Patterns and Practices and the new facilities in ASP.Net 2.0 for URL rewriting out of the box.

http://msdn.microsoft.com/architecture/patterns/default.aspx?pull=/library/en-us/dnpatterns/html/ImpFrontControllerInASP.asp

>> "The previous example (page controller) works very well for its intended purpose. However, it is overly simplistic and not representative of most Web applications. To better approximate the overall complexity of such applications, the requirements for this example call for different headers on the pages, depending on the URL and query parameters. "

"But, that's not my thing. As a marketer, I believe in the indirect value of showing a client the site's mere volume, just based on the visible URLs. The site just looks bigger, implying a lot of folders, implying a lot of content."

Guys, you're reading the opinion from a *marketer's* perspective.

"The site just looks bigger, implying a lot of folders, implying a lot of content."

How can you read this line without heaving a big *sigh* for the team that would end up working on this project? That's like saying "More lines of code implies a bigger program which is better and obviously does more." If you can't agree with the second statement, how can you agree with the first?
# April 26, 2005 12:43 PM

Alex Papadimoulis said:

Pssh ... who even needs a single page? That's a waste! Just dump it all in an HttpModule. If your users still want to maintain static html files on disk, then just stream them out through the module. If you get complex enough, you can event reinvent IIS within a HttpModule within ASPNET within IIS.
# April 26, 2005 5:07 PM

Eric Newton said:

aspx pages are actually "first time compiled" into an asp.net controlled area.

when you move the site, you typically wont move those with the app, since the pre-compiled page dll's are in a totally different area.

in theory, another server with faster disk i/o could make the actual compilation process very short, almost illegible to the end user (obviously a good situation)

the initial default.aspx startup probably was long because maybe iis hadn't spun up, the iis application process hadn't spun up, and finally aspnet handler hadnt spun up, so then once all that mess is in memory it was probably blazing fast, and given the potential with xeon processor's huge memory cache, might have brought all that into its cache...

just fyi. note that asp.net 2.0's compilation is very similar now. The "precompiler" simply makes simulated requests against all the aspx pages. One nice feature of the precompiler is having it precompile it all into one dll, which may or may not be good for sites that change their aspx pages often.

ironically, i've been wondering if an interpreting handler (think classic asp where each page was interpreted at runtime) for sites that build a lot of aspx pages, like content management and so forth, would be better in the sense to ease memory pressure in the form of the "compiled aspx" types... since you can't unload dlls without unloading the appdomain, a site like codeproject that basically "writes an asp" for each article (assuming they dont have an isapi filter that rewrites the path), then you wont have, say codeproject has 300,000 articles, then they wouldn't have that many "compiled aspx" types in memory... some food for thought ;-)
# April 26, 2005 8:39 PM

Dan Klass said:

Jason -

I followed a link on the Podcast Solutions site to your podcast, and was just listening...what a great show. I agree about Seattle. What a great city. Jimi AND Bruce, what could be better?

I was SURPRISED to hear you talk about the Apress book in such detail, and then remembered that Chris Mills told us that you'd received a copy (well, the outline and 3 chapters). REALLY glad you like what you've seen. Everyone at Apress seems very happy. Truth is, Chapter 4 is 100 times better than 1-3, and each one is getting better still. We're REALLY excited about it and are having a blast.

Glad to have you in our corner!

All my best -

Dan Klass
Co-author of Podcast Solutions
Host/producer of The Bitterest Pill
Host/producer of Old Wave Radio: New 80's Music!
# April 26, 2005 9:01 PM

foobar said:

Don't laugh. That used to be somewhat common in ASP:

<% SomeCOMObject(Request, Response) %>
# April 26, 2005 10:18 PM

Ed said:

We're looking for someone in/outside the http://www.RainbowPortal.net community to contribute to the RainbowPortal module codebase by implementing a Rainbow module wrapping the FlexWiki codebase - perhaps that might interest you, I hope so.
# April 26, 2005 11:40 PM

jon said:

The pages get compiled to one assembly per folder under your web app. Here's an interesting article that talks more about it: http://aspnetresources.com/articles/debug_code_in_production.aspx
# April 27, 2005 9:46 AM

Chris Frazier said:

I wish I could take credit for the insight to voice search, but alas, it wasn't me.

There's some poor Chris out there that's pissed at me because I got credit for his idea! FWIW, I always leave a link when I comment to a blog. I want to take responsibility for what I say, even if it shows how big of a dope I am. :)
# April 27, 2005 11:38 AM

TrackBack said:

# April 28, 2005 8:44 AM

Wallym said:

I think politics is another big driver. There is no shortage of radio talk show hosts pandering to liberals and conservatives (mostly conservatives).

Wally
# April 28, 2005 10:20 AM

Victor Vogelpoel said:

Astronomical? The US price for a gallon is currently about $2.280 per gallon.

Over here in the Netherlands, these are our current prices (unleaded):

1.32 euro per liter
=
5 euro per gallon
=
6.45 dollar per gallon
# April 29, 2005 5:23 AM

Jason Salas said:

Whoa...that is pretty heavy...
# April 29, 2005 5:26 AM

Jamie said:

Exactly the same as it is in Scotland ($6.45ish a gallon), despite us having huge oil reserves off the coast :(
# April 29, 2005 5:50 AM

Victor Vogelpoel said:

The 'astronomical' Dutch gasoline price is not the only off balance thing: a medium size car in The Netherlands will cost about 20000$ euros (about $25,831), so mobility is expensive compared to the USA.
And don't get me started on the US living standard, which is about twice as high as in the Netherlands: we pay about two times as much for the same product.
# April 29, 2005 9:45 AM

Glenn of Vallejo said:

whoa! I always new Euro prices were high. One of my editors at Apress lives in Birmingham, UK and he was telling me last year that it was $5.00 a galllon.....I stopped complainging then and just bent over and sucked it up <sigh>
# April 29, 2005 12:32 PM

TrackBack said:

# April 30, 2005 4:48 PM

Glenn said:

"that's hottt..."
# May 1, 2005 1:23 AM

Rick Strahl said:

Jason, startup time for the first page is always a tricky one, because there may be a lot of things starting up at the same time. 20 seocnds is pretty slow but it obviously depends on the type of machine and load on the box. Worst case scenario is IIS was just started and you hit an ASPX on the first hit. So you have IIS starting, then starting an Application Pool worker Process (or ASPNET_WP in IIS5), you have .NET loading into it, then the default AppDomain is created, then another AppDomain for your ASP.NET application, then the default page is compiled which in turn pulls in a bunch of other referenced assemblies for the first time as well as the code behind assembly.

A lot is happening on that very first request.

Then again, hitting a freshly started IIS site even with a static page isn't exactly blazingly fast either... I'd say the biggest hit is the .NET runtime loading into the worker process.
# May 1, 2005 4:52 AM

TrackBack said:

# May 1, 2005 5:07 AM

TrackBack said:

# May 1, 2005 5:10 AM

Scott Mitchell said:

I agree, DLLs in a URL are less than ideal. But, honestly, I don't have any REAL issue with a site's URL scheme AS LONG AS THEY REMEMBER IT'S A PUBLIC INTERFACE! [http://scottonwriting.net/sowblog/posts/3523.aspx] Namely, so long as they don't go off and *change* their URL scheme and don't use URL rewriting or intelligent redirects to handle the now broken URLs on their site.
# May 1, 2005 2:29 PM

jayson knight said:

eBay used to use dll's in the URL IIRC, but they reworked it and just have nice succinct URL's. Nextel uses it as well for sending text messages, always thought it was really annoying and just kind of strange.
# May 1, 2005 7:40 PM

TrackBack said:

# May 3, 2005 4:50 AM

TrackBack said:

# May 3, 2005 4:54 AM

Patrick said:

Jason that me very useful..
Blog on that if you will have something at hand
# May 3, 2005 7:35 PM

TrackBack said:

# May 4, 2005 4:35 AM

TrackBack said:

# May 4, 2005 4:35 AM

TrackBack said:

# May 4, 2005 4:46 AM

TrackBack said:

# May 4, 2005 4:47 AM

TrackBack said:

With the recent news of Adam Curry's new Sirius show dominating our collective thoughts, Jason Salas weighs in with a podcast discussion on podcasting versus satellite radio....
# May 4, 2005 7:17 AM

Scott said:

Ask yourself this.....can any of the companies that developed the various technologies used by the different sites be held accountable moral or otherwise?

If so, don't you think that their licensing agreements would try to eliminate use for such activities?

Of course there are a variety of lawsuits related to such issues....but what if some escort service decided to use Passport or some other authentication? I assume they all use some sort of authentication, right?

I assume you placed it in to the domain to be used. How many sites that you might not know about might be using it for a site you wouldn't approve of?

You might build a car, but you can't control how people use that car. Kidnapping, manslaughter, robbery, backseat activities in a way you would find immoral...etc.
# May 4, 2005 8:20 PM

TrackBack said:

# May 5, 2005 4:28 AM

TrackBack said:

# May 5, 2005 4:30 AM

TrackBack said:

# May 5, 2005 4:30 AM

TrackBack said:

# May 5, 2005 4:46 AM

TrackBack said:

# May 5, 2005 6:04 AM

TrackBack said:

# May 5, 2005 6:04 AM

Scott Galloway said:

If you could be held responsible don't you think Microsoft would be sued constantly for this sort of thing?
# May 5, 2005 6:11 AM

Wallym said:

LMAO
# May 5, 2005 6:36 AM

Phil Scott said:

Back when I did training, we had a "lady" taking all kinds of HTML and web programming classes to make a website. I use the term lady loosely because it was really a drag queen, who had decided to cut out the middle man and run their website theirselves.

Naturally, we had to check it out. I wonder if the IT people ever saw we were looking for transvestite websites.
# May 5, 2005 9:56 AM

Bob said:

object objJasonSalas = new (PoliticallyCorrect) Microsoft.Com.Blogger; //<smirk>

(Or whatever, I'm old and sarcastic, but new to c#. )
# May 5, 2005 12:07 PM

Scott Cate said:

Too Funny.
# May 5, 2005 2:16 PM

TrackBack said:

# May 5, 2005 3:57 PM

Jason Salas said:

Hi Bob,

That's classic! Hahahaha!
# May 5, 2005 6:05 PM

Jason Salas said:

...or, Bob could write

if(objJasonSalas as Moralist)
Console.Write("Paranoid and stressed out over something I can't control anyway.");
else
Console.Write("Just get over it already...");
# May 5, 2005 6:07 PM

Jason Salas said:

# May 5, 2005 6:33 PM

TrackBack said:

# May 8, 2005 4:00 PM

Wallym said:

When you encode into an mp3 file, it will end up being encoded as mono to get the file sizes down.

Wally
# May 8, 2005 7:57 PM

Buddy Lindsey said:

We can see about adding that feature into iPodder.net. www.ipodder.net You are welcome to help with it if you want.
# May 8, 2005 11:23 PM

Jason Salas said:

I'm messing with a proof-of-concept module I'm working on based on a wiki. It'll hopefully allow listeners to interact with podcast producers collaboratively, and then access produced show notes.
# May 9, 2005 1:36 AM

TrackBack said:

# May 9, 2005 7:37 AM

TrackBack said:

# May 9, 2005 7:37 AM

TrackBack said:

# May 9, 2005 7:38 AM

TrackBack said:

# May 10, 2005 4:25 AM

TrackBack said:

# May 10, 2005 2:17 PM

Alex Papadimoulis said:

I don't know about podcast -- I really can't see that sticking around for too long. I may be biased in that I hate every new buzzword (Blog included) ... but since this is tied to a specific product ... it's hard to say ...
# May 12, 2005 9:33 AM

Joel Ross said:

For me personally, I do tend to listen to podcasts done by bloggers I read, but even more, I listen to podcasts that the bloggers I read recommend.

To me, that's more important because I read too many blogs to listen to all of thier podcasts, so I have to be selective. If a few of them say a podcast is good, then I'll probably listen. Same goes for podcasts. If the podcaster is good, I'll check out other podcasts they recommend (for example, Sports Bloggers Live, recommended by you).

I do try to listen to the same type of content as I read though - which is why I listen to the recommendations of other bloggers and podcasters!
# May 12, 2005 10:01 AM

Aly said:

hey i really want to talk to paris hilton online! can you show me how?
# May 12, 2005 5:43 PM

Glenn said:

Agreed with Joel above. Since RSS feeds, time shifted listening, and blogs are part of the 'new' information age, and there are so many to pick and choose, it's great to get a recommend.

For example, the Frat Pack was a good one as is the Kiss Podcast Jason mentioned.

# May 12, 2005 6:54 PM

Glenn said:

i had to add:

Blogger
RSS
iPod
Powerbook
iBook

# May 12, 2005 7:10 PM

Glenn said:

hey, watch it buddy! not all marketing people are computer illiterate! :-)
# May 13, 2005 12:22 PM

TrackBack said:

# May 13, 2005 4:57 PM

TrackBack said:

# May 13, 2005 5:08 PM

Jason Salas said:

It's not a PC literacy thing...it's a lying thing and the fact that so many marketing people (of which I'm one, like it or not) have used this excuse on each other...and it's worked.
# May 13, 2005 7:38 PM

Jason Salas said:

You wouldn't tell an SEC representative that the stock market crashed when he just came finished analyzing a day's trading, now would you? :)
# May 13, 2005 7:39 PM

TrackBack said:

# May 14, 2005 9:21 AM

TrackBack said:

# May 14, 2005 9:23 AM

TrackBack said:

# May 14, 2005 9:47 AM

TrackBack said:

# May 14, 2005 12:12 PM

TrackBack said:

# May 14, 2005 12:15 PM

Frank said:

I noticed the same noise with GSM-based phones in Germany and, to a certain extent, Nextel phones in the US.

I would always get a 4 second warning before the phone would ring as my PC speakers would make a wierd Morse-code type of noise.
# May 14, 2005 7:46 PM

Wallym said:

yeah, i've been told its the same with all of the digital phone products.

As for the iRiver, I have no idea.
# May 14, 2005 11:20 PM

Jason Salas said:

**NOTES**

Hey Buddy, for our next test, maybe you could try calling me and then I'll start recording. W'eve only ever tried it to this point when I initiated the calls. I guess it's worth a shot. :)
# May 15, 2005 12:30 AM

mike said:

1) Should Word's lexicon include the fad words and acronyms of every industry, or just of the computing world?

2) For _most users of Word_, are terms like "RSS" and "blog" likely to be common terms or a typo?

3) Two words that I can highly recommend for this problem: "Custom dictionary."
# May 15, 2005 3:00 AM

mike said:

Newspapers are not doing well -- and have not been for decades -- not because of the Internet, and certainly not because of bloggers, but because of TV, which is where most people get their news. The quantity of information in something like the NY Times, which comes out daily, is generally more than a single person is interested in absorbing. In comparison, the quantity of actual information in a TV news broadcast is a joke. Which goes a long way toward explaining how uninformed most Americans are about their own country and about the world.

The death of print journalism has been heralded before. The newspaper and print-journalism business has its problems, but they antedate the Internet. No one has yet showed that the TV news or (as yet) the Internet has made the NY Times obsolete, or the Wall Street Journal, or Time Magazine, or The Atlantic Monthly, which has been around for over 100 years. Time-to-market is only one measure of the value of news; not everything that constitutes news must be available immediately.

The notion of blogging as replacing newspapers is silly. For starters, most blogs are just stupid. Blogs that address contemporary issues post opinion pieces, not news per se. I'll say that again: blogs print opinions, not news. Your words: blog authors can "arguably be legitimate." I'm arguing: bloggers are not journalists. Name a dozen blogs that have the legitimacy of a NYT or WSJ byline.

The problem with blogs is that they are virtually all ideological. At least if I subscribe to Mother Jones or The Weekly Standard, I have some sense of the medium's ideological bias. If I search Google and land on someone's blog, what do I know about the bias, objectivity, or fact-checking of its reporting? If you want factual information about the filibuster contretemps in the Senate, the energy bill and its implications for drilling in Alaska, the outcome of the British election, or the state of tsunami relief effort, where I am likeliest to get accurate information about those topics? I might get it from the Internet, but it will be under the auspices of an organization that is essentially an online version of a print publication. And it sure as hell won't be from blogs.

Your touchstone here is this: blogs will have achieved some sort of parity with newspapers when a blogger is sued for libel.

In any event, I'm never quite sure what to make of "newspapers are dead!" sorts of stories. Who is the target audience for such an opinion piece, and what is the piece attempting to convince people of, exactly? Not to buy newspapers?
# May 15, 2005 3:41 AM

TrackBack said:

# May 15, 2005 4:31 AM

TrackBack said:

# May 15, 2005 4:35 AM

TrackBack said:

# May 15, 2005 4:35 AM

TrackBack said:

# May 15, 2005 4:54 AM

TrackBack said:

# May 15, 2005 4:54 AM

Chaim Krause said:

Thank you for your nice comments about the PSWG. We hope to make the experience much easier for all involved and in the process add features and functionality. If you have some ideas, please send us email directly or engage us on one of the many mailing lists throughout the community.
# May 15, 2005 6:50 AM

TrackBack said:

# May 16, 2005 3:44 AM

TrackBack said:

# May 16, 2005 3:47 AM

TrackBack said:

# May 16, 2005 3:47 AM

TrackBack said:

# May 16, 2005 5:45 AM

TrackBack said:

# May 16, 2005 5:45 AM

TrackBack said:

# May 16, 2005 5:50 AM

TrackBack said:

# May 16, 2005 5:50 AM

Glenn said:

you gotta take pictures dude!
# May 16, 2005 4:39 PM

Jason Salas said:

There's also a growing concern about why many 'Net-savvy people these days are wary of getting into podcasting - even from a listening standpoint: with so much advanced multimedia these days, why in the world would we want to go back to picture-less audio?

It's a good argument, and I hear it often.
# May 16, 2005 9:05 PM

alex in dallas said:

regarding my email about video: let me be more specific -- i wasnt asking why your 'sound-seeing' tour didnt have video. i realize it was what it was... what i was asking you is, why don't you DO a video tour?

podcasting is not just audio. many enclosure deliveries are video files.

and as good as you sound, we (the displaced guamanians) would rather see what you see, than just listen to you describe it.

OK, maybe that last part is just me. or is it?
# May 16, 2005 9:05 PM

Jason Salas said:

Cool...thanks Alex. Can you imagine how big the file would be for 50 minutes of video? I don't know about you, but I get motion sick when I try to read or operate anything in a moving car, so I doubt I'll be headed down that path. :)
# May 16, 2005 9:09 PM

Glenn said:

Working in publishing, I think it's the advent of something big. APress is going to publish a podcasting book as well as our competitors doing the same.


i think, at least with video and pics, one would want to see the sunset you talk about or the BMW you drove. Not a link to BMW.com, but the real thing. :-)

# May 16, 2005 10:03 PM

Jhoanne said:

This is the first time I actually listened to a your podcast. Used to only pick poetry reading stuff or some other work related thing. :D Anyway, I picked this one because of the tour -- now I have a pretty good idea about some of Guam's charms, sorta. For your friend Will's debut - he did pretty well! Yey, Will! :) The new mic picked up the sounds better, too.
Looking forward to your other "collaborative" podcasts.
G'day!
# May 17, 2005 6:29 AM

Mike said:

HAHAHAHAHA! You said 'Wanking'!!!!
# May 17, 2005 7:50 AM

anonymous said:

Raisin bran is the bomb!
# May 17, 2005 11:48 PM

Apparently your oldest listener said:

Those of born early enough to have been around when the Zombies were on the radio daily know that the best cereal is the one with the coolest prize. ;-) But I may be wrong, my Mom also fed us whole milk with a raw egg and vanilla for breakfast sometimes. We didn't know from salmonella back then I guess.
# May 18, 2005 3:48 PM

Chris Szurgot said:

Reminds me of Titanic. Some people cut out something like 30 second of on-screen intimacy and implied sex, but the thousands of people dying (falling down the boat, in the water, etc...) was quite alright.
# May 18, 2005 8:48 PM

Jason Salas said:

Great point, Chris.
# May 18, 2005 8:51 PM

Nino said:

i suspect it's less to do with moral implications of sex vs. violence. it's just cloaked as such unintentionally.

i bet most parents think that for most kids, seeing violence or murder or screen doesn't illicit the same natural temptation that seeing sex on screen does.

of course she is dilluding herself thinking that it's possible to keep this stuff away from kids in the first place.
# May 19, 2005 12:54 AM

Erik Porter said:

I grew up with a father, much like the woman you described, and I totally agree with your statements.

I like to look at it like this in regards to "protecting" your kids like that: Good intentions, poor execution.
# May 19, 2005 2:13 AM

Bob Bachand said:

I agree with your correction of a colleague that does not get it with the evaluation of what is a poor influence to children. One must be consistent and realistic.

As a believer myself I do appreciate your candor and that we all can be misguided and just plain wrong at times. You quoted Luke 6:37 about judging others and if you read on it states that you will be judged with the same measure you judge others. We all judge or make judgments and I use Luke 6:42 to make sure I am doing it out of love for that person and not something else. This is something I have always tried to remember when I am judging others.
# May 19, 2005 9:40 AM

Scott said:

I probably feel the same way as this woman. Seeing violence is typically not a temptation depending on the context. The concept of good and evil and the often violent struggle between the two is not sinful. Now I wouldn't want my kids to see a guy get enraged by a bad driver, jealousy, etc. that goes off and commits acts of violence. That is sinful. I think more and more parents think that just not letting their kids see violence is helping them when what they really need is to learn to deal with tough emotions.

It's like the argument for gun control. Instead of solving the root problem many argue for just getting rid of all guns.

We live in a violent world...just look at the weather. If voilence in itself was sinful Jesus wouldn't have used voilence to chase the money changers out of the temple. God also used voilence in many places in the Bible for punishment or to help one group of people over another.
# May 19, 2005 1:27 PM

anonymous said:

Raisin Bran still wins all in my world.
# May 20, 2005 6:13 AM

mike dunn said:

hi jason,

i think something is haywired w/ your trackbacks - they seem to be doing weird things when they hit my posts...

thanks for linking to me though - and hope your enjoying your experience w/ http://pswg.blogspot.com
# May 20, 2005 9:20 PM

anonymous said:

I watched that movie when I was five, and I didn't get the point of it, but I thought it was pretty cool. I watched it again when I was like twelve, and I finally understood. It is a great movie. That'd be cool if they made a sequel with all the effects that could be done now. Wow.
# May 21, 2005 5:25 AM

Will said:

Being a parent myself, I can empathize with your coworker's position on the matter. But it's funny how people have come to accept the level of violence depicted in today's films and television, but still feel uncomfortable talking about sex and intimacy with their own children. One common mistake that parents often make (myself included) is to use the method of isolation to avoid the more important issue of education and communication. I think that your friend feels comfortable with the violence because she feels that she can talk to her kids about it. But if her kids start asking about why that man is putting his hand up that ladies skirt, she's not ready to answer that question.
# May 21, 2005 9:23 PM

TrackBack said:

# May 22, 2005 4:01 AM

dru said:

Since it replaced Boston Legal, what I thought was a great show, it really only filled up the remainder of the season. GA is good too, so hears to Season 2.
# May 23, 2005 12:36 AM

Scott said:

Hehehe, I've been watching it. But I call it "Dr. Ally McBeal" because that's basically what it is. Young, professional, single woman. Cute, but not intimindatingly beautiful. Gets all flustered about her job, but still manages to pull through and do a great job. Romantic tension with a guy at the office. Over deamanding Asian woman. comic Relief at the office in the form of a nerd. They followed the formula. It's still kind of enjoyable. A lot of the medical drama is laughable of course.

Fun things to do during the episode.

1) See if you can catch the KOMO 4 TV logo on the side of the "hospital" anytime the helicopter lands. They are really landing at the Seattle ABC affiliate.

2) Look out the windows whenever they show a shot in the large room at the "hospital" and look for the mountains that ring Seattle. hmmm, those look an awful lot like California mountains? Wait, there aren't any mountains that ring Seattle!

3) Count the number of city shots. That don't include a ferry or the Space Needle.

4) What?! They never go to the Market?
# May 23, 2005 12:53 AM

jayson knight said:

great show, hope to see season 2.
# May 23, 2005 6:31 AM

Lina said:

Hey, Grey's Anatomy has been officially renewed for the 2nd season; it will surely be back in the fall (possibly September) of 2005. It actually aired 9 episodes this season, and should have 26 for the next. Rating-wise, it has consistantly placed among the top 10 brocasting programs since the 2nd episode, which is doing better than Lost.

# May 24, 2005 3:00 AM

Jason Row said:

I came across another PodCasting book that's available for purchase online. I haven't read it as I'm not planning to do my own podcast but I thought you might be interested in more reading.

http://todmaffin.com/ideatoair/podcast_edition.htm
# May 24, 2005 10:18 AM

Joie said:

I'm glad I stumbled upon your weblog and podcasts. We went to St. Anthony together and you probably don't remember me, just stopping by to say hello!
# May 24, 2005 1:01 PM

Brad said:

I'm usually not a fan of drama shows, but for some strange reason, this show has drawn me in. My fiance and I were severely disappointed at the show only being seven episodes, but I guess we'll deal with it since we'll get more episodes in the fall.

I have noticed the helicopter landing on top of Fisher Plaza (home of KOMO 4). As far as mountains, they look like the Cascades to me. Mountains that ring Seattle? How could you forget Mt. Rainier? I'm not sure how they haven't visited the market yet. I thought that was some unwritten rule of shows in Seattle?
# May 24, 2005 1:45 PM

Javier Luna said:

I believe that any DataLayer must be a simple code block, that they allow operations against DB.

That code block would not have to know on the Business Entities. Single to specialize it is to execute the operations (Store Procedures and SQL Sentences) against the engine DB (SQL, Oracle, DB2, etc.), with which this setting.

Finally, I invite to you to download the DataLayer.Primitives Public Version.

This is very cool Data Layer :)

DataLayer.Primitives - Readme!
http://forums.microsoft.com/msdn/ShowPost.aspx?PostID=1389

Cheers,

Javier Luna
http://guydotnetxmlwebservices.blogspot.com/
# May 25, 2005 10:53 PM

Dave Mason said:

Interesting. I am a devoted christian and also devoted star wars fan.

I saw episode III and thought it would not be suitable for children under the age of 10 as it is quite dark and potentially very scary for young kids.

Sex scenes in star wars?? hehe.. this made me laugh. You never see sex scenes in starwars.

There was a bit of violence there but it was all in context. Overall, I think this is a good movie for christians (and non christians) to watch as it shows how easy it is for us to slip into evil without realising it (or to do evil in the name of good).
# May 25, 2005 11:45 PM

Randy T. said:

Heard you on Don's Cartoon Radio Network podcast today. Nice work.
Me and my internet rocker will be podcasting after late summer. Right now you can catch us at Rockinradio.com where we play the best oldies you've never heard. We are the ANTI-oldies station. IF you know any baby boomers who hate the same 300 songs over and over on oldies stations, tell them to check us out!

Keep rockin'
Randy T.
Rockinradio.com
RLT@sfv.com

Sherman Oaks, CA
# May 26, 2005 2:27 AM

TrackBack said:

# May 26, 2005 5:27 AM

TrackBack said:

# May 26, 2005 5:27 AM

TrackBack said:

Here's a great application for podcasting: remix culture ... specifically museum and art gallery commentaries so that they're less pedagogical and you don't have to cope with those irritating buttons on those audio devices you have to hire and hang...
# May 27, 2005 11:47 AM

Jan Polet said:

Hey Jason,

Cool that you played a clip from Hit Test 38!
The Hit Tests of course are made specifically for Adam Curry's Daily Source Code.
The Hit Test Podcast is my own podcast.
Here in the Netherlands the rules for using music aren't finished yet.
So in and from the Netherlands we can do pretty much anything we want.
That will change in the future.

Thanks for the best wishes.

Jan
# May 28, 2005 2:35 AM

Jakiesha said:

I think Grey's Anatomy was the best show on ABC in my opinion. It showed a doctor's life, but at the same time they showed some suspence. I liked espcially at the finale. The doctor's wife came in. I just can't wait untill the next season!
# May 28, 2005 8:38 PM

Dr. Don said:


The subject of the legal ramifications of playing music and audio film clips in your podcasts is a complicated one. Perhaps we can learn something by looking back at what our fellow Internet Broadcasters went through.

Many years ago I "accidentally" became one of the voices that spoke out to save Internet Broadcasting. At the time the powers that be were deciding on how Internet Broadcasters would be charged for music licensing. It was something that we all knew was coming as Ingernet Broadcasters had been given several years as a grace period to play licensed music as it was decided what they would be paying. When the word finally came down the only sound left in the Internet Broadcasting world was a large gasp! The new law, as it was stated, would put nearly every Internet Broadcasting company (such as Live365) out of business! There was no way they could make the back payments, nor keep up with future payments.

We had all hoped that we would be charged on a per-listener basis. But as it turned out, they wanted to charge us even more than they do a radio station!

To make a long and involved story short, with much letter writing and phone calling, the law was over ruled and a new, more affordable licensing fee was inacted. As a result, all Live365 broadcasters began paying a $5.00 a month charge. And they all kept broadcasting.

Will the same thing happen to Podcasters? I predict there is a verty good chance that it will as Podcasting is very much like Internet Broadcasting.

As far as using clips from movies and (in our case)cartoons, there are laws that prohibit it and laws that allow it. But as it won't monetarily effect any certain industry in a negative way, I feel this is something we won't have to worry about. As long as the clip is not used to defame the character or program that it came from I don't feel we will have to worry too much about this subject.

There's is one thing that I did find interesting. If you have a podcast and you run the audio from movie trailers it is interesting to note that most movie trailers sent to the press have a "usage life." After this date expires the user is not suppose to run the trailer. I thought this was interesting and wondered how this might effect anyone using trailer audio.

As I said in the opening of this e-mail, the copyright world is very complicated and not always very clear. But, in its simplist form, if the use of a song or clip in your podcast does not cause someone to lose money (i.e. doesn't cause you to make money!) or defame a person or product, you will probably be okay. If not, you will get that nasty little "Cease And Desist" letter in the mail. And in that case, unless you have lots of money or dad is a copyright lawyer, it's best to stop using the material and move on.

Hope this helps! It will certainly be interesting to see what happnes as podcasting gets more popular in the future.

Sincerely yours,

Don Schockow
Cartoon Radio Network
DVD Weekly Podcast
# May 30, 2005 2:21 AM

Jason Salas said:

Thanks Dr. Don! Good comments.
# May 30, 2005 2:24 AM

TrackBack said:

Currently My Tabs Are...
# June 2, 2005 9:08 AM

TrackBack said:

Through the course of the last week I started thinking about the performance of general string work....
# June 2, 2005 8:22 PM

TrackBack said:

# June 3, 2005 7:47 AM

TrackBack said:

# June 3, 2005 7:47 AM

TrackBack said:

RossCode.com - The Polymorphic Podcast
# June 3, 2005 7:48 AM

Chris Martin said:

400 Bad Request on the stream. :(
# June 8, 2005 10:11 PM

Soccergirl said:

Thanks for the shout out, brutha!!

xox,
sg
# June 10, 2005 7:20 PM

TrackBack said:

# June 11, 2005 1:10 AM

TrackBack said:

# June 11, 2005 1:11 AM

Jason Salas said:

**UPDATE**

I just read that program had been discontinued in favor of Quick News, which has podcasting support: http://standalone.com/palmos/quick_news/

COOL!
# June 11, 2005 3:38 PM

Ian Smith said:

I guess I'm with you except for the 800 pixels width, athough most users seem to run full-screen most of the time and in my view a centred table in such a scenario looks better than a left-aligned one.

Assuming that the "standard" screen resolutions are 640x480, 800x600, 1024x768, 1280x... etc. why go for something that is too large for one size and wastes space for the next size up? Space is needed for scroll bars and the browser border so I'd typically go for 740 width (if 800x600 is my "minimum supported resolution" or 970 width (if 1024x768 is my miminum supported width)
# June 12, 2005 4:42 AM

Chris Frazier said:

This is what dns is all about :P
# June 13, 2005 6:25 PM

TrackBack said:

# June 13, 2005 7:30 PM

mike said:

Do you have a link to one? Cool idea, but I can't find one just yet.
# June 14, 2005 12:40 PM

muguette said:

I am disappointed that the show had only 9 episodes. I hope ABC continues to air it in the next season. It is even better than LOst.
# June 14, 2005 3:26 PM

Intelligent Freelance Outsourcing said:

Great show today. Looking forward to the ASP.NET casts.
# June 15, 2005 10:08 PM

frishta said:

i want to one project of uml that is about hottel
i need it
plz help me for slove it
one simple hotel
# June 16, 2005 3:24 AM

frishta said:

one hottel methode i neeeeeeeeeeeed plz
# June 16, 2005 3:24 AM

TrackBack said:

# June 16, 2005 3:50 AM

alex said:

jas,

it was hee-freakin-larious to hear you talk about the discoveries you made whilst messing with dad's G5. i shared the podcast with several of my macheads here in office, and wanted to tell you that you obviously only scratched the surface of the surface.

i look forward to hearing more!
# June 16, 2005 5:53 PM

Scott Allen said:

Hollywood nepotism - that's great :)
# June 17, 2005 10:43 AM

jayson knight said:

Good catch! I hate the news, however I can't get enough of Countdown on MSNBC, he actually makes news palatable. I hope they release the MJ puppet theater on the internet, hilarious.
# June 17, 2005 8:17 PM

Keith Free Ellis said:

What's the system you're building?

You could always screen scrape the IMdb or Amazon. I'm sure you could get the details from the title with the amazon web service.

http://imdb.com/nowplaying/
http://www.amazon.com/exec/obidos/tg/browse/-/404332/104-5751871-5114367

# June 18, 2005 9:23 PM

Jason Salas said:

Thanks Keith, but I'm looking for a dedicated data source that provides videos and are forthcoming, not already out there. The system is too dependent on having this as a feature to screen scrape and have me retool the scraping function when the UI on the base page changes.
# June 18, 2005 10:31 PM

Chris Hyde said:

Apologies...the site I linked to previously has some of the data you are asking for, but NOT as a Web Srvice (its in a zip file, with either Excel, HTML, or CSV versions).
# June 19, 2005 12:24 AM

Chris Hyde said:

Hmmm...okay, I screwed something up again :-)

Here's the link:

http://hometheaterinfo.com/dvdlist.htm

Chris
# June 19, 2005 12:24 AM

TrackBack said:

# June 19, 2005 4:25 AM

Bonder said:

Jason, you *are* aware that 'Sit on my Face' *is* a Monty Python song, right? I wasn't clear from your podcast commentary.

--Bruce
# June 28, 2005 1:17 AM

Jason Salas said:

I realize that...now. :)
# June 28, 2005 5:29 AM

Chuke said:

Looks great - wish I could get the lesson material via a podcast to join in the fun.
# June 28, 2005 7:40 PM

Jason Salas said:

Hi Chuke,

Just a heads-up...I'll be doing sound-seeing tours and recording *some* of the lecture material during *some* of the classes, so you'll be able to get pieces. :)
# June 28, 2005 8:06 PM

Chuke said:

Very good. I teach .NET too, but have not found much in the way of "new technology"

Glad to see I am not the only one willing to teach the bleeding edge! Keep up the great work.
# June 28, 2005 8:18 PM

bonder said:

Dude, you need to come teach this in LA!
# June 28, 2005 9:03 PM

bonder said:

LOL -- it's all good!
# June 28, 2005 9:04 PM

Bonder said:

Have you copyrighted the slurping soda sound yet? It seems to be your tagline! :)
# June 28, 2005 9:12 PM

Glenn from Vallejo said:

this is GREAT! I will pass this along ;-)

# June 28, 2005 9:34 PM

Jason Salas said:

Thanks Bonder! Maybe!
# June 29, 2005 1:23 AM

Jason Salas said:

Cool Glenn...thanks! You da man!
# June 29, 2005 1:24 AM

empire poker said:

You can also check out the pages about party poker http://www.allabout-poker.com/party-poker.html
... Thanks!!!
# June 29, 2005 3:58 AM

Barry Friedman said:

Looks great. I was gonna suggest podcasting the course, but I see you've already planned that. Looking forward to it.
# June 29, 2005 11:21 PM

Jason Salas said:

Hi Barry...seems like everyone's got the same idea. Great minds think alike, huh?
# June 29, 2005 11:24 PM

Ian Smith said:

Twice guilty!

Mashups are not safe, which is why I find claims from Adam Curry that what he plays is "pod safe" rather ludicrous.

Just look at what happens with sampling. Where a snippet from one song gets used on another and the author of the original track goes to court. Mash-ups are no different and frequently feature not just a small sample but the bulk of a track.

DJ remix services have discovered the same thing when they've released this sort of thing. As soon as the copyright owner finds out what they've done the lawyers are on the phone.

To take the "pod safe" broadcast example I heard last week as an example the idea that playing The Beatles over a different backing track is "pod safe" is just crazy.
# June 30, 2005 2:35 AM

Jason Salas said:

Hi Ian,

Interesting comments. Would you say then that playing mashups is still a no-no for people outside of the United States, and outside the scope of U.S. copyright law?
# June 30, 2005 2:54 AM

Bonder said:

twice guilty , unless you can demonstrate fair use, which is made extremely difficult if you use full songs.
# June 30, 2005 9:49 AM

Ian Smith said:

I am outside the USA and certainly in Europe there have been cases of record labels chasing individuals and the various remix services for "stealing" their work. In extreme cases artists have won substantial sums of money for having their work stolen. The most publicised case over here was many years ago when an Italian producer used a singer's vocal "Right on Time" and released it as a (misheard) single called "Ride on Time" (by Black Box). It went to number one all across Europe and was fronted by a beautiful model who mimed the vocals in the accompanying video. You can imagine how the original singer (an extremely overweight black diva) felt when she found "her" song at no.1 with some model pretending she'd sung it. It all got very messy very quickly.

I should explain that I dropped out of IT for 3 years back in the late 1990s and worked in the dance music industry (the UK offices of an Italian-based subsidiary) so saw a lot of what goes on when record labels find out their vocals or music snippets has been "sampled" or that a DJ remix service has put out a "mashed up" version of their track without asking or paying a cent in royalties or licensing. The attitude can vary a lot and the wiser companies will come to an agreement with whoever "stole" the work that they can use the mash-up themselves free of charge and that free publication of the original will immediately stop. In some cases of course this has lead to a record label actually having a bigger hit with their "bootlegged" mash up than they had with the original.

But there is absolutely no doubt in my mind that when you're in a situation where to even play a record company's artist in a public place (like a church hall or a village disco) you have to pay licensing rights (a PPL license in the UK, and they're not cheap) that podcasters playing to much bigger audiences are breaking the law in "transmitting" the same without paying a penny in royalties.

It's a nightmare for those of us who like to hear different versions of well known artist's recordings but the law is the law. I love Adam's broadcast mash-ups but when he keeps claiming to be "pod safe when he quite clearly isn't, and coming from the background of MTV he really should know better, I think that's outrageous.

Look at it this way: if you're a fan of an artist and you've downloaded a free mash up of a favourite song of theirs are you then going to go out and buy the legitimate unmashed version? Of course not and this is why record labels get so upset at losing sales to what they see as people "stealing" the work they've paid for.
# June 30, 2005 12:39 PM

Keith Free Ellis said:

Jason - very interesting idea here. Are you offering this online or onsite?
# June 30, 2005 2:01 PM

Jason Salas said:

Hi Keith,

It's going to be offered at UOG, so only available in-person on Guam. But due to the number of requests I've gotten, I mentioned on my podcast today about opening up this course to the online community...maybe as streaming video or for purchase as CD-ROM/DVD.
# June 30, 2005 6:34 PM

glenn from Vallejo, CA said:

finally, a picture! :-)
# June 30, 2005 11:20 PM

Jason Salas said:

...and sorely in need of a haircut! Funny how things happen mid-podcast. :)
# June 30, 2005 11:24 PM

Bill from Boston said:

The best part is, we can even see the beverage o'the day in the background, in front of the monitor. :)
# July 1, 2005 1:00 AM

Jason Salas said:

Hey Bill,

Shoot...in that case, I'll definetly rock out with the King Car Lemon tea on Tuesday so you know. :)
# July 1, 2005 1:23 AM

Wallym said:

but he has a pic on the left hand side of his blog........
# July 1, 2005 7:26 AM

Wallym said:

How about a pic of fredlin (sp?) and some of the other people? What about some pics from the listeners of the show? What about Bob, Lori, Jamie, and all the other listeners? Sorry, no pics of Wally are allowed........
# July 1, 2005 7:27 AM

anon said:

With the amount of data that can be sent across the Internet typically offered on a limited basis (often only several hundred megabytes per month), many podcast producers are finding themselves having run out of said allotted space, facing access to their media stopped for the remainder of a billing period, or applying costly overage charges - or in some cases, disconnected altogether. I projected this inevitably happening, with most ISPs not usually allowing potentially hundreds of gigabytes of data transfer per month for a rapidly-growing audience base to access MP3s that can be quite large (a 40-minute show encoded at 64Kbps results in a download of about 20MB).


Well somebody is gonna make money.
Too much traffic will slow down the net
Its a disaster
# July 2, 2005 9:20 AM

Eric Newton said:

Another good reason for torrents... so I wonder if iTunes with its new Podcasting download support should implement a BitTorrent thread to offer the Podcast to other users without overloading the source's bandwidth... :-)
# July 2, 2005 10:44 AM

Dr. Don said:

On the first day of the Itunes upgrade we were hit with over 600 downloads on both of our shows (Cartoon Radio Network Podcast and DVD Weekly Podcast). That has tapered off to between 400 and 500, but the numbers are staggering. It is hard to believe that just a few days ago reaching your 1000th download was a cause for celebration. Now it is happening every other day!

It is truly sad that this new surge in listenership is causing some podcasters to disappear. I am already hearing of several podcasts that have been washed away in this new audience tidal wave.

But this doesn't have to be! I did a Google search and found several providers, not just Liberated Syndicate, who provide service to podcasters at a decent price ($10.00 to $20.00 a month). So before you throw in the towel, do that search and stay in the game!
# July 2, 2005 11:58 AM

Bill from Boston said:

It's good to see that not only are there other hosting solutions available, but that members of the podcasting community are making sure that others are aware of them so we don't lose out on more independent podcasters that don't have a lot of spare change to put into increased hosting charges. I hope some of the larger podcasting community sites will make this information available to a wider audience so it's not just person-to-person (or site-to-site) info.

The other interesting possibility is that this could lead to a business model that takes donations to help out with hosting charges. Will a listener be interested enough in the content and continued life of a podcast that they're willing to make donations to help keep that podcaster "on the air", so to speak? I can see how some podcasters wouldn't want to "sell out"....but I also know that there are enough podcasters out there that it might be explored. After all, in the software world, you have your freeware, your shareware, and your donationware, and all has its place.

And for the record, as pro-Apple as I can be sometimes, I still think this recent move really shafted the little guy. Not a good way to endear yourself to the content-producing masses.


# July 2, 2005 4:42 PM

Jason Salas said:

Hi Eric,

Having Apple be a BitTorrent seed is a great idea, but I think for now the company is seeing what comes out of it being a conduit for people's content marketing-wise, without being directly involved in the physicaly transmission of it.
# July 2, 2005 10:01 PM

Jason Salas said:

Hey Dr. Don,

I hate to say it...but THAT'S SHOW BIZ! Easy come, easy go. ;-)
# July 2, 2005 10:02 PM

Jason Salas said:

Hi Bill,

I'm going to have to disagree with you on the notion of people donating to keep podcasts up and running (actually, it's the notion of producers asking for donations that I find cheesy and petty). Several podcasters do this currently, and it works out nicely for some, but it's not consistently reliable.

The main drive of podcasting should be that the requisite infrastructure is inherently free or affordable enough so that anyone can get involved and bring their ideas and talents to life. We shouldn't have to rely on people's generosity to finance a show. That's where the more well-structured business models come into play, I think.

I'm more for evolving podcasting as the next generation of viable media...not public broadcasting, being wholly supported by in-kind community contributions.
# July 2, 2005 10:07 PM

Jason Salas said:

Carl Franklin from .NET Rocks! is having similar trouble: http://weblogs.asp.net/cfranklin/archive/2005/07/02/417447.aspx
# July 3, 2005 7:15 PM

Carl Franklin said:

Some Download Numbers for .NET Rocks! and Mondays:

http://weblogs.asp.net/cfranklin/archive/2005/07/04/417662.aspx
# July 4, 2005 2:52 AM

Carl Franklin said:

> I did a Google search and found several providers, not just Liberated Syndicate, who provide service to podcasters at a decent price ($10.00 to $20.00 a month). So before you throw in the towel, do that search and stay in the game! <

That 20 bucks a month doesn't cover this kind of bandwidth, no matter what they tell you on the phone. ISPs play a game of timing with their customers. They are all oversold. All of them.
# July 4, 2005 2:54 AM

Jason Salas said:

Carl's blog cites the fact that .NET Rocks! server has passed 82.5GB of data this weekend, after the iTunes migration. That's uncanny, but I totally believe it. ;-)
# July 4, 2005 3:08 AM

Jason Salas said:

Further to Carl's comments, the ont thing that's ultimately unavoidable is the decision of what to dom when you run out of server storage space. 800MB (or even potentially a couple of tens of GB) is a ton of space, but for people like me, podcasting multiple shows on a weekdaily basis, this is going to reach a point of saturation at some point.

So what to do with my archive? I'd like my audio files to be historically accessible six weeks, six months, or even six years from now. With limitations on how much I can have resident on a server, I'll have to lop off part of my archive at some point, which sucks.
# July 4, 2005 3:09 AM

Carl Franklin said:

The answer, obviously, is that Apple has to support BitTorrent, at least launching the default BT client when a .torrent is downloaded. It would be an easy fix for them to implement.
# July 4, 2005 3:19 AM

Scott Hanselman said:

You can also just drag the link to your podcast into iTunes.
# July 4, 2005 2:10 PM

Scott said:

Why do we think BitTorrent is the answer? Because it distributes the data to other folks bandwidth, true, but something like 30% of the internet's traffic is Torrents now...that can't be a Solution.
# July 4, 2005 2:12 PM

Jason Salas said:

Hi Scott,

I'm not sure if BitTorrent is the ultimate solution, but it's the msot viable at the moment...enough people in significant roles are into it and the platform is solid enough to address the massive bandwidth requirement issues.

It's more globally applicable in the immediate future than developing/distributing a proprietary protocol that Apple and all third-party podcatcher apps will have to implement.
# July 4, 2005 5:28 PM

Jason Salas said:

This also means people like me developing custom aggregators will have to incorporate torrents into their products.

In my own case, I'm already thinking about retooling my podcatcher for smartphones running PalmOS 5 (http://weblogs.asp.net/jasonsalas/archive/2005/06/12/411900.aspx) to support BitTorrent in this light.
# July 4, 2005 6:41 PM

Ron K said:


Have you tried this: http://www.avid.com/freedv/index.asp ?
# July 5, 2005 9:25 AM

alex sian said:

i thought it was really neat that you put up a link to one of my virtualguam 'islandtour' galleries.

back when those pix were taken (with one of the very first digital cameras to get brought into guam), i don't think the phrase "pleasure island" was used to refer to Tumon yet.

i wish i had the time or help to have done the virtualguam site some real justice. i still get about an email every month, asking me to do someone's village for the next tour stop.

i've been told that virtualguam was ahead of its time. it even has some of the first VR scenes ever posted on the web... and, it was also host to the original kuam website before i registered kuam.com -- man that was a long time ago... man am i getting old.

(sigh)
# July 7, 2005 11:27 PM

Jason Salas said:

Hey Alex,

Were you one of the Max addicts who was able to pinpoint the filename of the Garageband clips I used today? :)
# July 8, 2005 1:11 AM

Jeff said:

Feedback always helps, good or bad. I'm sorry to say I'm unsubscribing from your RSS feed. I used to love this blog because of all the great .NET talk from a fantastic programmer. It's now all-podcast, all the time. I'll check back occasionally. Good luck with your podcast endeavors Jason.
# July 8, 2005 12:29 PM

Jason Salas said:

Hi Jeff, no problem at all (I think I know who this is), and I appreciate the compliment (although I never really thought of myself as a competent programmer...just a good marketer who knew how to write code a little...OK, maybe more than just a little). Much of my blog was .NET stuff before, which coincidentally made a lot of non-programmers turn away from it, wanting more entertainment stuff and philosophy pieces.

I'm still very involved with .NET, and that's always going to be my #1 passion. But, I've been doing more AppleScript, Java, BlueTooth, and BREW development these days, too. You can expect to find more about those things, as well.

There was a point in the history of this blog where I wrote about .NET and nothing but, and I did enjoy it. Maybe I'll come back to that. It all depends what I'm working on, what I'm feeling, and what I'm into at the moment.

I try not to limit myself to any single thing. As a result, my blog (and podcast) gets a lot more taffic from people all over the place. I may lose some of the niche enthusiasts, but maybe they'll come back. :)
# July 8, 2005 7:52 PM

texas holdem said:

You may find it interesting to visit some helpful info on texas holdem http://www.poker-24x7.net/texas-holdem.html
party poker http://www.poker-24x7.net/party-poker.html
poker http://www.poker-24x7.net/poker.html
poker games http://www.poker-24x7.net/poker-games.html
texas hold em http://www.poker-24x7.net/texas-hold-em.html
- Tons of interesdting stuff!!!
# July 9, 2005 4:36 PM

Jason Salas said:

# July 11, 2005 8:09 PM

online gambling said:

You are invited to check out some relevant pages in the field of casino http://www.hawaiiansurvey.org/casino.html
roulette http://www.hawaiiansurvey.org/roulette.html
... Thanks!!!
# July 12, 2005 4:45 PM

bonder said:

Jason,

Audio's a bit hot on the intro. Rest of the show sounds a bit "open" -- different mic?

Great content! :)

--
# July 12, 2005 9:21 PM

Jason Salas said:

Thanks...yeah, I do need to take the intro segment down a tad...I'm using the same condenser mic, but I did my "anchory" voice and got a little too enthusiastic. I'll tweak it for tonight's show. Still working on it. :)

Thanks for listening!
# July 12, 2005 9:33 PM

texas hold em said:

In your free time, check the sites on poker hand rankings http://www.yachtdurak.com/poker-hand-rankings.html
poker games http://www.yachtdurak.com/poker-games.html
poker site http://www.yachtdurak.com/poker-site.html
poker terms http://www.yachtdurak.com/poker-terms.html
free online texas holdem http://www.yachtdurak.com/free-online-texas-holdem.html
texas holdem online http://www.yachtdurak.com/texas-holdem-online.html
free poker game http://www.yachtdurak.com/free-poker-game.html
yahoo poker http://www.yachtdurak.com/yahoo-poker.html
play free poker http://www.yachtdurak.com/play-free-poker.html
texas holdem software http://www.yachtdurak.com/texas-holdem-software.html
online poker game http://www.yachtdurak.com/online-poker-game.html
poker strip http://www.yachtdurak.com/poker-strip.html
online casino poker http://www.yachtdurak.com/online-casino-poker.html
strip poker http://www.yachtdurak.com/strip-poker.html
how to play texas hold em http://www.yachtdurak.com/how-to-play-texas-hold-em.html
world poker tour http://www.yachtdurak.com/world-poker-tour.html
3 card poker http://www.yachtdurak.com/3-card-poker.html
free texas hold em poker games http://www.yachtdurak.com/free-texas-hold-em-poker-games.html
texas hold em http://www.yachtdurak.com/texas-hold-em.html
free online poker http://www.yachtdurak.com/free-online-poker.html
hold em poker http://www.yachtdurak.com/hold-em-poker.html
video poker games http://www.yachtdurak.com/video-poker-games.html
poker rooms http://www.yachtdurak.com/poker-rooms.html
poker strategies http://www.yachtdurak.com/poker-strategies.html
free online poker game http://www.yachtdurak.com/free-online-poker-game.html
poker star http://www.yachtdurak.com/poker-star.html
rules for poker games http://www.yachtdurak.com/rules-for-poker-games.html
online poker tools http://www.yachtdurak.com/online-poker-tools.html
texas hold em online http://www.yachtdurak.com/texas-hold-em-online.html
online video poker http://www.yachtdurak.com/online-video-poker.html
- Tons of interesdting stuff!!!
# July 13, 2005 1:17 AM

bYm said:

maybe that link helps
# July 13, 2005 6:27 AM

K. Adams said:

Nice XSL stylesheet, but how can I get/display the "URL" value of the enclosure node. Because some RSS feeds are using the "link" value for the main URL and the enclosure node for the "MP3".
# July 13, 2005 7:47 AM

BigJim in STL said:

Jason

LOL on the COBOL thing. Just get ready to meet your new friends:

Data-division.
Identification-division.

Another lifetime ago that was all I worked on - green-screen, mainframe applications done in COBOL and IMS (a pre-relational database - even worse than COBOL!)
# July 13, 2005 9:33 AM

K. Adams said:

I've found the solution! :-D

<?xml version="1.0" ?>
- <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:template match="/rss/channel">
- <html>
- <head>
<title>WGBH Morning Stories</title>
</head>
- <body>
WGBH Morning Stories
<br />
<xsl:value-of select="description" />
<br />
<br />
<hr />
<br />
- <xsl:for-each select="item">
- <b>
<xsl:value-of select="title" />
</b>
<br />
<br />
<xsl:value-of select="description" />
<br />
<br />
- <!--
<a>
<xsl:attribute name="href">
<xsl:value-of select="link" />
</xsl:attribute>
<b>Stream</b>
</a>


-->
- <!-- Only show "Download MP3 if there are Enclosures
-->
- <xsl:if test="enclosure/@url">
<br />
- <a>
- <xsl:attribute name="href">
<xsl:value-of select="enclosure/@url" />
</xsl:attribute>
<b>Download MP3</b>
</a>
-
<xsl:value-of select="format-number(enclosure/@length div 1024 div 1024,"#.00")" />
MB
</xsl:if>
<br />
<br />
<hr />
<br />
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
# July 13, 2005 9:56 AM

poker terms said:

In your free time, take a look at some relevant information about poker forum http://www.yachtdurak.com/poker-forum.html
poker rooms http://www.yachtdurak.com/poker-rooms.html
poker tables http://www.yachtdurak.com/poker-tables.html
free strip poker http://www.yachtdurak.com/free-strip-poker.html
texas hold em http://www.yachtdurak.com/texas-hold-em.html
free poker http://www.yachtdurak.com/free-poker.html
free online poker http://www.yachtdurak.com/free-online-poker.html
free texas hold em http://www.yachtdurak.com/free-texas-hold-em.html
poker hand rankings http://www.yachtdurak.com/poker-hand-rankings.html
celebrity poker http://www.yachtdurak.com/celebrity-poker.html
online video poker http://www.yachtdurak.com/online-video-poker.html
online poker game http://www.yachtdurak.com/online-poker-game.html
on line poker http://www.yachtdurak.com/on-line-poker.html
online texas hold em http://www.yachtdurak.com/online-texas-hold-em.html
world poker http://www.yachtdurak.com/world-poker.html
texas holdem odds http://www.yachtdurak.com/texas-holdem-odds.html
free video strip poker http://www.yachtdurak.com/free-video-strip-poker.html
texas holdem tips http://www.yachtdurak.com/texas-holdem-tips.html
how to play texas hold em http://www.yachtdurak.com/how-to-play-texas-hold-em.html
texas hold em strategy http://www.yachtdurak.com/texas-hold-em-strategy.html
free online texas holdem http://www.yachtdurak.com/free-online-texas-holdem.html
cowboy poker http://www.yachtdurak.com/cowboy-poker.html
free texas hold em poker games http://www.yachtdurak.com/free-texas-hold-em-poker-games.html
free online poker game http://www.yachtdurak.com/free-online-poker-game.html
poker strategies http://www.yachtdurak.com/poker-strategies.html
online video poker game http://www.yachtdurak.com/online-video-poker-game.html
hold em http://www.yachtdurak.com/hold-em.html
online casino poker http://www.yachtdurak.com/online-casino-poker.html
poker game download http://www.yachtdurak.com/poker-game-download.html
party poker bonus code http://www.yachtdurak.com/party-poker-bonus-code.html
...
# July 13, 2005 10:08 AM

men said:

Welcome to real embedded programing Jason :-) Nothing like being close to the metal and have access to actually useful APIs... I work on BREW at Qualcomm and am actively working to offer other languages on BREW.
# July 13, 2005 10:54 AM

Jeff said:

Yeah, I understand your reasoning. If you enjoy the traffic and have fun with the podcasting angle, stick with it. Good luck.
# July 13, 2005 2:59 PM

Jason Salas said:

Hi Men,

That's great news! I can't wait for C# support in BREW! ;)
# July 13, 2005 4:13 PM

Jason Salas said:

Good job!
# July 13, 2005 4:26 PM

Jason Salas said:

Here's hoping that C# is on the list: http://notnil.net/blog/?p=23
# July 13, 2005 8:11 PM

Jason Salas said:

Wow...praise from Caesar! Scoble likes my work!

http://radio.weblogs.com/0001011/2005/07/14.html#a10629
# July 14, 2005 9:59 AM

Jeff said:

The audio quality leaves a lot to be desired, but good interview. I'm a little disappointed with my book's marketing (the writing process was fine), but I like that Apress "gets it" from top to bottom.
# July 14, 2005 12:10 PM

Gary Cornell said:

Was fun doing, thanks. By the way Jeff you should do your next book with us - it was perhaps unclear that we weren't the publisher in your post!
# July 14, 2005 2:49 PM

Jason Salas said:

Hi Jeff,

Yeah...I wasn't too happy with the audio quality (or lack thereof), but the content was pretty solid and Gary was a cool interview. I was talking to him during peak time Internet usage, so there was a fair degree of echo, and there wasn't any filtering equipment on Gary's end so the "P"s and "G"s and "S"s really got accentuated.

The one thing I took out in editing was that when bandwidth really started getting constrained (assumedly both on Guam @ 8:30AM and in Northern California @ 3:30PM), Skype dropped on us twice, and the audio got REALLY bad.

But, all is not lost...the one thing I learned was that you really have to leverage Skype when you can ensure Internet access will be really fast. Check out an interview I did with Joel Ross from TourneyLogic last night @ 11: http://weblogs.asp.net/jasonsalas/archive/2005/07/15/419385.aspx - early in the AM for him, late @ night for me, so the bandwidth was great. No drop outs, and great sound quality.
# July 14, 2005 4:59 PM

online gambling said:

You may find it interesting to check out some information dedicated to online gambling http://www.also-casino.com/online-gambling.html
... Thanks!!!
# July 15, 2005 6:07 AM

Jason Row said:

Real interesting interview. I think it would be great if you can do some more of these developer centric type podcast interviews but as you mentioned your PodCast isn't just for the devs in the crowd.
# July 15, 2005 3:39 PM

Jason Salas said:

Hey Jason,

Thanks for listening! Yeah...there are more tech interviews on the way....this is what I envisioned when I started thinking about putting together an ASP.NET podcast (http://weblogs.asp.net/jasonsalas/archive/2005/04/19/403222.aspx)

Have you checked out what Wally/Paul/Buddy are doing with their show? They use interviews with well-known personalities in the .NET community: ftp://216.187.235.114/ScalabilityWithDotNet.xml

# July 15, 2005 3:57 PM

hold em poker said:

You may find it interesting to visit the sites about texas hold em http://www.fine-poker.com/texas-hold-em.html
free online poker http://www.fine-poker.com/free-online-poker.html
video poker http://www.fine-poker.com/video-poker.html
free poker games http://www.fine-poker.com/free-poker-games.html
how to play poker http://www.fine-poker.com/how-to-play-poker.html
free poker chip set http://www.fine-poker.com/free-poker-chip-set.html
casino poker http://www.fine-poker.com/casino-poker.html
poker forum http://www.fine-poker.com/poker-forum.html
strategies for texas hold em http://www.fine-poker.com/strategies-for-texas-hold-em.html
free poker game http://www.fine-poker.com/free-poker-game.html
longest poker game http://www.fine-poker.com/longest-poker-game.html
online texas hold em http://www.fine-poker.com/online-texas-hold-em.html
holdem http://www.fine-poker.com/holdem.html
world poker http://www.fine-poker.com/world-poker.html
play free poker http://www.fine-poker.com/play-free-poker.html
rules for texas hold em card game http://www.fine-poker.com/rules-for-texas-hold-em-card-game.html
texas holdem tips http://www.fine-poker.com/texas-holdem-tips.html
how to play texas hold em http://www.fine-poker.com/how-to-play-texas-hold-em.html
free online texas holdem http://www.fine-poker.com/free-online-texas-holdem.html
texas holdem poker game http://www.fine-poker.com/texas-holdem-poker-game.html
free poker tournaments http://www.fine-poker.com/free-poker-tournaments.html
cowboy poker http://www.fine-poker.com/cowboy-poker.html
caribbean stud poker http://www.fine-poker.com/caribbean-stud-poker.html
free texas hold em poker games http://www.fine-poker.com/free-texas-hold-em-poker-games.html
poker star http://www.fine-poker.com/poker-star.html
3 card poker http://www.fine-poker.com/3-card-poker.html
texas holdem tables http://www.fine-poker.com/texas-holdem-tables.html
play texas holdem http://www.fine-poker.com/play-texas-holdem.html
card poker http://www.fine-poker.com/card-poker.html
texas hold em poker game http://www.fine-poker.com/texas-hold-em-poker-game.html
...
# July 15, 2005 10:35 PM

William Lefkovics said:

Are you using the default message format as Rich Text? Or (ugh) Word as your email editor? Does this happen when you use HTML or plain text?
# July 16, 2005 4:27 AM

Jason Salas said:

Hi William,

Sadly it happens with plaintext, RTF, and HTML formatted messages. :(
# July 16, 2005 6:27 AM

Frans Bouma said:

Mashups, podcast, podsafe, intertwined version, PSA's ...

Am I getting old or have I missed some Gadget TV episodes lately? ;) I'm getting a slang-overload!
# July 16, 2005 7:56 AM

Andrey Skvortsov said:

Why do you need flash?You have bunch of vectors on page?Go "http://sourceforge.net/projects/ajaxnet-library" if you are lasy OO programmer or use XSL(dicrectly XmlHttp) as main UI vehicle or combine them.Nothing can compare with it-even flash which can be easely replaced by AdobeSVG if you need some vectors but preserving flexibility XML/JavaScript.

Regards.
# July 16, 2005 7:57 AM

Jason Salas said:

PSAs - public service announcements

You *should* be able to find the rest in Wikipedia. ;-)
# July 16, 2005 8:01 AM

Jason Salas said:

Hi Andrey,

Basically, Flash is an option to providing multiple scenes through which to navigate the varied content areas. I'd like to stay on the same page as much as possible, but change the content within the main cell.
# July 16, 2005 8:04 AM

nobody :) said:

Are the contacts set to always get RTF?

Are you using exchange server? If so, the idiot admin has it configured to always send RTF.
# July 16, 2005 8:18 AM

Ian Smith said:

I agree. Java books are generally much better at explaining OO and patterns.

And not all of this can be explained by Java having a few years lead in this area.

Things are changing slightly - some good new Patterns books targeted at C# developers have become available over the last few months and some of the "idiot" guides to OO have started incorporating C# examples as well as Java, but given the market share and the length of time this stuff's been available the low number of books in the .Net world is disappointing.
# July 16, 2005 12:00 PM

Ian Smith said:

There is an interesting follow-up to my original reply on the subject, based mainly on the DJ "remix" services who have been around doing this stuff on CD and vinyl for decades. These services effectively offer digital re-edits and mash-ups rather than genuine "remixes".

Last week the biggest of these DJ remix services, Hot Tracks, which has been around for many years and went "legitimate" a few years ago (in that they stopped issuing tracks they hadn't got permission for from the original record labels) announced last week that the pressing plant which has produced its CDs for many years is refusing to process any more CDS without much stronger legal agreements from the original labels.

You can read about the Hot Tracks situation here:

http://hottracks.com/content/index.cfm?page=announcement
# July 16, 2005 12:07 PM

Eric Newton said:

I think its a subconscieous thing, people that tended towards Java then and now were usually higher brow developers.

However, ms from the beginning (IMO) has been targeting more of the hobbyist/"Business Professional" type that has some computing skills and basic understanding of "how things work" under the hood...

Frankly If I see another book on ASP.Net that goes into shallow detail of Datagrid binding without even attempting a "real world" example (of pulling and updating multiple data sources/streams) then I'm going freakin puke. All over the .NET books in a local barnes and nobles. Maybe you'll see it on the news.

My point is that everytime I walk into a bookstore looking for a new .NET book that is in-depth, well thought out, and conveys information that is targetted towards those of us that want to learn more tips and tricks with common controls, instead of a "heres how to databind with the datagrid... isnt this fast?" ...and then fail to even explain how databinding works so when you're faced with diving it the guts of a Datagrid (for example) you have a reference to work with...

One of the biggest problems with Datagrids, and I had NEVER seen addressed in any .NET book, was managing the HORRID viewstate of a datagrid. Not a single book I could find would address the more advanced way of dealing with reducing that damn viewstate. Basically, you had to do a lot more BY HAND to properly handle a datagrid where the viewstate was turned off.

...That is just one example of a common problem faced by developers that begin working with (for example) ASP.NET and get past the "prototype" stage that most books love to show off. Once the "hard" work happens, none of the books I could find even addressed some of the finer points.

THATS WHAT WE'RE MISSING IN .NET BOOKS. (emphatically emphasized)
# July 16, 2005 1:25 PM

Eric Newton said:

ok here's another pet peeve of mine: complete sites written in Flash.

not to mention google's inability to index FLASH based sites.
# July 16, 2005 1:27 PM

baccarat said:

You may find it interesting to visit the pages about online casino http://www.yunzarestaurant.com/online-casino.html
online casino gambling http://www.yunzarestaurant.com/online-casino-gambling.html
jack black http://www.yunzarestaurant.com/jack-black.html
baccarat http://www.yunzarestaurant.com/baccarat.html
strip blackjack http://www.yunzarestaurant.com/strip-blackjack.html
casinos ranked http://www.yunzarestaurant.com/casinos-ranked.html
casino slots http://www.yunzarestaurant.com/casino-slots.html
free blackjack http://www.yunzarestaurant.com/free-blackjack.html
free online casino games http://www.yunzarestaurant.com/free-online-casino-games.html
online craps http://www.yunzarestaurant.com/online-craps.html
blackjack online http://www.yunzarestaurant.com/blackjack-online.html
online gambling casino http://www.yunzarestaurant.com/online-gambling-casino.html
virtual casino http://www.yunzarestaurant.com/virtual-casino.html
free online casino http://www.yunzarestaurant.com/free-online-casino.html
internet casinos http://www.yunzarestaurant.com/internet-casinos.html
free slot machines games http://www.yunzarestaurant.com/free-slot-machines-games.html
free online casinos http://www.yunzarestaurant.com/free-online-casinos.html
casino game http://www.yunzarestaurant.com/casino-game.html
casinos online http://www.yunzarestaurant.com/casinos-online.html
online black jack http://www.yunzarestaurant.com/online-black-jack.html
blackjack rules http://www.yunzarestaurant.com/blackjack-rules.html
casino game online http://www.yunzarestaurant.com/casino-game-online.html
blackjack strategy http://www.yunzarestaurant.com/blackjack-strategy.html
web casino http://www.yunzarestaurant.com/web-casino.html
online keno http://www.yunzarestaurant.com/online-keno.html
casino blackjack http://www.yunzarestaurant.com/casino-blackjack.html
how to win at blackjack http://www.yunzarestaurant.com/how-to-win-at-blackjack.html
free casino games online http://www.yunzarestaurant.com/free-casino-games-online.html
roulette games http://www.yunzarestaurant.com/roulette-games.html
free online slot machines http://www.yunzarestaurant.com/free-online-slot-machines.html
... Thanks!!!
# July 16, 2005 4:22 PM

Jason Salas said:

Hi Nobody,

Nope...it's a pretty bre-bones install and no Exchange server. For some reason attachments sometimes when dragged-and-dropped into a message (as opposed to clicking on the attachment paperclip icon and specificing the file(s)) don't really attach the file. I've lost out on a couple nights' work already because of this.
# July 16, 2005 5:38 PM

Jason Salas said:

Hi Ian,

On the contrary, I think there are a lot more books in print now since the release of .NET than their Java equivalents within the same period. I've worked with companies like Wrox, APress, nd New Riders and they all are dominated by their .NET lines, although many still carry and produce Java titles. So I don't think it's a matter of volume/quantity.

You're completely right about patterns being better represented from the Java crowd. There are a few .NET patterns books (I own several), but the practices outside of singleton development are few and far between, I've noticed. One of the most common questions I see pop up all the time either from experienced computer science types or migrating Java devs when moving to .NET is "How can I implement a Model-View-Controller pattern using .NET architecture?"

Admittedly, I don't think a fluid translation of MVC (as defined in J2EE terms) is applicable in the .NET world, as the Framework delivers some other clever ways of displaying alternate UIs given certain conditions. But just to be fair, I have found myself asking several questions about Java based on .NET principles that I can't answer right off the bat.
# July 16, 2005 5:48 PM

Jason Salas said:

Just to qualify the last sentence above (I hit submit before finishing my thought), most of the questions I normally have about J2EE in relation to .NET architectural concepts typically deal with implementing servlets and JSPs, contrasted against developing/deploying .NET libraries and components.

The two platforms - ASP.NET and JavaServer Pages - are somewhat identical from a VERY high level (XML-based application configuration, easy n-tier development capabilities, etc.). It's when you start drilling down into the semantics that it gets blurry. :)
# July 16, 2005 5:53 PM

Jason Salas said:

Hi Eric,

Great comments. I agree, this might be due to the targeted audience for each enterprise platform - J2EE is typically strictly for the serious developer, while .NET *can* be picked up by the part-time programmer a little easier. Perhaps it's due also to the fact that Microsoft's marketing push is so much more domineering, and therefore "dumbed down" to be relevant to the average guy.

This has trickled down into the writing style and editorial voicing of most .NET books, and leaves the hardcore computer scientist feeling a little left out.

BUT I would gladly, if I got amnesia and had to start all over from scratch, take up .NET first. It's easier to get productive with quickly without a formal background.
# July 16, 2005 5:57 PM

Jason Salas said:

>> One of the biggest problems with Datagrids, and I had NEVER seen addressed in any .NET book, was managing the HORRID viewstate of a datagrid.

The solution generally is that you should only use a DataGrid when absolutely necessary, meaning when you've got no other choice but to deal with the inflated output page size and somewhat reduced page loading time due to the larger ViewState. Any othr situations warrant 9a) using a DataGrid object with the view state turned off and not persisting data across page postbacks, (b) using one of the other .NET list controls like a Repeater or DataList, or (c) rolling an implementation of your own.

I typically lean towards the latter, using a Repeater for fastest performance and inheriting the PagedDataSource class.

http://aspnet.4guysfromrolla.com/articles/081804-1.aspx
http://davidhayden.com/blog/dave/archive/2004/08/25/446.aspx
# July 16, 2005 6:10 PM

Jason Salas said:

Hi Eric,

Yeah, I *think* Flash 5 *may* have the ability to embed keywords or metadata within a movie (I remember that option a few months back when I did a Flash project), which can be indexed by Google.

My take on the whole situation is that Flash, like any other technology or thing in life, is best used when done so sparingly and tastefully. Don't create an entire damn web site in Flash just because you can...and don't use a single Java servlet to control your entire site, and don't base your entire web app on a single DataGrid.

The right tool for the right job, ya know?
# July 16, 2005 6:14 PM

Jason Salas said:

# July 16, 2005 6:15 PM

Some Guy said:

You're able to reproduce this every time? Is the attachment in the message in your sent items?
# July 16, 2005 8:27 PM

Jason Salas said:

Yep...and Outlook reads it fine...it's just any other POP3 client or web mail program that spits out jibberish or has no attachment.
# July 16, 2005 9:09 PM

bonder said:

.net runtime ships in XP SP1 and above, but still you will want to do this in vb6 or vc++

--Bruce
# July 16, 2005 11:39 PM

Don Schockow said:


I guess there are two ways to look at this. As a podcaster, I wish I was able to play whatever I wanted to play. I don't want to be limited to what I play, be it a mashup, PSA or commercial. I can give you all kinds of reasons why I think I should be able to do this.

But then there is the other side of the coin. Writing a song is a business. It's the way many people make a living. Imagine writing a song and having everyone using it for free. Would this upset you? Ofcourse it would.

So where will we find a happy medium? Good question. We can't play "regular" music right now and I am sure we never will without paying a fee. This will include mashups too as they consist of other people's property.

Playing movie clips, promos and commercials is a blurred line and probably always will be. If playing these clips causes one to lose money we have a problem. But if doing so helps a person to sell a product or gain attention to a product then I think we'll be in the clear.

I do believe that playing Midi versions of a copyrighted song is also not allowed as doing so means you owe the songwriter a license fee. This would also include video game music.

As I have said before, time will tell. But as long as I am using clips to promote and am not taking money away from an artist or writer I am hoping I'll be in the clear......for now.

Don Schockow
Cartoon Radio Network
Magical Theme Park Podcast
DVD Weekly Podcast
# July 17, 2005 3:29 AM

Jason Salas said:

Interesting thoughts, Don. I'm in agreement with you for the most part - the only exception being MIDIs. In my opinion, they're a re-hash of a work in a completely different medium, and don't really do a song justice, because the format is really electronic, and not a processed, produced song. They also by their nature can't include a vocal track, so there's most of the concern right there. I think it might be like stopping a concert from a cover band in a bar because they were covering a song by a more well-known act. So I think we should get some leeway in that regard.

Next, let's try and determing what's meant by "playing" a song in a podcast: is this the deliberate, uninterrupted redistribution of the work, with it being the main content of a show? Or how about if someone talked over the intro/outro of the song, ruining its state as you'd get on a CD or off iTunes?

I'm also of the mind that since MP3s, even at a high encoding level like 128Kbps, that's still pretty far removed from the quality level of a CD. So, there's some break-up.

Just some thoughts. Thanks for posting a comment! :)
# July 17, 2005 4:06 AM

Oliver said:

Hello together, I think Flash is also a good thing to use on web sites. The main problem I see is that Flash often is bad for users do not have the correct version. Also, I think web sites should not have to much animation things. Web sites are pages for information, and that is what we need. The user interaction is improved using AJAX (for .NET I found http://ajax.schwarz-interactive.de as a very cool wrapper) because we can get or send data without full refresh.
# July 17, 2005 7:20 AM

Ian Cooper said:

I have to agree that in the computer science space Java seems stronger. Head First's Design Patterns book exceeds anything I have seen in the .NET space, and many of the other classic texts are at best mixed Java and C#. Though Addison-Wesley seems to target titles at more than just the 're-hash' the manual crowd.

Some of the explanantion seems to come from a move in academia to use Java as a teaching language a while back; that would tend to make it a lingu franca for new developers and an ideal language to target if you wanted to talk about theory.

# July 17, 2005 8:24 AM

nobody :) said:

Sometimes when you drag and drop (or later, remove attachments), Outlook doesn't accept the change until after you save it to drafts. This happens if the message was open long enough to save to drafts and you attach (or remove) an attachment after it saved automatically and you send it before it saves again and it uses the drafts version.

BTW, you don't specifically mention the version or which editor you use, both of which can have an effect on if the message is sent as RTF. You should find and delete the nickname file, as "always use RTF" information can be remembered in it.

To troubleshoot the RTF problem (that's why attachments are binary), you should set the contacts to only use plain text. For addresses not in contacts, double click on the underlined addresss and select always use plain text.

# July 17, 2005 9:59 AM

Jeff said:

You bet Java has it better. Ever read "Head First Design Patterns," the book with the cute blonde girl on the cover? That book changed my life. I tell C# monkeys to read that all of the time. Trying to read the Gang of Four book is a lesson in curing insomnia, but the Head First book helped me get it.
# July 17, 2005 11:02 AM

mike said:

Jason, am I misunderstanding, or are you yourself producing content on your site that is not directly indexable/navigable -- ? I interpreted your earlier entry to mean that you were producing content dynamically, but it's not clear if you will provide a single permalink that will allow users to link directly to specific content ...
# July 17, 2005 6:05 PM

Jason Salas said:

Hi Mike,

My site's fine...it's the remote site that I'm supposed to be linking to that's developed entirely in Flash, but has a lot of content areas within it. I need to link to a specific area, but the navigation is determined by the Flash movie, not a unique URL. So I've only got one address to point my site to...which winds up being the remote site's splash page.
# July 17, 2005 7:50 PM

Jason Salas said:

Well, one thing I will give to .NET titles for the most part...the approach, while debatably less technical (hence the nature of this post), is a bit more pragmatic and professional, in terms of writing style.
# July 17, 2005 7:52 PM

Jason Salas said:

Hi nobody,

I doubt that's it...I normally send stuff plaintext and manually type in the addresses.
# July 17, 2005 7:53 PM

Dean Harding said:

I think Flash is good for presentations, or as a nice animated/interactive "brouchure" for a new product or whatever, but to design an entire site in flash is just silly.

Not only do you miss out on the things you point out (ability to be indexed by Google; ability to be linked to from external sites) but Flash is also not very condusive to accessibility aids like screen readers, or for allowing for good keyboard navigation.

Admittedly, most people ignore those features in normal websites anyway, but at least they stand a better chance to begin with.
# July 18, 2005 2:02 AM

Wallym said:

I just heard the term "mashup" on the radio for the first time over the weekend. And I was in Washington DC when I heard it.
# July 18, 2005 3:12 PM

Scott Allen said:

Hi, Jason. FYI: I can't connect to the server to download the mp3 right now. Will try again later.
# July 21, 2005 12:31 AM

Jason Salas said:

Hi Scott,

Probably just a temporary glitch...I worked for me just now.
# July 21, 2005 1:06 AM

TrackBack said:

RossCode.com - Podcast Studio
# July 22, 2005 8:48 AM

Wallym said:

Hopefully, Jason doesn't make fun of the fact I interrupted his podcast interview........
# July 22, 2005 10:00 AM

Jason Salas said:

Hey Wally,

Nope...I left that part in...just for the "reality TV" aspect of it all. I wasn't aware that incoming calls in Skype could interrupt or force an existing call offline, but while in the middle of recording, I got bumped, and your chat session popped up. Either a force quit (there's a Mac term again), or a queued chat feature?

At any rate, just teasin'...it made for good radio.
# July 22, 2005 10:16 AM

Jason Salas said:

...if you want to relive the hilarity of Wally's "cameo" in my interviewCast skip ahead to about 12:55 in the MP3...it's a hoot. ;-)
# July 22, 2005 10:18 AM

Wallym said:

All I tried to do was IM you and ask a question. I don't think u can get bumped by that. But, if it helps your show, I'll be glad to take credit for it.
# July 22, 2005 1:38 PM

Kevin said:

Podburn?

NYY Podcast is up and running, with a second podcast available and a third on the way.
# July 22, 2005 9:06 PM

Ron Correa said:

Hey there bud...I recently recorded episode #2 (last week) and I will be recording #3 this weekend. Thanks for looking out and enjoying the podcast. I hope that you enjoy #3 as much as you enjoyed #1. I'll post back when #3 is ready for download.
# July 22, 2005 9:50 PM

Jason Salas said:

Hey Ron,

That's great news! Glad to see you're back. I'll update my podcatcher and mention your updated in my next show! :)
# July 23, 2005 12:56 AM

Anon(R) said:

I'm sorry if this is a poor follow up response to your post, but I've wanted to dabble in JSP as well but do not wish to tread from my IIS comfort zone ... are you using JSP on IIS? Or are using Apache or Oracles web server? Is JSP on IIS possible. I've gotten PHP 5 working on IIS. If JSP on IIS is possible, where can I go to download the libraries/extensions to make it work?

Thanks!
# July 23, 2005 11:17 PM

Jason Salas said:

Hi Anon,

I'm using the Java app server from the reference implementation, not out of IIS. :)
# July 24, 2005 1:34 AM

Thomas Tomiczek said:

It is o fless concern. .NET still is of no relevace to programming mobile phones at large. Not enough phones around with .NET.

The trick is old - it has nothing to do with any sort of compiler effectiveness. It is just that "a" is a shorter name than "_CustomerName". By renaming variables to shorter equivalents (which is what obfuscators do) you save space - savings that a compression can only handle in storage, but not at runtime. Latest in memory variable names (necessary for reflection) are taking space. And if you try to get your game running under 100kb, this CAN be an issue.

The compact framework is just not relevant here at all - at least for the moment - so the "right" people just never use it and start thinking about it.

::Although the RAM/ROM occupancy concerns
::would obviously be much less for an app
::running on the desktop, the same concept
::surely can be applicable in non-mobile
::environments.

Hardly, and if, then only with academic relevance. When you start measudring program size in megabytes, saving some bytes is less relevant.
# July 24, 2005 6:38 AM

Jason Salas said:

Hi Thomas,

Thanks for your comments! Very helpful. Is it therefore safe to say that not only because there aren't enough phones that can use .NET-developed embedded apps, but also because they're typically smart phones or PDAs, they're better equipped to process such apps and don't have the spec concerns that other micro devices might have?
# July 24, 2005 6:56 AM

JosephCooney said:

Hi Jason - I thought about this a while ago and did some measuring. It looks like they could have saved about 100K over the whole CF 1.0. Here is a link:

http://jcooney.net/archive/2004/10/21/171.aspx
# July 24, 2005 9:41 AM

Daniel Moth said:

Search for obfuscators with netcf and you'll find most of them have issues with v1.0

The one(s) that work, tend to generate larger assemblies!
# July 24, 2005 11:08 AM

Thomas Tomiczek said:

::Is it therefore safe to say that not only
::because there aren't enough phones that can
::use .NET-developed embedded apps, but also
::because they're typically smart phones or
::PDAs, they're better equipped to process
::such apps and don't have the spec concerns
::that other micro devices might have?

I do not think so. The issue is that people simply do not develop for .NET phones. The market is too small. Look at all the handy games - they are in Java.

It IS safe to say that if people WOULD develop for .NET, it would be an issue, but one that is less grave, as .NET hardware would typically be more powerfull. The issue that it is not an issue wright now is totally dependant on the development not being there. If I dmake something for phones, Javaa is the standard platform. It is established.
# July 24, 2005 12:50 PM

Matt Wardlaw said:

what do you want me to record for you? I need to make up a wacky game!
# July 25, 2005 12:16 PM

Erik Porter said:

I haven't logged into Messenger on my SmartPhone lately, but this very good to know. Thanks for the post...appreciate it! :)
# July 26, 2005 1:54 AM

Jason Salas said:

Hi Erik,

No problem...I've been messing with my settings pretty aggresively and came across the URL pretty randomly. Funny how things work out - hope this serves you well if you run into problems. :)
# July 26, 2005 2:04 AM

Wallym said:

Yeah, Kirk is just a little bit upset with me right now................
# July 27, 2005 6:45 AM

Dave said:

I dunno, eating at Subway has never been about taste. I mean, do you ever watch them unpeel those slimy slices of prepackaged meat?

What exactly is that slime?

They say I can have it my way... I say scrape that nasty slime off please.

At least at Port of Subs, They actually slice the meat fresh, and.... I think they have cucumbers.
# July 27, 2005 8:42 AM

Jason Row said:

Interesting concept. Personally from a design point I think you should have labels for each of the textbox controls.

I'm using FireFox and if you Tab through the controls without filling each one out in turn then your descriptions end up being lost. Just adds some confusion is all.

If you still want to go with this idea can you create these as custom controls?
# July 27, 2005 3:43 PM

Jason Salas said:

Hi Jason,

Yeah, I guess it would be better design to apply ToolTips to the TextBox controls, too, huh? :)

Here's an interesting case study: goto http://www.kuam.com/decision2004/ in MSIE and mouseover the left navigation bar. I used aspNetMenu to create this. Now view the same thing in FireFox. Ouch.
# July 27, 2005 7:08 PM

Jason Row said:

Well maybe tooltips would reduce my hesitation in using such a design. But hey, you're not building web pages for me so do what you like! :)

Oh the joys of cross-browser development. How I miss the old IE and Netscape days :) Nice to see that while the players change some things stay the same.
# July 27, 2005 7:38 PM

Jason Salas said:

OR...we could just use/extend the Login control that ships with ASP.NET v.2.0 and this would all be a moot point. I haven't tried that control's cross-browser compatability...have you?
# July 27, 2005 7:40 PM

Jason Row said:

Not yet. I've only seen some demos of ASP.NET 2.0 in action and those have all been with IE as the browser.

I just got ASP.NET 2.0: A Developer's Notebook from O'Reilly for my local user group so that should motivate me to build some web apps. Since I use FireFox at home and at the office I'll keep an eye out for cross-browser issues. Geeze I hope the login control is cross-browser. It might not be used otherwise.
# July 27, 2005 8:10 PM

Jeff Gonzalez said:

You could just write it all up in an HttpHandler and secure it using Forms Authentication.

You could hardcode the username in your login method and just verify that the password is valid. You can override a particular page like bonus.aspx using the path attribute of the http handler. You can set the http handler to also set the content type.

And since search engines crawlers ignore form POSTS anyway you won't have to worry about that.
# July 27, 2005 9:11 PM

Jason Salas said:

There's a thought...
# July 27, 2005 9:15 PM

bonder said:

Using asp.net forms authentication is the way to go. Easy, part of the framework, and quick.
# July 27, 2005 10:27 PM

Jason Salas said:

Hi Bonder,

Nah...too much work. I've got quite a lot of stuff alerady resident in web.config, so it would be more work to set it up. :(

And this is a temporary thing for only 60 days - the duration of the promotion, so once it's up, I just pull everything.
# July 27, 2005 10:28 PM

Jason Salas said:

Hi Jeff,

Great ideas, but are you sure crawlers and spiders wouldn't index the content?

For example, search this in Google:
"site:kuam.com filetype:xml"

You'll find all my stuff. :(
# July 27, 2005 10:29 PM

bonder said:

Port of Subs? What is that?

Jason, that's also my favorite sub, but I've never put cukes on it. Hmm...

Also, the local Subways here have cuke, so I think maybe it's just an availability or seasonal thing?
# July 27, 2005 10:30 PM

alex said:

is .asp a reuired aspect of this project? ;-)
# July 27, 2005 10:33 PM

alex said:

ok, yeah. i meant required. reason i ask is, we're just using 'realm security' to secure an rss feed. <http://www.w3.org/Protocols/HTTP/1.0/draft-ietf-http-spec.html>
# July 27, 2005 10:37 PM

Jason Salas said:

Hi Alex,

That would be my first choice, with ASP.NET being the platform I know best. I can knock it out the quickest. That is a pretty neat idea, though. :
# July 27, 2005 10:39 PM

Jeff Gonzalez said:

Jason,

Is that content secured behind an authentication method that requires a post to login? That is the benefit I see of having forms authentication.

As for the "difficulty" you mention in relationship to using Forms Authentication, it is about 30 minutes worth of work and can't you just remove the stuff from the web.config when you are done? You don't even need a true login method, because you really have some specialized logic. I think adding a couple of lines to the web.config is simpler than the solution you proposed, but that is just my opinion =)
# July 28, 2005 12:01 AM

mike said:

Personally, I hate so-called smart quotes. As you note, for many uses they're interpreted incorrectly, and the fact is that it isn't THAT hard to confuse Word about whether it needs an opening or a closing quotation marks. Some people think it adds typographic elegance to text. Maybe. My thought on that is if people want an elegant piece of text, they should start by spelling and punctuating correctly and then (gasp) having something elegant to say. After that, then MAYBE smart quotes are appropriate. :-)
# July 28, 2005 1:12 AM

Chris Frazier said:

Jas,

You could use the oft-forgotten robots.txt file to push spiders in the right direction.

I would probably use an .ashx (httpHandler) if it was me in your shoes, or have the xml extension mapped to the handler that does the authentication. If you want to completely block indexing of the content of your .xml files (if you have control/can influence the configuration of the server) you can map the *.xml file extension to asp.net and in your web.config assign it to a ForbiddenHandler. This way, even if the filename is discovered, whatever is making the request will be met with the forbidden message.
# July 28, 2005 2:33 AM

Jason Salas said:

Well, debatably, it does "prettify" text to a certain extent, with the roundedness effect it delivers. (But the same thing was supposed to have rang true of Times New Roman, and who uses that font on the web anymore?)

But aesthetics aside, it doesn't make for particularly smooth transitions to most character sets and encodings.
# July 28, 2005 3:13 AM

Jason Salas said:

Hey Chris,

Good idea about the ForbiddenHandler. I didn't even think of that. Thanks!

As for the ROBOTS.TXT file...ugh: http://weblogs.asp.net/jasonsalas/archive/2003/12/23/45296.aspx

;-)
# July 28, 2005 3:15 AM

Aaron said:

Greg Reinacker from NewsGator posted a great little ASP.NET HttpHandler that does Basic Auth and you essentially code out the "auth" method (which can check a database, text file, web.config - whatever) - and it's simple to deploy and use.

See his post: http://www.rassoc.com/gregr/weblog/stories/2002/06/26/webServicesSecurityHttpBasicAuthenticationWithoutActiveDirectory.html
# July 28, 2005 1:10 PM

Jason Salas said:

Good news! They've started carrying them again. :)
# July 28, 2005 7:33 PM

Jason Salas said:

Actually now that I think about it, this is just Radio VH-1's online music services (http://www.vh1.com/music/radio/), minus the limited song library. I got into that platform for a few days months ago, but the preset playlists aren't that deep.
# July 28, 2005 10:10 PM

Jason Salas said:

# July 28, 2005 10:11 PM

Robert Scoble said:

I bought a Sirius radio just to listen to Adam and I've gotta say, I'm disappointed. Adam is very rarely on the show. It's mostly clips from other podcasts. I find the format to be incredibly boring. And I'm an Adam fan. I doubt the ratings are very high.
# July 29, 2005 4:33 AM

Jimmy said:

The people on the unofficial Sirius forum (http://www.siriusbackstage.com/forum/) hate the show.
# July 29, 2005 10:46 AM

Jason Salas said:

Hi Jimmy,

Reason being...?
# July 29, 2005 4:05 PM

dylan said:

I guess this is the new hipster on the block when it comes to PHP web forums:
http://getvanilla.com/

I wish ASP.NET had the sort of free packages that PHP has of this maturity. Why the heck is there nothing like Mambo CMS for .NET out there? What is the alternative? Sharepoint? I don't think so.
# July 29, 2005 7:08 PM

Simon said:

Yes phpbb is free, but when it comes to BB’s VBulletin is the daddy. Easy to install, maintain and most importantly hack. I’m a .net guy through and through, but all the asp.net solutions I’ve seen to date are just too hard to live with. Here and now, if I was building a community site I would still rather pay the hundred quid for a Vb licence than take community server for free.
# July 29, 2005 7:42 PM

Jeff said:

I totally agree. Community Server in the ASP.NET space is just too complex for John Q. Codemonkey, and I think that's why it isn't as popular as it could be.

I'm rewriting POP Forums right now for use in v2 of ASP.NET, and I'm trying to build in the great features while keeping it simple enough for people to hack. I really think that's where the potential is. Of course, setting up a Membership and Profile provider is more than half of the battle for true site integration.
# July 30, 2005 11:48 AM

Jason Salas said:

Hi Scoble,

Interesting...were you expecting it to be the Daily Source Code over satRadio? Or is the fact that it's indie music and a big clip show that turns you off?

I remember when Podshow first launched, Adam said on DSC that it's intentionally more music and less him.
# July 30, 2005 6:31 PM

greg said:

Jason,
Can you get a DVR (digital video recorder) from your cable company? I got one from Time Warner for $9/month, which is about the same as Tivo's monthly subscription. It works great. Of course that 's only if Guam is wired for digital cable. If not you still have the beautiful beaches to look at.
-g
P.S. You are doing too many shows -- I cant keep up!
# July 30, 2005 7:54 PM

Jason Salas said:

*UPDATE*

An interview with Coverville's Brian Ibbott: http://weblogs.asp.net/jasonsalas/archive/2005/07/31/421117.aspx
# July 30, 2005 9:25 PM

Jason Salas said:

Hi Greg,

Thanks for the tip, and I'm laughing thinking at all the shows I spit out every week. It's only cost me my social life & sanity. :(

Guam at the moment doesn't get digital cable, although we might be HDTV-ready in another few months or so. I'm not too much into the scheduling/programming aspect of TiVo, but I would love to be able to record my favorite shows.
# July 30, 2005 9:30 PM

TrackBack said:

RossCode.com - Here Me Talk About the MSU Fight Song
# July 31, 2005 8:20 AM

Ian Cooper said:

http://spaces.msn.com/members/iancooper/blog/cns!1p4-u4hlYUELYaegfASM5UqQ!186.trak
# August 1, 2005 5:31 AM

Oliver Seifert said:

Check the Ajax.NET library for .NET, it is using JSON instead of XML that will work on more browsers than the XML versions. JSON is very coooool!
# August 1, 2005 7:30 AM

Wallym said:

Hmmm, interesting. I had not thought of that issue, but I think I see why it is happeneing. Just thinking off the top of my head, the second that the XML conversation is closed between xmlhttp and the server and the object goes out of scope, the client appears to go away, just like closing the web browser. What happens if you keep the xmlhttp object alive within the page and use the same instance to request the xml data?
# August 1, 2005 8:42 AM

Wallym said:

of course, you would not want to type to quickly in this scenario as I am not sure how well the xmlhttp object would handle multiple requests, and especially those that appear out of order. However, it is something to "try"
# August 1, 2005 8:44 AM

Wallym said:

Just a reminder, we only got formal approval last week. We haven't written anything beyond a tentative outline.

And a bigtime thanks for the words of praise. I know I speak for Scott and Paul in saying that we REALLY appreciate it!
# August 1, 2005 8:52 AM

Steve Hurcombe said:

Hi,
This could cause a server resource problem as you will be using up a lot of sessions.

I'm not familiar with Ajax at all just yet - but the problem is normally caused because the HTTP request does not use the same session cookie for each request. You see it often with SOAP calls too.

Ideally you should use the same session cookie as the main browser page for the XMLHTTP request.

...but that's as far as I can go I'm afraid.

Best regards
Steve
# August 1, 2005 9:05 AM

Wallym said:

Excellent idea. It sounds like it would be a good idea to turn off session state for the call into the Ajax "holding page"

Wally
# August 1, 2005 9:10 AM

jason salas said:

i figured that keeping session data resident would unecessarily eat up system resources. i guess this would be hard if you're relying on a single SessionID for whatever reason. interesting thoughts and nice reccomendation.
# August 1, 2005 9:45 AM

jason salas said:

hey wally, i actually thought about the thing about typing too fast. probably only under extreme circumstances like a really slow or overtaxed server, or a huge request load, or phenomenally slow network access (or loss of connection) might cause this.
# August 1, 2005 9:51 AM

jason salas said:

that's a good idea. wally...trying to get the object to somehow stay resident to ride on the same session, if desired. it'd be nice to have the option to work with either. but check out ian's original article...he admits that because of lingering concerns with browser incompatibilities, a developer should still rely on doing things server-side to be sure.
# August 1, 2005 9:57 AM

Wallym said:

Yeah. Of course, turning off session state would resolve the problem almost completely.
# August 1, 2005 10:08 AM

Eric Newton said:

This is what the ASP.Net team has against AJAX: inconsistent state. You're supposed to use "callbacks" which is wired into the framework to provide consistent state. (session, page viewstate, etc)

In a sense, the AJAX library should be able to hook into the right parts and at least provide consistent session, but probably not consistent viewstate.

IMO, frankly I use AJAX for out-of-band communication, just like this textbox doing searching, so it doesnt bother me.
# August 1, 2005 12:09 PM

Dan Herfner said:

And how is AJAX.NET doing this job? As I can remember it is possible to use the session state, so it will be the same session id, or??
# August 1, 2005 4:39 PM

Jason Salas said:

Hi Eric,

Fantastic comment. Thanks! Maybe because AJAX is platform-agnostic (in the spirit of objectivity I tried looking up AJAX in JSP and PHP and found a couple articles on each), it'll ultimately be seen as the other alternative to ASP.NET v2.0 callbacks.
# August 1, 2005 6:35 PM

Jason Salas said:

Now that I think about it, I'd like to hear the ASP.NET team's take on the sudden interest in AJAX. With V2 being in beta at the time of this writing, is it taking some of the fire away from the planned implementation of callbacks, to the point where people will become used to using AJAX by the time V2's in RTM?
# August 1, 2005 6:36 PM

Erik Porter said:

No clue, but I've noticed I don't get any trackbacks at all anymore...wtf?!?! :|
# August 1, 2005 7:25 PM

Robert Scoble said:

I'll try to get you an answer. They are gonna talk a lot about AJAX at the PDC, though, and have a toolkit, code-named Atlas, that will be demonstrated there. So, at worst, an answer to you will come in six weeks or so.
# August 1, 2005 7:37 PM

Kent Sharkey said:

# August 1, 2005 7:45 PM

Kent Sharkey said:

# August 1, 2005 7:46 PM

Jason Salas said:

Hey Scoble,

Thanks! I'm not calling anybody out or anything...just wondering in the interest of objectivity what the take is on AJAX...hopefully sans marketingspeak. :)

I look forward to the responses.
# August 1, 2005 7:55 PM

Eric Newton said:

I believe the ASP.Net team debuted "Atlas" for this, I havent done any research on it.

er, yeah, what kent said...
# August 1, 2005 7:56 PM

Jason Salas said:

Thanks Kent! Good to hear (I've been out of the loop for a bit so kindly forgive any ignorance on my part about Atlas).
# August 1, 2005 7:59 PM

Jason Salas said:

Actually, now that I think about it, let's delve more into my original question: Does the ASP.NET team embrace a developer using MS tools to incorpoarte native AJAX features into a web app? The callbacks in V2 are great, but how does the team feel about do-it-yourself'ers who want to write stuff on their own? And how does the team feel about AJAX continuing to grow and develop on its own, regardless of support from the Framework?
# August 1, 2005 8:02 PM

Jason Salas said:

...shows you what I get for having my heads up my ass with podcasting for the last 7 months. :)

Reference: http://weblogs.asp.net/scottgu/archive/2005/06/28/416185.aspx
# August 1, 2005 8:06 PM

Steve Maine said:

Hey Jason -- you might check out the SMTP transport I built for WSE 2.0. It's a little bit different than the SOAPMail project. I wrote it mainly as an example of how to build custom transports for WSE, but it might be directly useful to you.


Available at http://hyperthink.net/blog/PermaLink,guid,d337a6f5-a0c8-45b8-920e-132391eedc31.aspx
# August 1, 2005 10:17 PM

Joe said:

Do you actually have anything stored in Session?
It is normal for the Session Id to keep changing if you don't have anything stored in Session.
# August 2, 2005 2:12 AM

Glenn from Vallejo said:

I can see the likes of Future Networks (publishers of Maximum PC or MacAddict) do it or maybe Ziff. Fawcette focuses more on the codes and such. IMO, but I see what you mean ;-)

# August 2, 2005 2:24 AM

Ian said:

I do a couple of podcasts and sent an email to one of the big UK PC mags asking about a Podcast feature. I got a reply saying my message was being passed on etc.
I have had nothing back, that was a couple of months ago
(I have a Windows Media Center Podcast and a Formula One show)
# August 2, 2005 3:53 AM

Michael Schwarz said:

@Joe: The session id will not change if you are browsing web pages. Session cookies (the place where session id is saved) will only be deleted if the instance has been closed (i.e. iexplore.exe).

@Jason: Have you changed the cookie handling? On my site the samples are not giving me a new session id. Can you send me your modified version that have this "bug"??
# August 2, 2005 5:30 AM

Marc Hoeppner said:

Same thing as Michael just posted: I can't reproduce the problem you are describing. The SessionID stays the same. Every else would be a total catastrophe :)
# August 2, 2005 5:45 AM

Joe said:

Michael, My understanding is the Session Id will change on each request until the first time you actually store something in Session. See the section "Lifetime of a Session" in http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/ASPNetSessionState.asp

Hence my question: maybe the difference between Jason's and your experience is that Jason is not actually storing anything in Session.
# August 2, 2005 7:12 AM

Ramon Smits said:

@Steve: Funny.. I wanted to refer to your site ;)

@Jason: As for other WSE transports. Check out the following article at codeproject.com. It refers to a couple of transports. soap.smtp but also soap.udp and soap.sql

http://codeproject.com/cs/webservices/SoapMSMQ.asp

The soap.msmq transport is quite usefull too but if you don't have a message queueing infrastructure then you can easily use smtp ofcourse.
# August 2, 2005 7:16 AM

Chris Slatt said:

I believe the AJAX.NET library allows you to enable access to Session State from your out-of-band calls in .NET 1.x. There must be some way around it.

Samples:
http://ajax.schwarz-interactive.de/csharpsample/default.aspx

Blog:
http://weblogs.asp.net/mschwarz/

# August 2, 2005 11:29 AM

Gopinath Varadharajan said:

The example uses,
1. full url (http://..) which will create a new session id !? If we use a
2. partial (misctest/getusernames.aspx?q=')
sessuib Id will be re-used ?

1. So the question is, is there a way to reuse the sessionId using full url ? That's submit a request, with session_id, and the server side should attach to the Session specified ?

Gopi
# August 2, 2005 11:37 AM

Peter Bromberg said:

Jason,
my take on all this at the link, which also partially explains why the Session issue.

Look at Jason Diamond's library, it's more in keeping with the MS view and does everything "that other" AJAX .net library does, but in only about 400 lines of code.
# August 2, 2005 3:13 PM

Jason Salas said:

Hi everyone,

I put the example I'm running available for download at: http://www.guam-asp.net/jas/ajaxSessionSample.zip

The names you can use to test AJAX calls are "Jason Salas", "Rob Zombie", "Iron Maiden", "EarthWindFire", "Air Supply" (I've got eclectic musical taste, what can I say?)

Thanks!
# August 2, 2005 5:30 PM

Jason Salas said:

Hi Joe,

You've got a good point about session being resident not actually kicking in unless stuff's stored in the Session object. I'm not storing anything in Session, but it would appear that the un-persisted nature of the sample wouldn't permit me to. I'll give it a shot and post a comment later.
# August 2, 2005 5:36 PM

Jason Salas said:

Hi Gopinath,

Interesting theory about using full paths...I guess we could use relative URLs or map a path to a processing page, but such would limit us to only being able to use services locally within the same app, and restrict them from going out over the 'Net, right?
# August 2, 2005 6:25 PM

Joe said:

Jason, I downloaded your example and see that you neither put anything in Session, nor do you have a global.asax which contains a Session_Start event. In this situation it is perfectly normal to get a new Session Id on each request. Try adding something to Session, or add a global.asax with a Session_Start event.
# August 3, 2005 3:45 AM

Jason Salas said:

Hi Joe,

Thanks! But as to the question opf whether this examples, and others like it, would generate a big load on the server - would this still be an issue when a remote page is called repeatedly in fast succession when handling a client-side event like OnKeyUp?

Thanks again!
# August 3, 2005 3:48 AM

Steve Hurcombe said:

Hi Jason,
I think the final answer is:

Ajax does preserve the session information if there is something stored in the session - see Marc Hoeppner's comment.

If there is no session state then the sessionID will be different for each request, however there isn't a server loading problem because of this - according to the MSDN article that Joe linked to.

LifeTime of a Session:

"If the session state is empty because no data has been programmatically placed in the dictionary, no data is serialized to the storage medium and, more importantly, no slot is created in either the ASP.NET Cache, SQL Server, or NT state service to track the current session. This is done for performance reasons but has a key repercussion on the way in which the session ID is handled: A new session ID is generated for each request until some data is stored in the session dictionary."

Everyone agree??

(I would have never found out the about the session issue had I not commented... :-)

Best regards
Steve
# August 3, 2005 6:28 AM

Patrick O'Keefe said:

Thanks for the mention. :)
# August 3, 2005 8:29 PM

Man said:

[url=http://www.8886888.org]信息中心[/url]
[url=http://www2.8886888.org]信息中心[/url]
[url=http://www.tt55.net]小游戏[/url]
[url=http://music.tt33.net]小游戏[/url]
[url=http://game.tt33.net]小游戏下载[/url]
[url=http://music.tt22.net]免费音乐[/url]
[url=http://game.tt22.net]在线小游戏[/url]
[url=http://movie.tt22.net]免费电影[/url]
# August 4, 2005 1:58 AM

Man said:

[url=http://www.8886888.org]信息中心[/url]
[url=http://www2.8886888.org]信息中心[/url]
[url=http://www.tt55.net]小游戏[/url]
[url=http://music.tt33.net]小游戏[/url]
[url=http://game.tt33.net]小游戏下载[/url]
[url=http://music.tt22.net]免费音乐[/url]
[url=http://game.tt22.net]在线小游戏[/url]
[url=http://movie.tt22.net]免费电影[/url]
# August 4, 2005 1:58 AM

Man said:

[url=http://www.8886888.org]信息中心[/url]
[url=http://www2.8886888.org]信息中心[/url]
[url=http://www.tt55.net]小游戏[/url]
[url=http://music.tt33.net]小游戏[/url]
[url=http://game.tt33.net]小游戏下载[/url]
[url=http://music.tt22.net]免费音乐[/url]
[url=http://game.tt22.net]在线小游戏[/url]
[url=http://movie.tt22.net]免费电影[/url]
# August 4, 2005 1:58 AM

Man said:

[url=http://www.8886888.org]信息中心[/url]
[url=http://www2.8886888.org]信息中心[/url]
[url=http://www.tt55.net]小游戏[/url]
[url=http://music.tt33.net]小游戏[/url]
[url=http://game.tt33.net]小游戏下载[/url]
[url=http://music.tt22.net]免费音乐[/url]
[url=http://game.tt22.net]在线小游戏[/url]
[url=http://movie.tt22.net]免费电影[/url]
# August 4, 2005 1:59 AM

Chris Martin said:

I totally agree with you but, this is just the beginning. AJAX (or what the f**% you want to call it)ain't goint away. The technology is finally getting the props it deserves. Technology keeps growing. That's the reason that people like me and you are here right now.

When I decided to get involved in software professionally I never thought I could be the kind of developer that the writers I read were. But, years later...We are onto something new (I'm not necessarily talking AJAX).

Just like the genuises in the previous generations; people will get used to this too.
# August 4, 2005 4:33 AM

Karl said:

Sorry, this page requires Internet Explorer 5 or higher

Even though AJAX doesn't specifically talk about cross-browser compatability, it's hard to call a an IE-only solution 'all AJAX'.
# August 4, 2005 8:40 AM

Berk Aydın said:

hi jason,

i have used ian suttle's example likely 2-3 months ago, and while sufing i found you writting this.

while i was looking up the code that you modified i see that you are making a httprequest likely ian. but not as the Gopinath Varadharajan said, server doesn't genereate many many session ids. how did you do this. what changes did you made.

can you talk something little about that.
# August 4, 2005 9:00 AM

Steve Hall said:

Yeah...I work for the company that supplies the street map data to TomTom. Guam is included to be "complete" about the USA; including it's provinces (the other one is Puerto Rico). My product manager (who has a real Geography degree) figured it would help SOMEONE sooner or later! (And curiously, Guam is something I always look at visually while converting our base data format into four other formats.)

Get your hands on one and post a review about both the software and the data accuracy. Just remember to report any gross (or even minor) data errors you find to TomTom so they can get passed on to us so that they're fixed in future data builds. (Most vendors like TomTom have some sort of data update process for customers. Whether or not they charge for replacement data, I don't know...)
# August 4, 2005 9:02 AM

Chris Douce said:

AJAX certainly seems to be the current 'in' idea. Certainly the technologies are not new - but perhaps it was a phrase waiting to be coined. I've also found: http://www.ajaxpatterns.org, and http://en.wikipedia.org/wiki/AJAX which is useful.
# August 4, 2005 10:11 AM

Kaniz said:

Thats the thing with AJAX - It's been around for /years/, or atleast the theory behind it. Its just with Google, and some guy on a blog slapping the AJAX name onto it, its become big and trendy - and its about time.

I remeber back in highschool doing a webpage for a graphic design class, and even though I wasnt using the XMLHTTPRequest object, but doing things though posts to hidden frames to dynamicaly update page content - same idea. It confused the hell out of everyone else in my class of "but..how did you load that without going to a new page/refreshing/etc?!"

Google did to 'AJAX' what Apple did to MP3s : Take something that had always been around, and do things with it in a way that made it massivly acceptable.

# August 4, 2005 11:39 AM

Matt Smith said:

From 2001 - 2003 I worked for a company where we had to display a lot of information to the user (>70K) but we kept getting complaints about pages being too slow. Research showed that a lot of these guys on 56K modems were only getting 8K - 10K connections. At the time, Firefox was not on the radar and Netscape was so crappy, that we had already decided to leverage the extended functionality of IE. I ran across a potential solution with 'XML Data Islands'. After a little learning curve of XML, XSL and XMLHTTPRequest we converted over several key pieces of functionality to only require 2-3K of data to build the page.
# August 4, 2005 12:24 PM

dylan said:

The most important javascript tutorial you can read:
http://www.onlinetools.org/articles/unobtrusivejavascript/

If you have experience with xml coding on the server side, working with the DOM isn't that hard (unless for some foolish reason you want to bother with NS4 or IE5 Mac or something crazy like that).

# August 4, 2005 4:02 PM

Jason Salas said:

Hi Dylan,

Thanks. My point was that most ASP.NET devs at one point did a lot of JavaScript, and then went away from it, and now have to pick it up again. :)
# August 4, 2005 7:30 PM

Jason Salas said:

Hi Steve! Thanks for the feedback....that's great news. I talked about your company, about TomTom, and about consumer tech today on my podcast: http://weblogs.asp.net/jasonsalas/archive/2005/08/05/421631.aspx
# August 4, 2005 8:56 PM

Chris Frazier said:

Some of us never went away - javascript is the shnizzle for end user interaction.

The thing that I wonder about is how many ppl will start relying completely on it with all of the recent ajax hype and forget one of the cardinal rules of asp.net control building: degrade for downlevel clients.
# August 4, 2005 10:30 PM

Joe said:

I guess I don't understand the point of an RSS screensaver. If the screensaver comes on, I won't be at my desk to look at it...so what's the point?
# August 5, 2005 2:10 AM

Jason Salas said:

Channel 9 uses it for eye candy in their lobby while visitors wait on large plasma TVs...nice implementation.
# August 5, 2005 2:15 AM

Jason Salas said:

Imagine if this type of dynamic data could be used in movie theatres instead of static slides. You'd get up-to-the-minute news, sports, weather, etc. while waiting for a movie instead of a boring ad.

Same this goes for GPS car systems, set-top boxes for digital cable TV, etc.

Think outside the box and beyond the normative product usage.
# August 5, 2005 2:17 AM

Tim Haines said:

Hey Jason,

Nice comments. It's certainly an interesting exercise to pick how people and behaviours are going to change over time with the introduction of a new technology. Hopefully with AJAX there will be enough people doing it well, that we don't see to many awkward implementations that make it ugly or annoying to use. One benefit of this blogversation is that it's made it very clear where AJAX is not suitable.
# August 5, 2005 2:38 AM

Alex Lowe said:

I don't the fix to your problem but I'd suggest using the link from the home page....

"Please contact me (Scott Watermasysk) at here with any errors, problems, and/or questions."

http://scottwater.com/about/contact.aspx

Also, as you are aware, the blogs on weblogs.asp.net have not been updated in a long time. As such, they've fallen behind and the authentication piece is now tied to the 'old' forums. You can try to retrieve your passwrod at http://asp.net/Forums/retired/User/EmailForgottenPassword.aspx?tabindex=1
# August 5, 2005 8:01 AM

Jason Salas said:

Thanks Alex! The new URL apparently doesn't cut it s far as sending me my correct password, but yours did right off the bat! I was surprised to see the old UI for the former ASP.NET Forums. Thanks a million!
# August 5, 2005 8:11 AM

Matt said:

Bummer - Doesn't seem to use the IE proxy settings when behind a corp firewall
# August 5, 2005 8:13 AM

alex said:

in case nobody has mentioned it to you yet, OSX Tiger shipped with RSS ScreenSaver. and when i saw it, i had same opinion as Joe. "i'm not here, thats why the screensaver came on... so who's watching that?"

also, reports are that MSIE7's RSS implementation looks rather familiar to folks using safari on tiger!

lastly... it only took EIGHT days before the first vista virus was identified. 8 days? was there a contest or something?

;-)
# August 5, 2005 8:20 AM

Ian said:

Hi
Thanks for the comments on the show notes.
I somtimes wonder the benefit on doing that with the show notes. It takes some time to do it but I have some good feedback on doing the notes that way so I have continued doing it.

I also find that it makes you edit your show well as you have to pay attention when you play it back to do the notes.
# August 5, 2005 11:44 AM

joeb said:

The usage scenarios you described above still don't make sense for a "screensaver". My point is, a screensaver comes on when nobody is looking at a screen. Displaying rss feeds on a screen in a lobby, movie theatre, GPS car system, etc... are scenarios when what you would be looking at would be an application, not a "screensaver". Anyway, I'm beating a dead horse. I set my screen saver to blank so who am I to say.
# August 5, 2005 2:11 PM

Jason Salas said:

Hi Ian,

My pleasure to mention your blog/podcast. Aesthetically, I think it's cool, but too much work for someone who podcasts as often as I do...to try and go through the entire show and map out what content kicks in where. Do you plan on doing an enhanced podcast for iTunes 4.9 in which you "chapterize" your show, which kind of builds on the show notes concept you're using?
# August 5, 2005 4:46 PM

Michael Schwarz said:

Hi Jason, I think that AJAX will not be used by all web sites if the do not have the money to build a user friendly page and a search engine compatible one. If you are using AJAX you will have a small page that will load data if requested. A web crawler will only fetch the initial page which will be an "empty page", search there for HREF tags. Will Google update web crawlers to run all AJAX methods to get all the data from a web site?

CIAO
Michael
# August 6, 2005 10:46 AM

Jeff said:

Are you kidding? Would streaming video have come as far along as it has without early help from porn? I think not.
# August 6, 2005 2:05 PM

Jason Salas said:

Hi Jeff,

Thanks for your comments - you've proven my point precisely. You're absolutely right about the importance of adult-oriented information and streaming technologies (although I think actualy video downloads are more the norm). But even though in theory streaming a video was a perfect fit the medium, mature content didn't exactly jump on the bandwagon and embrace it immediately.

I think it's because the best and brightes people lagrely start out in tech and more "legitimate" industries (for lack of a better word), and get the chance to exhibit and expand the use of certain technologies after they've been in practice for awhile.

The technical adoption isn't immediate and lags behind the mainstream, but the success rate is greatly amped up after sex gets involved.
# August 7, 2005 6:34 PM

Paul Glavich said:

Hi Jason,

I agree with you however people are getting pretty damn good with making the browser experience. Scott Cate shows me this link http://weblog.infoworld.com/udell/gems/tibco.html
Its a video demo'ing a javascript only library. Check it out for a "rich" web client.
# August 7, 2005 8:14 PM

Jason Salas said:

Hi Glav,

Nice! There's the term I think we should use "rich web client" - it qualifies the platform. :)
# August 7, 2005 8:21 PM

George said:

Hey Jason,
Take a look at these apps and let me know how close we are to "rich web apps"

http://www.georgenava.com/applauncher.php

or this neat blog reader:

http://www.bloxor.com

Are we there yet?

;-)
# August 7, 2005 8:29 PM

Jason Salas said:

Hi George,

Thanks for the links. Certainly rich WEB apps, but not rich clients in the traditional sense of the word.
# August 7, 2005 8:35 PM

Jason Salas said:

Just got insider word from a little industry birdie that the control gallery's on the way. Or something like it. Sweet - I figured it would be.
# August 7, 2005 9:12 PM

Ian said:

yes I plan to at some point.
It interesting you noteing the way I do it.
I was thinking of not being as details but seeing how you like it I am going to continue with it that way

Ian
# August 8, 2005 3:38 AM

Mike Shaffer said:

Agree completely. Rich WEB apps are still no where near a true rich client is. We typically say here (we're a big rich WEB client shop) that we give the customer about 85% of the true rich client experience. We (as developers and geeks) revel in our cleverness and stand in awe when gazing upon our creations in Javascript, HTML, CSS & XML. We are proud of our cleverness in implementing a near Windows like experience in the browser. Our users? They gripe that things aren't quite right, that things are close, but not like (fill in the blank with their favorite Windows app). They focus on the 15% that's missing, we thrill in the amount of effort that it took to get 85%. That's the difference between doing rich WEB clients and true Rich Clients like Windows Forms or Eclipse RCP's. The best description I've heard the Rich WEB called is the Chubby Client. That's what we call 'em around here.
# August 8, 2005 10:01 AM

Chad Humphries said:

I know I've been working on a newer component/project library for .NET that will be rolling out in the next month. Something that is clean, easy to use and packed with useful filters like 'pay components/open-source components/etc'.
# August 8, 2005 11:11 AM

Erik Porter said:

Definitely agree, but I can see almost all areas catching up with real rich clients someday. The only one I don't see happening though (and it's a big one, although I'd love to be proven wrong) is offline access.
# August 8, 2005 3:27 PM

EricB said:

what song made the band Kajagoogoo famous?

White Feather (dang, since I have that on LP, does that make me old?)

EricB
# August 8, 2005 6:27 PM

Jason Salas said:

Hi Eric,

Actally, I was looking for "Too Shy". :)
# August 8, 2005 6:31 PM

Bridget said:

Waiting for the follow-up!

Officially, yours was my first podcast. I've got a moral objection to having to download third-party software to listen to things. If people can't give me something my machine can organically decipher, I'm just not listening. Yes, that goes for MSNBC.com's podcasts, as well.

Blah, blah ...
# August 8, 2005 7:14 PM

Jason Salas said:

*ANOTHER UPDATE*

An interview with LiteFeeds.com's John Goodall: http://weblogs.asp.net/jasonsalas/archive/2005/08/06/421734.aspx
# August 8, 2005 8:09 PM

Jason Salas said:

The interview went REALLY well (I think)...more soon on the next podcast. Stay subcribed!
# August 8, 2005 10:04 PM

mike said:

Good luck with the interview. :-)
# August 9, 2005 12:18 AM

Ron Shelton said:

Statler and Waldorf and the best!
# August 9, 2005 7:00 AM

Matt Wardlaw said:

you gotta email your Metal Show buds about this stuff...

there is already audio of a couple of the new songs up at the Ryche website!!

http://queensryche.com/releases/operation-mindcrime-2/paraphernalia.html
# August 9, 2005 2:43 PM

Tea Vui Huang said:

Just one last step to the Enhanced Podcast cycle, export it Java so that it can be viewed on mobile phones!

See a demo of an enhanced 'Inside Mac Radio' podcast converted to J2ME format!

http://www.geocities.com/tvhuangsg/javacast/
# August 10, 2005 5:45 AM

Jason Row said:

You can be a technical editor of a book for something you didn't really get at the time? :)
# August 10, 2005 1:22 PM

Jason Salas said:

Hi Jason,

Sounds rather hypocritical, doesn't it? :-)

Actually, I was brought on the project to qualify the accuracy of the code, tighten up the syntax, and make minor editorial changes. I understood the technical considerations...even if I didn't really understand why people would gravitate towards the project.
# August 10, 2005 6:11 PM

Mikael Söderström said:

Waaah!
I´m going to my job now and the link doesn´t work. How am I gonna make it?

Waaah!*2
# August 10, 2005 11:56 PM

Jason Salas said:

Whoops...the MP3 file, in fact, was pointing to a non-existent address. I fixed it. Thanks Mikael!
# August 11, 2005 1:15 AM

Jason Row said:

Congrats again Jason on reaching this milestone.

And I agree with your comments about Kelly Clarkson. My wife might not like it if I went out to dinner with her so maybe I can live vicariously through you. Use those media contacts and get something arranged!

# August 11, 2005 10:24 PM

Daniel Zeiss said:

There is another way keeping the ASP.NET programming model on the one hand AND use AJAX-like features on the other hand. Check out this Framework:
http://www.daniel-zeiss.de/ComfortASP
# August 12, 2005 6:26 PM

Andre said:

:( Sorry, but how is it working? Is there any example available? I used Visual Studio and Firefox.
# August 13, 2005 4:16 PM

Jason Salas said:

Hi Andre,

I still don't fully understand myself...I'm trying to figure out how to get it to work.
# August 13, 2005 5:44 PM

Daniel Zeiss said:

Hi there,

ComfortASP.NET is a (small) Framework that uses the ASP.NET rendering output and instruments the HTML to make AJAX-like hidden Postpacks and transfers only changes made by the ASP.NET Page-Lifecycle. Internally, AJAX (and many other things) are used to provide these features automatically. At the moment only IE is supported, but soon I will release an update to support more browsers - but it is still an alpha version - just to get feedback.
btw. an Example is available here (at the moment only IE):
http://dazei.dyndns.org/testCalculator

Greets, Daniel.
# August 13, 2005 8:10 PM

Jason Salas said:

*UPDATE*

An interesting application combining Google Maps and Craig's Lists: http://www.housingmaps.com/
# August 14, 2005 12:59 AM

John Walker said:

I very much agree! I also like the MS work found at http://www.virtualearth.com. I find the imagery and the driving directions UI better with Gmaps, but the scratch pad, locate me and larger screen maps of virtual earth is so cool. Looking forward to see all the competition make us all happy.

jw
# August 14, 2005 1:32 AM

John Walker said:

PS: Being that you're in Guam, virtual earth will not help much at the moment. They're going to be adding additional locations in the next preview I hear.
# August 14, 2005 1:35 AM

Jason Salas said:

Hey John,

Yeah, most mapping apps, GPS auto systems, satellite radio, Tivo systems, and other types of consumer tech don't make Guam a priority. :(
# August 14, 2005 1:36 AM

John Walker said:

:)

Ahh well, we appreciate you...sans the poisonous snakes of course.
# August 14, 2005 1:59 AM

Jason Salas said:

John, Interesting blog you've got...I added it to my RSS subscription list. :)
# August 14, 2005 2:13 AM

John Walker said:

Jason,

Thanks! At least someone's looked at it. I'm a .NET dev and I've been reading your stuff via weblogs.asp.net for some time. Seems you've always got one of the posts I click on there.
# August 14, 2005 2:43 AM

Jason Salas said:

*UPDATE*

Well, as far as I can see, Google Maps doesn't do a live update for driving directions, indicating if there's construction in the path, like MapPoint did. Now THAT was cool.
# August 14, 2005 2:58 AM

Jeff Gonzalez said:

Ajax != camel-cased btw, that is pascal.
# August 14, 2005 7:51 PM

Jason Salas said:

A-ha! Thanks!
# August 14, 2005 8:04 PM

Wallym said:

Here are some thoughts:

Mobile support. The browser needs to support javascript or someone (perhaps

MS with Atlas) needs to sniff the browser and see that the code is
connecting to a mobile browser and do something different because it is a
downlevel browser.

Deprecation for older browsers. This is the issue that we have always had.
Similar to the Mobile Support issue above.

Security of Code. Yes. You should check out Nikhil's JavaScript utilities
that he has on his web site. I believe it provides some basic support for
obfuscation.

Custom Data Types. With the Ajax Library for .NET, there is the capability
to add serialization for new objects/data types.

Session State. I know that the Ajax Library for .NET provides support for
the reading in session state.

Globalization. Yeah, I would think that this would integrate with Nikhil's
JavaScript utilities.

# August 14, 2005 9:48 PM

Dave Tigweld said:

Since google is the biggest, they are the spammers #1 target. Its very hard to dig through all the garbage these days. A "commercial", "non-commercial" search option to help filter all the junk sites they list at the top would be nice.

I think yahoo is on the right track here. http://mindset.research.yahoo.com/
# August 15, 2005 11:02 AM

mike said:

It should probably be AJAX while it is considered an acronym still connected to the terms that make up the spelling. (Not that most people could probably not tell you what the originating terms are.) There are no hard-and-fast rules for when a acronymically based term becomes spelled as if it were a word. Consider "radar," "laser," "scuba" and for that matter "bit." But also ZIP, the latter a kind of faked acronym that is nonetheless officially still all caps. Also ASCII, RAM, ROM. Tricky: UNIX/Unix.
# August 15, 2005 12:58 PM

Jason Salas said:

Good call, Mike! Leave it to a fellow tech writer to set the record straight. :)
# August 15, 2005 1:44 PM

John said:

Do you know anything about the Audiovox's capabilities to sync with ACT! or Eudora?
# August 15, 2005 2:42 PM

Jason Salas said:

Hi John,

Nope....I've not used it there, but I assume it's possible.
# August 15, 2005 2:51 PM

Marc O. Jnavir said:

Do you have any info about his new library Ajax.NET PROFESSIONAL?
# August 15, 2005 5:21 PM

Jason Salas said:

# August 15, 2005 5:25 PM

Eric Newton said:

yer getting old, fella
# August 15, 2005 7:55 PM

Vurg said:

Come on, ever heard of a cache layer?
# August 15, 2005 10:42 PM

Jason Salas said:

My point exactly - what if someone didn't know? Devs who don't how to code such a solution would lockup/lockout their users and destroy performance potentially app-wide (such as in cases where the main DB access is on the homepage...trust me, I've got experience in this), so is there an abstracted way to prevent inexperience from ruining an app?
# August 15, 2005 10:52 PM

Dean Harding said:

One solution would be to artifically limit the number of events/sec. For example for an OnKeyUp type event, instead of doing the round-trip on every single key-press, you could kick off a timer to do in "n" seconds. Then, any subsequent key-ups would be ignored waiting for that timer to fire. When it fires "n" seconds later, you do the round-trip with the complete data.

So this way, even if you're typing really quickly, you'll only - at worst - be doing 1 roundtrip every "n" seconds. Also, "n" could easily be tuned (perhaps even in real-time!) so that if you're getting heavy load, you turn it up (meaning slightly slower response, but less round-trips), but if the load is light, you turn it down (meaning faster response but more round-trips).

I'm sure this could probably be done in a fairly generic way.
# August 16, 2005 12:47 AM

Udi Dahan - The Software Simplist said:

Can you really expect developers who don't know how to code "such solutions" (a cache isn't THAT complex) to write scalable systems - regardless of the technology being used.
# August 16, 2005 2:08 AM

Dean Harding said:

@Udi Dahan:

I guess the other thing is that for though those of us who *are* capable of writing truely scalable apps, we may not always want to. We want it to be just "good enough" for our current user base, but still not bring our servers down if we happen to get slashdotted or whatever.

Obviously, if the app was meant for thousands of concurrent users, then something more advanced is required, but if we can provide for the 95% of situations where it's not *that* crucial, then so much the better!
# August 16, 2005 2:23 AM

Jason Salas said:

Hi Udi,

The majority of code I see these days for tiered and data access in web-based apps isn't exactly picture-perfect in terms of providing for scalability and growth, although they certainly take expansion into consideration.
# August 16, 2005 3:14 AM

Dave Crane said:

Hi Jason,

These are all real issues. As Wallym points out, the older browser and PDA issues are similar up to a point. It depends what you're doing with Ajax. You can go for the unobtrusive approach (everything must work without javascript, just use Ajax to help things along), or decide that what you're doing needs Ajax, and just offer the usual 'please upgrade to...' apology. With PDAs, phones etc., there's the whole form factor issue too. Even if Ajax was fully supported by a small touchscreen device, you'd probably need to maintain a separate UI for it.

Security, you've raised a couple of sepaate issues, namely protecting your source code, and protecting your web services. There's also the issue of protecting your users' data from the man in the middle. I've given a whole chapter of the Manning book over to security issues, there's certainly plenty to chew on, but it can be done.

Custom data types - there are many libraries that will map your server object model to Ajax calls: Sajax, DWR, JSON-RPC, to name a few that I know. Atlas will undoubtedly do it too. Thee's a security angle here to. Remember not to expose at too fine grained detail, or you open up numerous potential attack points, and make upgrading your server code a nightmare if you're letting third-party clients code against it.

As far as I understand Atlas (which isn't that well, I have no insider knowledge), it's a pure javascript library with a set of .NET bindings on the back to make it easier to use, much as Ruby on Rails leverages Prototype. However Atlas can be used as a 'pure Ajax' play, then, on a level footing with any other javascript ajax library.

I don't know of any other libraries that have addressed the globalisation issue.

Bye for now,

Dave
# August 16, 2005 12:54 PM

Chris Martin said:

No AJAX there. Just simple style.display manipulation.
# August 16, 2005 7:41 PM

Jason Salas said:

Hi Dave,

Excellent comments (and a great book - http://www.manning.com/books/crane - I'll get a copy). :)
# August 16, 2005 7:44 PM

Jason Salas said:

Ah. I think we're going to start getting confused between what's Ajax and what's "Ajax-style" and what's just hardcore JavaScript. At least I am.
# August 16, 2005 7:45 PM

Chris Martin said:

On the other hand. Netflix.com is using AJAX for their movie info. It's pretty cool too.
# August 16, 2005 7:46 PM

Chris Martin said:

AJAX is really just using a HttpXml remote call to a server to get information and displaying it asyncronously.

I could tell that the Amazon example wasn't AJAX by checking the code.
# August 16, 2005 7:49 PM

Jason Salas said:

Yeah...I realize there are certain commonalities that one can look for within code that indicate the presence of Ajax/Ajax-style development...and this I have a problem with, because does that open up the ability to reverse engineer or hack into an app?

See David's comments on this subject at http://weblogs.asp.net/jasonsalas/archive/2005/08/14/422521.aspx#FeedBack
# August 16, 2005 8:00 PM

alex sian said:

oh man. it saddens me to have read this blog posting, and even worse, to have listened to the related podcast. of *all* people, i would have expected you to 'give credit where credit is due'.

On the subject of "the very humble beginnings of kuam.com" -- my friend... kuam.com did not start in 1999. nor did it simply start posting news stories only after you got involved and took the technical reins.

My only proof comes from the 'wayback machine' or archive.org - check this link:

http://web.archive.org/web/19970423042355/virtual.guam.net/kuam/index.html

you can follow the links therein, and see for yourself the amount of information that was there, back in 1997. hard for me to fake this, as i'm sure you can attest.

in 1997, i tried hard, and i mean *really* hard to bring kuam out from its dark ages, and into the new millenia. it was a constant struggle.

for the record, kuam.com started on my macintosh 6150 in 1997. among the more crowning achievements accomplished with the site i ran for kuam, was the posting of hundreds of photos and minutes of quicktime video, covering the aftermath of typhoon paka, within *24* hours of the passing of the storm. thousands of people emailed to thank me for that effort. it made me feel good to know that with kuam, i helped get the word out to people about the islands survival and recovery of that supertyphoon.

at least, you are paid a salary. i, on the other hand, did it because it was the right thing to do "for the people of Guam". i never made money from my efforts getting kuam.com started. I did finally convince current management to buy the domain from me, but even that took some convincing a few years ago.
# August 17, 2005 12:39 AM

Jason Salas said:

Hi Alex,

I realize that you setup the domain and put together the pages that made up the first edition of KUAM.COM. It wasn't my intent to rob you of the credit you very rightly deserve, but tell the story of what happened when I got here as KUAM's first full-time web staffer.

I can see how I may have erroneously clouded this very important fact and left you and your contributions out of this aspect of the story.

You're right, of course. I'll make sure to state that and set the record straight tomorrow on Episode 104. :)

So sorry about the mix-up.
# August 17, 2005 12:39 AM

alex sian said:

i knew you'd make it right. i just wonder how you can tell the story accurately, if you werent there.

so much time has passed, i really should just let go.

but i'm sure if someone had done the same to you, your reaction would have been just as emotional.

btw, congrats on the perfect newscast.
# August 17, 2005 12:48 AM

Jason Salas said:

...and yeah, if someone had done this to me, I'd be pissed. =|
# August 17, 2005 12:52 AM

Bruno said:

Access is not scaled to support heavy load... Use professional databases with connection pools and you won't have this problem.
# August 17, 2005 3:42 AM

Wim Hollebrandse said:

The following pic on the same photo stream shows the globe on which they can see where search queries (a subset of some sort I'm sure) are coming from, and a special section displays actual search terms...

http://www.flickr.com/photos/jurvetson/21468111

Very, very, very cool...
# August 17, 2005 4:35 AM

Jason Salas said:

Hi Bruno,

Yes about Access, and good point. *Most* experienced devs know this. BUT, and more importantly, I think this is a case of "hope for the best, expect the worst." Some people, whether by a lack of available resources, programmer ignorance, or just laziness are going to use Access. Much in the away we defensively design apps for users who will interact and misuse with them in a variety of ways, we can't assume developers will have access to, or write, perfect applications.

I was actually surprised when I learned that Microsoft was basing the storage mechanism for its membership container in ASP.NET v.2.0. But it makes absolute sense - optimally, all developers would use SQL Server or Oracle, but we can't guarantee that, so you need to account for backwards compatability, hence the need for the System.Data.OleDb namespace and its associated classes.

So the tools need to inherently be high-performance and scalable to an extent. That said, I don't really like Ajax from the standpoint of it being an app killer for people who whatever reason might use and connect to an Access database.
# August 17, 2005 6:22 AM

alex sian said:

thanks for setting the record straight jason... i am proud of my efforts then, and your efforts now. --alex
# August 17, 2005 8:15 PM

Jason Salas said:

Cool! Glad we're straight now. Whew!
# August 17, 2005 8:30 PM

Scott Rudy said:

Maybe it's me, but I don't know why the security of code is raised here. No code that could potentially cause a security risk should "ever" be put in presentation logic in the first place. As a matter of purist theory it should be placed as far away as possible, though I am not much for building business logic into stored procedures. Also, AJAX doesn't introduce any new web service concerns that haven't already been brought up. The endpoints are vulnerable and should be treated as such. If the concern is intellectual property I would be more understanding, but we have lived with open javascript source for years and it is one of the greatest learning tools at our disposal. Even though I can see Google's script for Google Maps, I have no desire to steal it and use it for my own map project. I would just integrate the maps into my application.

I am also glad to see the javascript causes an error when the source isn't on the same host. If it didn't cross site scripting attacks would run rampant on the web.
# August 18, 2005 12:28 AM

Dave said:

Packt was created by one of the originators of Wrox Press, so has the same sort of drive and focus that Wrox had when they started.
# August 19, 2005 7:58 AM

Wallym said:

Thanks for the info. This is not on CNN or Foxnews.
# August 19, 2005 8:19 AM

Jason Salas said:

Wait until you hear about this on Monday's podcast.
# August 19, 2005 8:20 AM

Jason Salas said:

some of the other news agencies picked it up...AP, Reuters, etc. MSNBC's got it...from us.
# August 19, 2005 8:25 AM

Wallym said:

if its not on Foxnews or CNN, I don't hear about it....Geez, do I have my head in the sand or what.
# August 19, 2005 8:41 AM

Wallym said:

Nice tie in with the mechanics threatening to strike.
# August 19, 2005 8:44 AM

Glenn from Vallejo said:

wow! they had something happen here in the SF Bau Area, but the rear gears snapped or something and the plane stayed nose up. http://sfgate.com/cgi-bin/article.cgi?f=/c/a/2005/08/16/BAjet16.DTL&hw=United+Airlines&sn=031&sc=186
# August 19, 2005 9:59 AM

JesseA said:

Nice timing for this, a mechanical failure as the mechanics prepare for a strike tonight! hmm, connection? They can't blame it on the replacement workers yet!
# August 19, 2005 10:05 AM

Glenn from Vallejo said:

Oh yeah, like Wally sez, AP, Reuters, etc have picked it up...
# August 19, 2005 10:13 AM

Jason Salas said:

*UPDATE*

Guam def. Russia (6-2)...pitcher Trae Santos has 12 strikeouts in a complete game, exhibiting his nasty curveball and deceptively sneaky change-up. Calvert Alokoa hit 2 HRs in the first 2 innings.

Much respect to Russia, who had great defense and turned a double-play.

It's party time. :)
# August 19, 2005 8:21 PM

Scott Mitchell said:

That first picture makes it look like y'all have snow in Guam. :-)

Was everyone on board ok?
# August 20, 2005 2:19 AM

Jason Salas said:

Hi Scott, fortunately, everyone was evac'ed and 3 people received minor injuries: http://www.kuam.com/news/14742.aspx

This made big international headlines.
# August 20, 2005 2:42 AM

Wallym said:

Nice pics.
# August 20, 2005 9:12 AM

mike said:

Perhaps I'm not seeing it, but I still don't quite see based on what you've got here where AJAX opens extra vulnerability. As Craig says, it's still HTTP, and whether information hits the server from a user clicking a Submit button or an AJAX asynch request, the server has to be coded equally defensively, no?

The vulnerability issue I recently heard about that seems like a concern is the use of immediate-postback scenarios and the potential there for security breaches. Example: on an order form, you enter your name, then address, then city, etc. An AJAX-ish app could be sending back each datum as you finish it, withOUT waiting for you to submit. You might still cancel ("hey, this web site look suspicious!"), but too late. Some developers might do this with credit-card numbers for "insta-validation," which might seem like a feature to users (less waiting), but opens the door to bad practices and accustoming users to this scenario.
# August 21, 2005 5:20 PM

Ivan said:

I wonder if this plane ever flies again? could be risky if it does..
# August 21, 2005 5:47 PM

Jason Salas said:

Hey Mike,

Yeah, I guess you're right...any script theoretically would be susceptible to attack. It seems like the safeguards against bad practice development and poor performance dangers are still a concern.
# August 21, 2005 7:25 PM

Peter said:

Ivan - You can bet it will fly again. Can you image how much it would cost to scuttle a 747?
# August 21, 2005 9:19 PM

Jason Row said:

I was hoping to send you a message saying that Canada won the game. Looks like we'll have to go back to challenging you to hockey.
# August 22, 2005 11:50 AM

Jason Row said:

Negroponte's book was one of the first books that I read that talked about the future of the tech industry. I had been reading his column in Wired when I saw his book listed so I had to pick it up.

I haven't really been interested in books from other CEOs or industry drivers. I'm too busy reading development books.
# August 22, 2005 1:31 PM

Wallym said:

Welcome to the present. ;-)

Just kidding.
# August 24, 2005 7:03 AM

bspann said:

You should check out his blog...
http://weblogs.asp.net/mschwarz/rss.aspx
# August 24, 2005 9:49 AM

Glenn from Vallejo said:

I am so far from being the developer, but that litefeeds thing works pretty well on my BlackBerry. I love it. I have Jason's blog, Scoble, a few Craigslist RSS feeds, and this Powerbook RSS feed too. Tres, tres, cool....

# August 25, 2005 9:34 PM

Jason Salas said:

Hi Glenn - told ya! Glad you came over. :)
# August 25, 2005 9:36 PM

Jason Salas said:

Someone else out there commented about an increased risk with Ajax-enabled pages and brute-force attacks: http://www.jamesdam.com/ajax_login/login.html
# August 26, 2005 2:59 AM

uber said:

I usually try not to be snarky about technology, but I WOULD have to point out that using AJAX for a login page is just asking to get crushed. It's a good technology for what it does, but this is just an example of someone taking a decent idea way too far. It happens with every other technology, especially XML.
# August 26, 2005 10:16 AM

foobar said:

Whatever. You'd have the same DoS issues no matter what.

The dorks writing these articles don't really realize that EVERYTHING on the web that requires server interaction *must* send a request. What's so different about using "AJAX"?
# August 26, 2005 1:11 PM

Danilo said:

Maybe I'm missing something, but how is this more prone to brute force attacks than a "regular" form submit?

From what I understand, all the script in the page is doing is call a script on the server via a URL and passing it data, where it would do essentiall the same work as a form submit with the data would be doing. An attacker is attacking a URL not a form. So, if that's not the area of concern, where is the added risk actually occuring?
# August 26, 2005 1:13 PM

Glenn from Vallejo said:

we miss you man..<snif> <snif>

# August 26, 2005 3:09 PM

Michael Schwarz said:

Hi Jason, I do not understand where the difference is between a "normal" web site request and the AJAX requests. Both of them are using POST or GET to send/get data to/from the server using HTTP/HTTPS. So, they are not different, or I am missing something?

CIAO
Michael
# August 26, 2005 3:31 PM

Michael Schwarz said:

Why is this a problem compared with a form submit? I have an example online where I use a similar way to do authentication. I think it is more secure than a FORMS authentication if you use AJAX. Say, we submit username and password using AJAX, returning an authentication ticket and store it in the page as a JavaScript variable. It will not be displayed in the HTML code (caching) and will not be a cookie that may be a problem (not sure). I can create my own ticket, including IP address, browser agent, ... Where is the problem?

CIAO
Michael
# August 26, 2005 3:36 PM

Michael Schwarz said:

I have an example online where I use a similar way to do authentication. I think it is more secure than a FORMS authentication if you use AJAX. Say, we submit username and password using AJAX, returning an authentication ticket and store it in the page as a JavaScript variable. It will not be displayed in the HTML code (caching) and will not be a cookie that may be a problem (not sure). I can create my own ticket, including IP address, browser agent, ...
# August 26, 2005 3:36 PM

Wim Hollebrandse said:

uber:"AJAX for a login page is just asking to get crushed."

Eh?

Like many others, I'm not sure where all this is coming from.

You're using the client side XMLHttpRequest to either perform a HTTP GET or HTTP POST to some URI endpoint. It's absolutely EXACTLY the same as when submitting a 'normal' HTML form to the server.

You're hitting the server. Period.

Yes, you could create your own javascript and have a nice loop (for i=0;i<1000000;i++) which performs a GET or POST to this resource but in essence this is no different from analyzing an ordinary HTML form (use its form variable names) and trying a brute force attack by using .NET's WebRequest class and hitting the server like that.

Bottom line: AJAX or no AJAX, we should be coding defensively, regardless. It hasn't all of a sudden become an issue since people started blurting out the word "AJAX"...
# August 26, 2005 4:24 PM

CasaSpider said:

Hello Jason, at first I thought you were from Curacao... Salas is a very common name here... :-)
I want to give the team of Guam my congrats, they are a great and very fair team.
Guam and Curacao do have a lot in common and it's great that these small islands reach that far in the World Series of Baseball.
The same goes for Hawaii by the way.
Greetings from Curacao!
# August 28, 2005 8:40 AM

Scott said:

OH, the location of a permanant Jimi Hendrix exhibit.

http://maps.google.com/maps?q=experience+music+project,+Seattle,+WA&ll=47.621403,-122.347816&spn=0.003304,0.007104&t=h&num=10&start=0&hl=en

They have an entire section dedicated to just Seattle music too. From the Ventures to Nirvana.
# August 28, 2005 11:40 AM

Jason Salas said:

Ah...the Experience Music Project (thanks Paul Allen). When I was there it was still being built, but the big thing I remember was that the structure had no right angles...the thing looked like a big heart (the actual organ, not the Valentine shape).
# August 28, 2005 6:59 PM

Jason Salas said:

Hi there,

Yeah, Guam and Curacao have a lot in common...both about 140,000 people, both 30 miles long, both 7 miles wide.

Good luck vs. Hawaii!
# August 28, 2005 7:11 PM

Chris Szurgot said:

Makes me think of the tenants of database normalization. Lots of tuning concepts, making sure keys are only referenced once, etc... And then when you're all done, you move the foreign key into another table just because <grin>
# August 29, 2005 8:55 PM

John Walker said:

Jason,

Couldn't agree with you more. It's very easy for those "in-the-know" to respond that way. The simple fact is that, no matter how good a dev you are, there's no way to be an expert on everything. It is going to lead to problems in the AJAX space, and I'm sure we'll see some companies release some stuff, only to see the app be crippled by performance problems or exploitations.

And you are so right about the fact that almost every code example you see out there doesn't use best practices. I understand why they can't do it in a simple example, but you know it's going to be copied and used in production. I know I'm certainly guilty of that. All I need to do is look back a year or two at code I've written...I cringe ;)
# August 30, 2005 2:55 AM

Charles Chen said:

There's this little app, Shoutcast (from the makers of Winamp)? It's been around at least at 4-5 years now. Let's anyone deliver MP3 streams from their desktops. Where've you been man?
# August 30, 2005 8:53 AM

Charles Chen said:

1. Best practices are very subjective and arbitrary. Yes, there are a few "rules of thumb" in development, but even those do not always apply in every situation.

2. The examples you used were not really cases of ignoring best practices, but rather using the wrong tool for the job.

3. "Coding optimally" is a pipe-dream. It's like a function that approaches infinity...it'll never get there. I'm willing to bet that if you gave me a sample of your code, I could find at least a dozen places where you've spurned "optimal" for "git it done". Likewise, if I gave you a sample app of my own, you could do the same. The fact of the matter is, unless you're a software company, "optimal" is only applicable to time. As long as the application works and answers the business questions, most clients could care less whether the solution is "optimal" to you or not. They'd rather have a working solution in 3 months than a masterfully designed application that is "optimal", but delivered in 9 months (isn't this partially why there are a lot of Java-to-.Net converts?). Fact of the matter is, I'd tweak, optimize, and refactor my code for months on end if there were no deadline. But in real life, this isn't the case and the winner is usually the guy that can deliver the best working solution to the client in the fastest time at the lowest cost.

4. ""proper" constructs to optimize performance, reusability and scalability" - Don't get too caught up on premature optimization. Code needs to work first, work fast secondly. Paul Graham, one of the original engineers that created the Yahoo Store software, has a great set of essays (http://www.paulgraham.com/articles.html) on developing software or "hacking" as he calls it.

"Premature optimization is the root of all evil (or at least most of it) in programming."

- Donald Knuth

Get it working first. You can build a fancy tiered caching mechanism later ;)

5. Elitist attitude in programming is a very bad thing. In my experience, pointing out bad code is very hard to do without sounding elitist. If it works, you have a deadline, and it's not going to crash the application, delete a database, or screw up some data, then just let it slide. Be sure to point it out to the developer in a manner as to not seem as if you're criticizing the code or the developer.

6. "So let's encourage and teach best practices, but also allow slack space for alternative routes." This is a very important point.
# August 30, 2005 9:14 AM

Charles Chen said:

One more thing to add. As developers, we should always swallow our tongue once in a while when it comes to addressing code that is outside of the bounds that we define as best practices. One thing that I've learned is that no matter how good you think you are, there is always someone better than you who will look upon your code and spot "obvious" mistakes and bad practices.
# August 30, 2005 9:20 AM

Wim Hollebrandse said:

Check out LaunchCast: http://launch.yahoo.com/launchcast/

And in the UK if you have BT Yahoo broadband, this service is free. I guess similar deals exist for Yahoo broadband customers based anywhere else.

My guess is that Charles has confused LaunchCast with ShoutCast, which as far as I can see are merely streaming radio stations for the masses which are not customizable for your each individual.
# August 30, 2005 9:20 AM

Wim Hollebrandse said:

Forgot to add: it's free for anyone, it's just that you won't be able to skip any song, and you will only have low/med quality, but that's good enough!

The Plus service is free for certain Yahoo broadband subscribers.
# August 30, 2005 9:23 AM

Jason Salas said:

Hi Wim,

Free - say no more. I'm there. :)
# August 30, 2005 1:04 PM

Jason Salas said:

Hi Charles,

It's not quite the same thing...the MGP used in Pandora is a neat concept - and actually works! :)
# August 30, 2005 1:05 PM

Raymond Lewallen said:

Dude, unless you are in a 12 team league with 16 rounds during draft, there is no way on earth you should have ever had Price or Warrick to begin with. Warrick maybe, but we all knew he wanted to be released. Price isn't a quality receiver anymore. They are NEVER starters, and only backups for your backups when they are playing. Please tell me you didn't draft Lamar Gordon and Maurice Clarett to be your starting running backs.
# August 31, 2005 11:07 AM

Jason Salas said:

Hey Raymond,

I split the difference at WR...I didn't pick two upper-tier wideouts, so I figured I'd gain fropm the combination of the two, rather than draft T.O. or Randy Moss and lose out if they got injured or had a bad game. But I got Shawn Alexander at running back. :)
# August 31, 2005 7:50 PM

Scott Allen said:

Yeah - it crawled up to about $5 late last year but has really been flat as a pancake for three years now. Eeks.
# August 31, 2005 10:00 PM

Jason Row said:

Just catching up on your podcasts at 3:30 am. Great link to the Best Sports Video Game debate. There's some great games listed there that I played years ago. Sounds like you played alot of the same ones as I did.

I do have to say that while the old hockey games were fun, the latest NHL line up for the Xbox is pretty sweet. Very realistic.
# September 1, 2005 2:39 AM

Raymond Lewallen said:

Yeah, but there are sooooo many other receivers you should have chosen before either one of them. Nice job on getting S.A. in the first round. you musta had a 2-4 draft position, which means TO or R. Moss neither one probably made it back to you in the 2nd round. Who was your 2nd round pick?
# September 1, 2005 9:09 AM

Collin Yeadon said:

I have few insights to really share but I will say that I was sooo tempted to try for a position at Google a few months back. I used to work close to them before I moved back East and 1 person I used to work with who I had a good relationship with and who currently works at Google told me about the position and constantly tells me about how they treat their employees. Even if I have never heard of Google I would rate it as one of my most dreamed about companies to work for.

None of what I learned through my friend has been anything a Google search won't tell you about Google. I do know that they have similar processes to other bay area companies in that they have different rounds of interviews.. Each one gets tougher and more technical. I also know someone who has mastered this time of interview process and has even turned down a top level networking position at Yahoo simply because he didn't like that they have "sleeping rooms" for employees. (can't blame him there - they must treat you like your a machine rather then human) At any rate, his insights tell me that you need to know the right answers, give more then they want to know.. be cocky but not arrogant. Just confident.. Part of the reason for such a rigorous interview process is because during day to day operation you may have constant challenges and they want to make sure you can give a solution later on without having to resort to some notes you keep written on the bottom of your shoes.

As much as I would have loved to try for the job, especally having an inside contact (which is a massive advantage), I was to busy learning other things and focusing on Microsoft development environments. The job called for more CGI/Linux experience then I had. I have been messing with some Python and other stuff a lot lately so maybe in a few months I will feel confident enough to go after a job there and move back West. Just remember this, Google is looking for a certain type of employee and to be that employee you need a level of confidence that can not be questioned and can withstand any doubt.
# September 4, 2005 2:52 AM

Jason Salas said:

Thanks Collin,

I was interested in a position about 2 years ago, but being a Microsoft developer, my .NET skills wouldn't have gotten me very far, with the main focus being on C++, Java, Python and Perl.

So, I would have had to fall back on my marketing background, which I wouldn't really want to do in a company producing such cool software. To me, that would be purgatory. :)
# September 4, 2005 3:17 AM

Nick Finck said:

I took some shot of the memorial in detail here:
http://www.flickr.com/photos/digitalweb/tags/jimihendrix/

I found out just this month that I will be building my new house just down the street from this site.

Anyway, you should have given me a ring if your were in town.
# September 4, 2005 1:32 PM

Jason Salas said:

Nice work, Nick!
# September 5, 2005 3:31 AM

Collin Yeadon said:

It's funny.. I lived in the bay area for many years. I drove to SF quite often but I can't say that I have ever driven down Lombard. I would have thought that it was at least a littel bit longer then that but I assume it is much more dramatic then that picture shows if you consider the angle of the road.

I wonder what kind of people actually live on that street. It must be a little annoying having tourists want to drive by your house all the time. Maybe that is why I never went looking for Lombard, out of respect for the people who lived there.

I heard it was closed off at 1 point, I am not sure if it still is but from that picture it looks like parking could be a problem for the home owners dumb enough to pay big bucks to live there.
# September 5, 2005 7:08 AM

Joel Ross said:

I drove down Lombard street on Thursday night on my way back to Michigan. I arrived in S.F. around 7, and my flight didn't leave until 10:30, so I had some time to kill.

It is a one way street, and it's the slope that makes it so daunting - to get up the hill, you go up at what seems like a 45 degree angle for 3 blocks - then you wind back down in one block. It's a fun drive!
# September 5, 2005 9:12 PM

Jason Salas said:

Hey Joel,

I was wondering if you took a spin around Lombard on your recent trip. This would be an insane place for someone driving standard with a weak clutch!
# September 5, 2005 10:47 PM

Jason Salas said:

Hi Collin,

I dunno...if I lived there I'd turn it into a profitable venture to compensate for the assumedly extraordinary prices...and charge people for a visitor's fee for things like history. :)
# September 5, 2005 10:48 PM

Alan Yeung said:

IMO, it'll be ideal to learn the basics of all major programming languages/platforms. If the core infrastructures are similar, the remaining things that can matter are just syntax and hidden features.

But if it's an HR...
# September 6, 2005 9:35 AM

Ian Stallings said:

I'm not hiring manager but after years in this industry I think I could say that if you are a solid programmer you can transition to other environments pretty easily. If you have the discipline you can thrive. You may need some time to get up to speed but in the end your experience would pay off.

I would be willing to change my skillset to get into a specific job. For instance I have an interest in robotics. I would be willing to change my skillset to embedded development with C/C++ using an RTOS to transition into a robotics related position, even at a lower salary.

Happiness with your job is worth it's weight in gold.
# September 6, 2005 11:07 AM

Howard Harawitz said:

I can't seem to find the feed URL for your podcasts. Is there one?
# September 8, 2005 10:57 PM

Jason Salas said:

Hi Howard - it's on the link above, under "Subscribe to my podcast."

The feed URL is: http://www.kuam.com/archives/podcasts/podcast.xml
# September 8, 2005 11:05 PM

mike said:

You don't seriously think that people are going to make a distinction based on a hyphen, do you? Hell, most people can't figure out when to use an apostrophe, much less a hyphen. (A sign at the school near me says "Parents pick-up your children here." Good grief.)
# September 9, 2005 1:12 AM

Jason Salas said:

hahaha! my take on the whole situation is that people view English conversations like web apps...they so often neglect proper use of context. :)
# September 9, 2005 1:17 AM

Dustin Fraze said:

Is it just me, or does that look remarkibly like a CPU?
# September 10, 2005 11:34 AM

Michael said:

Even in the closest zoom, you're still seriously high up. When a 30 story skyscraper is the size of your thumb, people aren't too easy to spot ;)
# September 10, 2005 7:54 PM

Odegaard said:

Remember that you are looking straigt down on them. Usually people are just some dots 1 or 2 pixels wide, and often the color of a human being seen from the top blends in with the streets. They are there, but hard to spot.
# September 12, 2005 3:56 AM

jayson knight said:

While I give full props to the Saints for winning, they beat my hometown (and Sports Illustrated super bowl favorites) Panthers! It was a great game though.
# September 12, 2005 6:34 AM

Jason Salas said:

Ah yes...also the Redskins won, and the Yankees beat the Red Sox in the Bronx, with the Mets also winning.
# September 12, 2005 5:16 PM

Jason Salas said:

Actually, I found some people today...I checked out the Seattle Center, and the Mural Amphitheatre had a ton of people there for a concert. They're a tad wider than a single pixel, but you can tell they're people. :)
# September 13, 2005 1:13 AM

scottgu said:

Wait till tomorrow -- we'll have a built-in server control in Atlas that will let you use Virtual Earth... ;-)
# September 13, 2005 1:26 AM

Jason Salas said:

Cool! Wish I was there to see it! :(
# September 13, 2005 1:30 AM

Web Hosting Review said:

I love Google Earth too.
# September 13, 2005 8:54 AM

Bill from Boston said:

The other cool thing I've been using in Firefox lately is the live bookmark feature, which keeps me from needing a separate RSS reader. Very slick, and well worth trying.
# September 14, 2005 7:49 AM

Glenn from Vallejo said:

It's the new Intel chip for Apple.

# September 14, 2005 2:54 PM

Rob said:

I will talk about the "toughness" later (go to the bottom). Let me get something off my chest first.

Google made me an offer, but I am still bitter at how they treated me. Go figure how bad their dealing with me must have been.

To be fair, the people who interviewd me on the phone and on site seemed quite competent and fair. As far as I could tell it was the recruiter I was working with that treated me like a dirt.

I am sad to say that reports of the company (or its recruiting organ) being arrogant, rude and perhaps even suicidal (given how I believe they are turning away good people) are NOT exaggerated. I can perhaps not fully convey the true sense of "being treated like a dirt" in my narrative here, because there were lots of subtle things that added up to give me that impression, but there were two definitive moments that really struck me.

It all started few months ago when I was looking around for a new position. My wife volunteered to help and found out that Google has really good benefits, especially if she were to get pregnant in future! Long paternal leave, meals-on-wheels for the family after baby's delivery and what not!! She was hooked. And they needed somebody with my skills too. I apply and more than a month passes.

Then I have a phone interview for a (software) engineer position. It went well and they wanted me to do an on site interview in Mountain View. I paid for the trip myself, because, they told me, they wouldn't pay such expenses for contract positions (supposed to be contract to hire). The understanding was I did not have to move to Mountain View...that I would work remotely if hired.

Flew to San Jose, checked into a hotel and next day showed up at their impressive headquarters. 6 interviews on site went well. They threw many tech issues that I believe were real design issues in their environment and I produced solutions to more than a few. And the free lunch was really gourmet quality! Free oil change sings in their parking lots were amusing to me, as were the massage chair in the lobby and the guards who seemed to be sunbathing rather than guarding anything! Truly relaxed and whimsical environment, I must say.

I fly back home and a week later get a call from the Google recruiter saying:
"Everybody who talked to you liked you, but sorry we can not move this process forward, because you are not local."

I said: "But you knew that before! Why did you say I could be remote and have me fly out there?"

No apologies. No, that's not in her nature. The response was: "We didn't know you were so senior. Somebody so senior needs to be here locally."

I didn't know how to parse that statement. My being senior was the sticking point?? She was doggedly avoiding having to say a simple "oops, sorry" (which I would have understood, because I know things can change) and kept arguing, in louder and sterner voice, that "I didn't know you were so senior, so you can not be remote". As if what she was saying was not disappointing enough for me, she made sure her cocky and unapologitic attitude made me feel like she just didn't care.

I thanked her and hung up.

Then, slowly, I began to be really upset. It was then that it hit me: if "we liked you" part was really true, why didn't she say "If you can work locally from Mountain View, you have the job???"

I never said I could not be local. I had just asked if I could work remotely and both before and during the interviews they had said yes.

I contacted the recruiter saying " are you saying I have an offer if I work locally from there? What hourly rate would you pay?"

She said yes to the first question. And I am thinking...darn you, if your full time job is to recruit people for a major corporation that wants to grow explosively, but publicly laments about staffing shortage, shouldn't you have the basic wisdom as well as the courtesy to have broken the news to me the first time along these lines so I could decide if I wanted to move to CA to get the position? This is the first of the two moments I talked about above. She just didn't seem to care that I had invested so much in pursuit of this position so far, and that she seemed to delight in "sorry, no deal for you" bombshell, rather than a "we have a deal, only if you...".

3 days pass before she calls me and quotes the hourly rate. It's a good $15 below what I can make locally, and also below the rates I see advertised in SF, San Jose area. Disheartened, I told her that was quite low and that I could not do it. Move to California and then be underpaid? What on earth are they thinking??

After I hung up, my wife talked some sense into my head saying, basically, that longer term this position may be a good deal for us, if I do become permanent. Perhaps. To verify the "if" part in this reasoning...within minutes of hanging up...I contacted the recruiter saying that before deciding, I wanted to talk to the manager I met during the interviews so I could figure out the longer term prospects.

She says she would try to get me in touch with him and another person that interviewed me. Dumb me, I did not get contact info from any of the people that interviewed me and didn't even know the full name of all but two of them.

Days pass before she produces contact info. In the mean time, two emails I fired with guessed email addresses of the manager and the other person bounce back. After 3 days the recruiter is kind enough to give me the email of one. The manager is on a vacation and the person whose email I got is too busy. I keep the recruiter in the loop with the fact that I am waiting to get a response from him. Few more days pass. I am finally able to talk to the guy. He is very nice and helpful, but suggests that I talk to the manager about longer term prospects. I try getting to manager's voicemail thru google's main number (god knows how many days would it take the recruiter to give me the number). It works and I leave a message. Manager is back from vacation, but no callback.

I tell the recruiter I am waiting for a call back. Then the recruiter suddnely tells me that the position has been filled, thank you very much!

This is the second moment I talked about above. During this conversation, she has the nerve to tell me that there was no offer on the table at any time!! Then she goes on to tell me that I had declined the offer...which I did, once, but then I had immediately contacted her saying I wanted to talk to folks there and only then decide!! Then she told me that my skills were not strong enough to work remotely, that's why I was not made an offer. (Remember what she said before? "You are so senior you can not be remote?"). She was just throwing one nonsense after another one at me, so I got upset this time without getting nasty and soon we hung up.

How does the recuiter spend her days at work? An offer has been made to a candidate and you know he is having difficulty trying to talk to the people in the company before making the decision, the least you can do is either help him get in touch with them...or...warn him that time is running out and that he should decide soon else the offer will expire.

But why do that? That would be too nice. That's the kind of thing that other recruiters at other earthly companies would do. Why not do it differently, right? Would it be evil? You are only wasting somebody's time and money and playing with his emotions. That's nothing in the grand scheme of things of the most hyped company in the world today.

But, the sad part for me is I truly think they are more than a hype. I like the company, their vision, and their technology and would have liked to be a part of it all.

The very last conversation with the recruiter, made me feel like she is either delirious or a plain liar. More realistically, she has her head in clouds (too many resumes pass by her every day, all the poor people eager to enter Google) and she just doesn't care about this poor hungry lot. There are so many of them, they are dispensible. How does a major coproration keep such person on its staff??? She says what she wants when she wants. How can you have such a person represent your company to potential hires???

The manager did call me later, said that they had really liked me, even apologized that something had gone wrong with the process. He did defend the whole thing saying every offer is tentative only, which is of course true, but you don't just dump somebody for no reason. At least he had the courtesy to say a simple sorry...but how many more candidates are mistreated/misinformed by Google...or their recruiters? I don't know about all the Google recruiters, but I bet the one I worked with is hurting Google more than helping it.

I would have been a software engineer for them, a very good fit for them, if I can say that without sounding arrogant, because I am the experienced but eccentric kind that I think they wanted. This time of job searching, I have done 4 interviews so far besides Google, and gotten an offer each time. No, I would not have worked anywhere near their search technology, so a position like the one I was targeting is not a super critical one for them...but I can't help but think that many other candidates with skills critical to their core technology/business may be being treated like they are not wanted and are being turned away. If true, they are choking themselves with their own hands. Sad. I wish they realized it. New York Times had an article that alluded to this trait of theirs. Don't they read papers, or do they just not care?

I feel a bit lighter now.

Ok, regarding the interviews, yes they are tough. They grill you with specifics, so you really have to know your stuff.

Skills like C++ and Java were only secondary requirements for me, the main requirement being a different platform (I hesitate to mention it here, it would be too damning to me) so I can not give much specifics that would help most of you out there (plus I have to worry about the Non Disclosure agreement that I signed).

The phone interview was around 40 minutes. It was technical, but wasn't too in-depth. I think the guy sensed I knew my stuff, so he didn't really grill me.

On site interviews lasted almost 4 hours, and were rather grilling. Much of the technical questions they asked me were real design issues they were facing. They use whiteboards often, which was really cool for me, because I like hammering out solutions as I write and draw. They didn't throw any of the (in)famous puzzles that I hear about, nor did they try any kind of personality tests. They just grilled me on the platform that is my main expertise. Please understand that I am a guy with a B.S. degree only (not in Computer Science) but tons of development experience, only some of which is in stuff like Java and C++, so your interviews may be wholly different, especially if it's for a core search technology or a research oriented position.

I had a lot of fun during on-site the interviews. These people really know their stuff.

If you are going for an interview, please take this advice, even if you ignore everything else I have said above: make sure you have a way of getting in touch with the people you interview with, so the recruiter doesn't choke you afterwards. Ask for their cards, or at least get their full name, so that if you need to contact them, you can just call Google's main number and use their dial by name feature.
# September 15, 2005 12:23 AM

Jeff said:

I do remember those days. I think it was that year that I really got hooked on volleyball. The '92 team was fun as well. These days, it's really the womens' teams, indoor and beach, that are most exciting to watch. Certainly the rule changes have helped the sport in general.

I actually run a volleyball site (http://www.volleybuzz.com/), but sadly, the volleyball community sucks at being online.
# September 20, 2005 9:38 PM

Jason Salas said:

Thanks Jeff! I've been to your site before but I never knew that was you! I subscribed to your RSS feeds. :)
# September 21, 2005 12:40 AM

Eric said:

Exactly what are the cable industry concerns?
# September 21, 2005 11:25 AM

Chris Martin said:

That's pretty schnazzy!!!
# September 22, 2005 8:14 PM

bilbo said:

lol! I was thinking the same thing. I'll wait for the hard copy. Even the academic paper that Sergey Brin and Lawrence Page wrote defining Google is freely available and this guy wants $180?

http://www-db.stanford.edu/~backrub/google.html
# September 23, 2005 11:45 AM

senkwe said:

What exactly is so innovative about Google? I keep hearing this but keep drawing a blank when I try to think of something innovative that Google is doing.
# September 23, 2005 12:59 PM

Edwin said:

What Google has been doing is making use of traditional technologies in order to do the same traditional applications but in a different and maybe more efficient way. But can this be called 'innovation'?
# September 23, 2005 1:16 PM

Ron Shelton said:

In my opinion, it's a system that works. Imagine the effects on the economy if, once a company grew large enough, it became impossible to compete against it.

Anti-trust laws would be the only thing available to keep things in check, but those laws don't prevent the natural advantages of being a large company such as being able to dump huge amounts of capital and resources into something that a smaller company cannot. And the enforcement of those laws are left up to the political sway of the government at the time. Over time, large companies would far overshadow small business and then you could forget about innovation from either side of the fence. The stock market would dry up for the lack of any growth companies. It would be a mess.

These kind of "dilemmas" keep the economy moving.
# September 23, 2005 2:50 PM

Jason Salas said:

Hi senkwe/Edwin,

I see the real "innovation" goes beyond the technologies upon which its products are based. You have to look deeper to appreciate how dominant the company is already becoming.

The truly impressive and progressive thing Google is doing is being able to think as big as it is, being able to mesh together all of the products it plans to release, has already rolled out and plans to introduce over the next 2 years. It's taking on giants like Microsoft, Sun, IBM, AT&T, MCI - all at the same time, and expecting to realistically be dominant amongst them after only being in existence for 7 years. No other American business has been that bold before.

If widely-speculated rumors have any credence to them, Google's plans to build a nationwide WiFi network delivering free Internet access, an operating system, multimedia management, a productivity suite, etc. When last has a new kid on the block tried to take on that much so soon?

In my mind, that's innovative business. :)

# September 23, 2005 6:38 PM

Jason Salas said:

Hi Ron,

Good thoughts. I find it to be a natural system that will allow things like this...part market-driven, part regulatory, part behavioral.
# September 23, 2005 6:45 PM

Trevor said:

What I think is just as important is the tracking they can get as an ISP. They can track every page you visit, not just the search results you click on.
# September 23, 2005 7:03 PM

mike said:

Not exactly an apples-applies comparison, of course, but as you probably know, you can get 80 years' worth of New Yorkers -- a weekly magazine, so do the math -- for $100 on DVD. And heck, the OED, the most comprehensive dictionary ever published (150 years in the making!) is only $295.

But the market will determine the value of the book. If it's too pricey, people won't buy it ...
# September 23, 2005 7:13 PM

Edwin said:

well, perhaps Google is on the right way... http://news.com.com/2100-1012_3-5877197.html
# September 24, 2005 2:31 AM

reader said:

B. Gates: "Google, because they are in the honeymoon phase, people think that they do all things at all times in all ways." http://news.com.com/Gates+on+Google+What%2C+me+worry/2008-1082_3-5863514.html?tag=nl
# September 24, 2005 2:43 AM

stop giving google ideas said:

stop giving google ideas,strart ur own compnnay mr jason
# September 24, 2005 6:18 AM

Jason Salas said:

Hmmm...the investigative journalist in me is starting to sniff out an emotion from apparent Microsoft advocates. The anonymous nature of the above and several other comments (see: http://weblogs.asp.net/jasonsalas/archive/2005/09/24/425858.aspx#FeedBack) posted imply a sense of fear.

Interesting...I gotta get my hands on a copy of that MS memo: http://news.com.com/2100-1012_3-5877197.html
# September 24, 2005 7:28 AM

Architect said:

Architect: Hello, Jason.

Jason: Who are you?

Architect: I am the Architect.I created MSN Search I've been waiting for you.You have many questions,
and though the process has altered your consciousness,you remain irrevocably human.
Ergo some of my answers you will understand, and some of them you will not.
Concordantly, while your first question may be the most pertinent, you may or may
not realize it is also the most irrelevant.

Jason: What if Google gets into the developer tool market?

Architect: Google the sum of a remainder of an unbalanced equation inherent to the programming
of MSN Search.Google is eventuality of an anomaly, which, despite our sincerest efforts,we have
been unable to eliminate from what is otherwise a non existant market apart from a business
plan called Adsense that Google came up with. While it remains a burden assiduously avoided, it is not unexpected, and thus not beyonda measure of control. Which has led you, inexorably...to post more about
Google and become obssessed with the Blue,Red,Yellow and Green rather than the Orange,Green,Blue,Yellow
Pills.

Jason: You haven't answered my question.

Architect: Quite right. Interesting. That was quicker than the others.

TV Jasons: Others? How many others? What others? Answer my question!

Architect: Microsoft is older than you know. I prefer counting from the emergence of one integral Windows to
the emergence of the next, in which case this is the 6th version(Vista).

TV Jasons: 6`One's before ? 5 4 3 2 They all crashed!

Jason: There are only two possible explanations, either no one told me, or no one knows.

Architect: Precisely. As you are undoubtedly gathering, the Google is systemic - creating fluctuations
in even the most simplistic equations.

Jason: How Google is able to innovate and why Microsoft can't keep up?

Architect: The first MSN Search I designed was quite naturally perfect, it was a work of art - flawless, sublime.
A triumph equalled only by its monumental failure. The inevitability of its doom is apparent to
us now as a consequence of the imperfection inherent in every human being. Thus, we redesigned it
based on Google to more accurately reflect the varying grotesqueries of Search. However,
We were again frustrated by failure since we ran it on Windows.Bt have since come to understand that the answer eluded us because it required a better undertanding of clustering and diffential data mining algorithims or perhaps we needed to hire more PHD people who wore contact lenses and bring there dogs to work ??? than Google.Thus the answer was stumbled upon by another - an intuitive program,initially created to investigate certain aspects of the Windows. If I am the father of the MSN Search, she would undoubtedly be its mother.

Jason: Codename Z???

Architect: Yes Codename Z. As I was saying, she stumbled upon a solution whereby nearly 99% of all of the
market is already ours,given a choice, even if Google were only aware of the choice at a near
unconscious level. While this answer functioned, it was obviously fundamentally flawed, thus creating the otherwise contradictory systemic anomaly (Google Desktop Search), that if left unchecked might threaten the
system itself due to crappy Indexing and Privacy concerns. Ergo those that refused Google, while a minority, if unchecked, would constitute an escalating probablility of disaster.

Jason: This is about the World Dominion.

Architect: We once proposed to buy Google,but Google declined,but we will try again,we will keep buying like
Google is buying and plastering its name over what it brought.We will buy till one day You will have
MS Oracle.

Jason: Bullshit.

TV Jasons: Bullshit!

Architect: Denial is the most predictable of all human responses, but rest assured,we will be loosing again
thanks to shitty releases VS2005 etc. and betas.Once the next version of windows gets released
everthing will be screwed since we will be decoupling Avalon and WinFS.Rest assured we really dont have a choice but to buy more...


Jason: I will be posting more about Google than you think.

Architect: We won't.
# September 24, 2005 1:41 PM

Karl said:

Shameless plug for my new article about Ajax and Ajax.NET which also does a good job of defining what Ajax is in a hands-on manner.

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/ASPNetSpicedAjax.asp
# September 24, 2005 1:44 PM

Jason Salas said:

Well, it might be me. I tried again LATE last night and it worked. Typical Guam bandwidth. :(
# September 25, 2005 6:30 PM

bart said:

I was thinking the same too...


At 50 bucks i would have buy it....but 180$ is fucking too expensive !!

I will wait for a torrent !
# September 25, 2005 11:45 PM

Thomas Strohmeyer said:

Jason, I'm just curious: How many rss feeds are you subscribed to in your newsreader? And what is your newsreader? I've been using Bloglines for a couple years now, I love it.
# September 26, 2005 2:38 AM

Jason Salas said:

Hi Thomas,

I generally subscribe to a lot of feeds for things from sports, software development, Flickr photostreams, rumorville, blogs, etc.

I use LiteFeeds as my RSS aggregator (www.litefeeds.com), because it's alos got a mobile component that lets me read subscribed feeds on my mobile phone (http://weblogs.asp.net/jasonsalas/archive/2005/08/04/421494.aspx). I did a podcast with the creator of LiteFeeds a couple of months ago and he explained how he built it and the importance of mobility in blogging apps(http://weblogs.asp.net/jasonsalas/archive/2005/08/06/421734.aspx).
# September 26, 2005 2:55 AM

Jamie said:

Is that not kinda like saying "Is a car still a car without aircon?" or "Is a laptop still a laptop without a DVD burner?"?

While RSS is a nice to have on a blog, a lot of people run blogs and don't have much technical knowledge. By definition a lot of sites without RSS are still blogs - maybe one day they will all conform to some standard though! :o)
# September 26, 2005 5:11 AM

Thomas Strohmeyer said:

Litefeeds huh? Looks interesting, but I don't do any browsing on my mobile phone.

I will admit, I enjoy several blogs that lack a RSS feed, but I don't tend to visit them very often, at least not like the feeds I keep track of in bloglines. They just kind of sink below my radar.
# September 26, 2005 5:36 AM

Ashutosh Nilkanth said:

Valid thought Jason. On a similar note, last week I built an experimental web-app that automatically converts a web page into a RSS feed - FeedTier ( http://feedtier.somee.com ). It just might bridge the gap.
# September 26, 2005 10:22 AM

Eric Newton said:

Jason, use the @ string literal in C#, only thing you have to escape are double quotes:

sb.Append(@"<script type=\"text/javascript\">
//<![CDATA[
if(GBrowserIsCompatible()) {
function ShowMap() {
var map = new GMap(document.getElementById(\"map\"));

// DEFAULT LOCATION
var point = new GPoint(-85.144740, 41.092104)
map.addControl(new GLargeMapControl());
map.addControl(new GMapTypeControl());
map.centerAndZoom(point,2);

// ADD PUSHPIN
var edo = new GPoint(-85.144740, 41.092104);
var marker = new GMarker(point);
map.addOverlay(marker);

// ADD LISTENER EVENT TO HANDLE --CLICK-- EVENT
GEvent.addListener(marker,"click",function() {
marker.openInfoWindowHtml(\"<b>Microsoft</b><br/><font size='2'>1 Microsoft Way</font><br/><font size='1'>Redmond, 98052</font>\");
});}
}

//]]>
</script>");

compiler will include \n's and \t's, but its javascript... who's actually reading it anyways? ;)
# September 26, 2005 3:47 PM

Eric Newton said:

whoops forgot to escape "click"
# September 26, 2005 3:47 PM

Jason Salas said:

One thing I forgot to mention (maybe I'll blog about this separately) is that the key feature of this hack is that it allows a user to enter new locations by address, which are stored in a database, with default NULL values for the latitude and longitude of the location.

When a dynamic map is requested, if the LAT and LONG data don't exist, the page makes a SOAP call via a ServiceObjects.com geocoding web service and returns the appropriate coordinates, and then updates the database.

This is essentially a .NET implementation of an ASP 3.0 version of this process by Wayne Lambright (http://sfsurvey.com/gmaps/default.asp).
# September 26, 2005 6:48 PM

Jason Salas said:

The big advantage to my ASP.NET sample over the ASP 3.0 sample is that the idiosyncracies and parsing headaches of making a remote SOAP call are all factored out.
# September 26, 2005 7:06 PM

toby said:

The book is priced out of your league on purpose. If you had read the page:

"Written for business readers, especially senior executives of mid to large-sized, knowledge-based corporations..."

This means its an executive brief. Here's how these things go: an executive sees this, wants it, expenses it, has someone else read it and then report on what it said. The book is targeted at people who are either spending someone else's money or have so much that it doesn't matter.

Actually, this is a pretty good price for something like this. Publications of this nature are usually more expensive. You should be thankful that they are not better known or you would be totally priced out of even hearing about it (Gartner) ;-)
# September 27, 2005 5:26 PM

Jared said:

Jason,

You might want to check out CommunityWalk (www.communitywalk.com). Although it is in its early stages it's already pretty easy to make maps with photos, direction, comments, etc. There's a lot more to come as well :)
# September 28, 2005 1:28 PM

Jason Salas said:

That's pretty slick, Jared! Good job!
# September 28, 2005 4:24 PM

Glenn from Vallejo said:

I use RSS Bandit to read my usual suspect blogs and my must read blogs - like Jason's blog ;-)on LiteFeeds to read from my BlackBerry. I am always saddened/furstrated when a blog I like does not have an RSS feed and only can be read from my browser. Maybe I'm suffering from techno snobbery and I need to get over it, but it's great just to fire up my RSS aggregator and read from one spot....Just my "phity cents.."

# September 28, 2005 4:40 PM

LIke said:

I like Google sitemaps
# September 29, 2005 4:46 AM

jayson knight said:

Still caught up on the whole PDC hotties post? :-D
# September 29, 2005 4:55 AM

Jason Salas said:

Hey JK,

I hadn't seen it but I saw a ton of links off og Google, and this is impressive: http://www.flickr.com/photos/tags/boothbabes/
# September 29, 2005 5:15 AM

Peter Lombard said:

I hear you Jason, where's the love fo GUAM??? Hehe I check almost every day, can't wait...
# September 29, 2005 9:36 AM

mike said:

Dude, what else was http://amihotornot.com/? :-)
# September 30, 2005 10:14 AM

Jason Salas said:

Wow...I just heard in a podcast interview with Adrian (http://www.professordevigal.org/blog_in/archives/000674.html) that he's not tapping a state-run database of criume data directly...he's doing nightly screen scrapes of the Chicago police's site. That's intense!

(Our local PD still doesn't have such resources at the moment).
# September 30, 2005 11:17 PM

Jason Salas said:

*UPDATE*

The good folks at Blogniscient added RSS feeds a couple of hours after I posted: http://weblogs.asp.net/jasonsalas/archive/2005/10/03/426395.aspx

Yeah!
# October 3, 2005 1:12 AM

Jeroen van den Bos said:

Actually, I thought it was a bunch of incoherent buzzword-dropping. It appears that everything from exposing an API to blogging is now suddenly Web 2.0. Usually vagueness like that kills the usefulness of such a term, just like it does with SOA (by now, it's totally undefinable).
# October 3, 2005 4:12 AM

Satish Amin said:

Yea, what a load of crap.
# October 3, 2005 10:52 AM

Joel Ross said:

It's a good thing you like the "groupie blogs" - that's mostly what RCW is!
# October 3, 2005 5:38 PM

Bill from Boston said:

You know, good for Microsoft for going ahead and accepting the "pod" vernacular instead of trying to MS-ize it by calling it "blogcasting" or "Wimmiecasts", or something similar. You know from my previous emails and posts that I was expecting something like that, accompanied by the usual confusion when new terms are created unnecessarily.

I hope this is a sign of things to come. There are better things to spend energy on than trying to coin your own name for an existing process.
# October 3, 2005 8:13 PM

Jason Salas said:

The audio is pretty low in the beginning (bad tape), but it gets better. Enjoy!

http://www.kuam.com/sports/jocktalktv/jocktalk.wax
# October 3, 2005 9:23 PM

Kent Sharkey said:

Seem to be plenty of errors on the second one at least:
http://feedvalidator.org/check.cgi?url=http%3A%2F%2Fwww.fantasyfootballblog.net%2FpxcSimplePost%2Frss.xml

Not sure about the first one. it looks clean
# October 4, 2005 12:08 AM

Jason Salas said:

Yeah...the first one works now...the second (which is the better one) has all sorts of errors.
# October 4, 2005 12:14 AM

Jason said:

Or...you could use this script....
http://www.xs4all.nl/~egbg/counterscript.html

LOL
# October 4, 2005 11:01 AM

AndrewSeven said:

When I am really annoyed:

I Say "Can y0u just hold on a minute".
I put the phone down on the counter and go back to whatever I had been doing.

When the phone starts to make that nasty "off the hook" noise, I go back and hang it up.
# October 4, 2005 12:52 PM

Deia Roberts said:

I am trying to understand the plethora of blogs I read. I am new to this arena. Can someone explain what is podcasting and v-logging? I agree short can be sweeter.
# October 4, 2005 5:06 PM

Jeremy Pepper said:

Short blog posts are usually for those that are not creative writers and have nothing to bring to the conversation.

Or, people who think blogs are just link farms with no opinions.

I go with long, because I can write and present an argument. That works for me. For others, it does not work as well, as you'll notice by their inability to respond to comments or criticisms.
# October 4, 2005 6:02 PM

John Walker said:

Jason,

If you have a Microsoft Passport account, you can sign in to Start.com and it will roam with you to whatever PC you're at just like Google's.

Just click the "Sign In" link at the top-right of the page.
# October 6, 2005 8:36 PM

Jason Salas said:

Hi John,

I believe this feature used to be included with v.3 (http://www.start.com/3), so maybe it's permanent now. :)
# October 6, 2005 9:02 PM

John Walker said:

Jason,

Yep, you're correct...here's their blog post about it....

http://spaces.msn.com/members/startcom/Blog/cns!1pTNqgeSRxwfEFK-lp62aiFQ!220.entry
# October 7, 2005 2:12 AM

Deepesh Shah said:

Hi Jason,

You can sign in with your Passport account and it does remember your settings only problem with www.start.com I had was after deleting one column I was not able to add back to it. apart from that it works like a dream, I like the interface of start.com a bit better then the google.com/ig page.
Also They have now intorduced a Language link where you can set the language you want it to be displayed.

Deepesh
# October 7, 2005 7:04 AM

Marius Cristian Constantin said:

CommunityServer is good enough for me, and pretty easy to install.
# October 7, 2005 8:01 AM

Jason Salas said:

Added note: not only is USC ranked 31 and 2-time defending national champions in the game...they also arguably have the best aesthetic schedule, with away games in Honolulu, South Bend, Tempe, and Eugene.

All stadiums are beautifully rendered, so the Trojans are debatably the best travelling team to play as.
# October 7, 2005 8:06 AM

Jason Salas said:

Hi Marius,

CS is impresive and has gotten better since the first few releases, but it's a bit to-heavy for my own personal needs (just me blogging a few times a day).
# October 7, 2005 8:08 AM

Keith Ellis said:

I would love to hear more abou tthe choice you make as for blogging software. I looked into CS myself when v1.0 was released and had similar feelings - too heavy for my needs.

I have a feeling there's quite the plethora of .net guys and gals out there who have written their own publishing tools and would love more info

maybe even a podcast lol

thanks, keith
# October 7, 2005 9:55 AM

jayson knight said:

I too started out w/ that sample MSDN app about 2 years ago...was a great learning experience, but I ended up ditching it within a couple of months and moved to .Text (and subsequently CS) because maintaining it and trying to keep up w/ all the new blogging features to add to it was a nightmare.

If you've read my blog for more than 2 seconds, you know I'm gonna pitch CS pretty hard...everyone's first reaction is that it's "too heavy". You can disable the applications you don't need (in my case I just have the blogs and photos apps running), and you can also set it up in a single user mode (like mine). 1.2 is going to be a HUGE release, I have a live demo of the bits (not yet publicly available) running...if you'd like to check it out, see this post: http://jaysonknight.com/blog/archive/2005/10/05/2207.aspx.

Though not official yet, 1.2 will also run on ASP.NET 2.0, and will support file attachments on blogs (podcasts included of course). I have not used any of the other packages you mentioned so I can't compare them, but the mere fact that CS is written in C# and is open source was good enough for me :-). Regardless, keep us posted, and congrats!
# October 7, 2005 11:06 AM

Jeff said:

I remember picking up that game in the bargain bin years ago. Barely played it.

I got the Gamecube beach game (Beach Spikers?) two or three years ago and it wasn't bad. Very good arcade-like controls, so people could pick it up quickly.

The tough thing about the indoor game is a control scheme that makes sense. I mean, I have some ideas of what I'd like to see, but as a coach with very specific systems (swing offense, rover defense), it would probably drive me crazy to have to live in someone else's world! Volleyball can be too technical to implement as a game.
# October 7, 2005 1:48 PM

Jason Salas said:

Hi Jeff,

I'll admit, D&S VBall took awhile to train on before being able to play at a very high level, but once you got the hang of the new controls and leveraged the buttons, you could really do some cool things with tandems, dinks, and placed hits. The only other game where you had that much real-world control, IMHO, was Kings of the Beach, which was good.

I agree, capturing the quick set or backrow attack is hard to do, but if we can come up with the complex AI engines for football, baseball and soccer, certainly it's possible.

I come from the old skool of indoor using VERY complex offenses, which is why I dug the game (pun intended). The one criticism I had about D&S VBall was tgat the players would only hit in their rotation positions, so you couldn't have a guy swing from the middle to the outside, or vice-versa for new plays.
# October 7, 2005 3:41 PM

Jason Salas said:

Thans Jayson...does CS support uploading of images from a cell phone? That's one thing that's leading me more towards Blogger. :)
# October 7, 2005 3:43 PM

Jon Galloway said:

Oops. I should have read your whole writeup before importing my OPML. Wonder if it will handle 1750 feeds?
# October 7, 2005 7:02 PM

Jason Salas said:

Hi Jon,

Good grief! There's also noted trouble with 150 feeds: http://www.flickr.com/photos/su1droot/50299167/
# October 7, 2005 7:27 PM

Jeff said:

Yeah, I run a swing with inside-out approaches and put my hitters all over the place, where ever I can get the best match up or fastest attack. Even with average kids, it absolutely stuns the other team and they can't react. Good stuff.
# October 8, 2005 12:44 AM

jayson knight said:

See my latest post here: http://jaysonknight.com/blog/archive/2005/10/08/2218.aspx (be sure to visit Rob's post that I linked to, along with the corresponding thread over at CS.org).

Again can't "officially" say too much (can't promise too much at this point), but email attachments *should* be automatically attached to corresponding posts in the final release (blogs, gallery, forums, et al). It's pretty exciting actually :-).
# October 8, 2005 4:07 AM

Erik Porter said:

"Reader also employs algorithms that learn your content preferences and prioritizes content accordingly."

If this is actually true, I'd switch in a heartbeat. There is just too much great stuff to read out there anymore and finding the time to finger through all of it is horrible. A feature like prioritizing my feeds for me (or by how I tell it) would be the single best feature ever written, IMHO. I'd actually read more blogs!
# October 8, 2005 7:37 PM

Ryan said:

I seemed to me more that there were all concepts for the same icon, not different states for the RSS feed icon. That would explain why no one can figure out what state "activity around the feed" really would mean.
# October 8, 2005 9:23 PM

Scott Allen said:

Something does seem wrong at this point, though. I search for blogs on 'asp.net' and get 0 results. Google should know about pages that feature ASP.NET content and have an RSS link.
# October 9, 2005 12:58 AM

Jason Salas said:

Maybe try searching on 'weblogs.asp.net'? When I do searches against my own blog with Google Search, I use 'site:weblogs.asp.net/jasonsalas'
# October 9, 2005 1:13 AM

Erik Porter said:

Good tips, thanks for those! :)
# October 9, 2005 2:16 AM

Jason Salas said:

Funny you bring up complex plays...one of the weirdest ways to really catch a human opponent off-guard in D&S VBall was to run a play were the each outside hitter would jump, as if to quick attack, and then the middle hitter would be set a high "3" set.

It would never work in real life, of course, but this was a play that if used sparingly, would catch someone napping and deliver a monster hit.
# October 9, 2005 4:52 AM

TrackBack said:

RossCode.com - Blogniscient
# October 9, 2005 7:13 AM

TrackBack said:

RossCode.com - Blogniscient
# October 9, 2005 7:13 AM

Jason Salas said:

Awww crap...we got booted from the AP's Top25 again: http://cbs.sportsline.com/collegefootball/story/8945317/rss Remove Comment 427073
# October 9, 2005 4:53 PM

mike said:

I'd certainly be curious to hear of an industry that managed to self-police, by which I presume you mean without the efforts of a "self-policing" entity like the Bar Association or AMA. I thought that one of the benefits of capitalism was precisely that *anyone* could start a business, and let the market sort things out. (?)
# October 9, 2005 9:46 PM

Plip said:

I'm sharing your pain ... have you found a way to leave comments without having to open the origonal posts yet?
# October 9, 2005 11:50 PM

Jason Salas said:

Hi Plip,

No...not yet. Actually, I'd think that adding comments would be too blogging app-specific (and there are only a few of the open APIs available that are widely supported outside of the program like Blogger, WordPress, etc.), so the safe bet would be just to visit the source page. It's a pain, but it works.
# October 10, 2005 12:17 AM

Jason Salas said:

Nathan posted some good, specific feedback about why he's not getting into the program: http://google.blognewschannel.com/index.php/archives/2005/10/07/google-releases-rss-reader/

He cites a main reason as "it's not BlogLines", which is what I'm hearing a lot of. I guess I'm different in being a little more tolerant in that I've never used BlogLines as an aggregator, so I've got no such frame of reference. I'm just taking this as it is.
# October 10, 2005 12:33 AM

Jason Salas said:

Another interesting post with specifics about what's (not) working from The Unofficial Google Blog: http://google.weblogsinc.com/entry/1234000663062331/
# October 10, 2005 12:37 AM

Jason Salas said:

One other thing...I for some weird reason can't get one Flickr photostream to properly unsubscribe...I've tried and get a confirmation message saying I've released it, but it keeps showing up.
# October 10, 2005 1:02 AM

zach said:

hey-- zach from CSN here. thanks for the write up on our new chicago sports podcast network... The Cubs were not mentioned because we already have a Cubs podcast, which has been up and running for the entire 2005 season at www.cubscast.com. We are expanding to cover the rest of the major Chicago teams.

Thanks!
# October 10, 2005 5:36 PM

Jason Salas said:

Cool Zach...thanks for the info!
# October 10, 2005 9:32 PM

anon said:

Bet you can't wait for Office 12 and the new XML file formats. This task would be dramatically simpler then.
# October 11, 2005 12:17 AM

Jason Salas said:

Perhaps. I'd still need to programmatically define an XmlDocument and read from it, which would be nice, but I'm sure I can do the same thing now. Any hints?
# October 11, 2005 12:40 AM

dario said:

I absolutely agree with you, Mr. Diller is a very intelligent guy and he may be right that only few people in the world have both talent and the feel for the lowest common denominator , combination necessary for creation of a product for the the bottom line influenced conglomerates but that does not mean that individuals can not express their artistic vision in a better and more of a professional way because they are not constrained by technological shortcomings (anymore) and they do not have barry diller breathing down their necks and yelling "you think that more than 12 people will watch/listen that,we need at leat a million or more"
# October 11, 2005 5:17 PM

jda said:

innovative

adj 1: ahead of the times 2: being or producing something like nothing done or experienced or created before

ahead of the times? no, with the times.
like nothing done or experienced or created before? nope, usually (if not always) take ideas that come from smaller companies and brand them Google - please tell me one thing that Google was first to do.
# October 14, 2005 3:45 PM

Jason Salas said:

Hi jda,

"take ideas that come from smaller companies and brand them Google"...kind of reminds you of another well-known company in high-tech, huh? :)

Google's true innovation is being able to capitalize on innovativeness itself, redefining the term. You're right in that most products and services it rolls out aren't things that haven't existed before, but it's applying new concepts in radical ways and creating new value. That would support the second definition.

Operationally, Google's got a custom version of Linux it uses internally, which is unique, but not completely original. It bases its server rack methodology on cheap machines running high-end software, so that individual servers can be easily replaced and auto-configured without dramatic downtime. That's something no other companies really have.

It's created its entire business platform on a whole suite of web-based services, supported almost primarily by online advertising as a revenue source - something no other company has been able to do.

That, in my book, is innovative.
# October 14, 2005 5:39 PM

The Monkey said:

Just to split hairs, I started a site called Ebay Hotties in December 2004, a full eight months before this new "Ebay Hotties" site was founded. Copycats abound...
# October 24, 2005 5:46 PM

ahem said:

ahem,jason the regular weblogs.asp.net refresh junkies seem to be missing some of your regular musings,ha must be the weather there.Any way hope you stick around here too.Well i suggest you try wordpress ...blahh....
# November 1, 2005 12:45 PM

Jeff said:

Agreed that appendix B is a big deal. I'm only a couple chapeters in otherwise, but so far I like what the book has to say.
# November 16, 2005 1:45 PM

hoyaoknow said:

引言
让我们花点时间来看一下网站上的一些 URL。您是否发现一些类似于 http://yoursite.com/info/dispEmployeeInfo.aspx?EmpID=459-099
# June 26, 2006 11:22 PM

cybermat said:

URL 重写是截取传入 Web 请求并自动将请求重定向到其他资源的过程。执行 URL 重写时,通常会检查被请求的 URL,并基于 URL 的值将请求重定向到其他 URL。例如,在进行网站重组而将 /people/ 目录下的所有网页移动到 /info/employees/ 目录中时,您可能希望使用 URL 重写来检查 Web 请求是否指向了 /people/ 目录中的文件。如果请求指向 /people/ 目录中的文件,您可能希望自动将请求重定向到 /info/employees/ 目录中的同一文件

# August 11, 2006 2:18 AM

Weblog said:

# September 26, 2006 5:38 PM

Kirk Allen Evans' Blog said:

Wally is at it again , and starting up our old rivalry a bit early this year. This song goes out to Wally...

# October 3, 2006 2:40 PM

Weblog said:

# October 3, 2006 6:19 PM

Weblog said:

I was listening to Jason's Digital Pontification last night, and it kinda got me thinking that it might...

# October 4, 2006 3:52 PM

Weblog said:

Jason's post about blogs, and his comment about the Internet being the place for inexpensive advertising,...

# October 9, 2006 4:03 PM

Weblog said:

There seems to be this swarm of discussion going around about Ajax this and Ajax that. What do...

# October 9, 2006 4:20 PM

Weblog said:

# October 9, 2006 4:23 PM

Weblog said:

# October 9, 2006 5:59 PM

Aliaksei said:

Rob, recruiters never tell you the truth about why you did not match. They just tell you that you don't match. Don't try to argue, just accept and move forward.

# May 16, 2007 2:23 PM

gloria said:

Hi, i'm a girl form Spain and i'm doing a work about Eric Sato, can you help me??

please, for contact with me use my e-mail: gloria_grefusa@hotmail.com

       thanks

# May 18, 2007 7:23 AM

r r sux said:

that really really sux

# May 23, 2007 5:38 PM

Anirban Pal said:

Some real good explanation and real geeky handling of the topics of interest, with a design flavour added. Not recommneded for beginners...but excellent for people who have some server-side and web programming expereince. Caution(4 people with an  appetite for sleep): At times I felt I was reading an epic.

# May 24, 2007 10:53 AM

Neil Williams said:

You might also be interested in a brand new start page available called Funky Homepage. It's comprised mainly of Google gadgets (as well as Gadgets from other sources), live news feeds (with your choice of news provider), daily Bushisms, daily jokes, horoscopes, videos, weather (up to 5 locations), interactive calendar, Google calendar viewer (for up to 5 Google calendars), comic strips and lots more besides. It also lets you choose your own search engine, colour scheme, etc.

Unlike many of the other personalised start pages available, there's no need to create an account and it's all already set up for you, with the most popular gadgets organised by category and sub-category. So there's virtually no setting-up work required by the user, making it ideal for those (like me) who can't be bothered to do all the work of setting up their own page. More advanced (and less lazy) users can choose to add their own Google gadgets and RSS feeds, but most people just use the gadgets and tools provided.

It's free to use and you can check it out at http://www.funkyhomepage.com

# May 28, 2007 1:49 PM

Linda Beals said:

I'm going crazy!! I bought a Dell Axim about a year ago. I believe it worked fine up until lately. I'm a 64 year old grandma that's working on genealogy and have pocket genealogist v3 installed. I just tired to connect to the internet on my PDA and when I click on Internet Exployer I get file://SD%20Card\WMPInfo.xml, there a drop down menu and choices there are http://www.google.com/gmm, www.google.com/gmm and the above file. Where can I find help?

# May 31, 2007 5:54 PM

BRIAN said:

HAS THE STATUE ALWAYS BEEN AT ITS CURRENT LOCATION?

# June 2, 2007 11:30 AM

Sardara said:

Yes yes, googly is awesome naa

# June 3, 2007 5:39 PM

jason said:

who da hell would kill the worlds greates riff gutarist i knw if dat dude was nt dead i would hang him and chop of is head in front of millions of people !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! and he changed the word metal dime rip m8

# June 5, 2007 9:32 AM

Adil said:

Richard your link is not working please check !

# June 6, 2007 10:53 AM

Rich said:

Thanks Jason, great advice and well explained. Cheers!

# June 6, 2007 1:03 PM

free .net 2.0 ebooks said:

www.free-ebooks-download.org for  free .net 2.0 ebooks

# June 11, 2007 9:02 AM

Niki Buli said:

As far i know, the shortest url redirection service is http://dn.vc and it feature like masking and keyword.

# June 12, 2007 1:57 PM

Giovannazzo said:

# June 14, 2007 4:09 AM

Maxim said:

Richard and Giovannazzo, does your solution use middleman? I mean does it transfer files through the sever or it's pure p2p variant?

# June 25, 2007 6:16 PM

tarek said:

can you post the code and email me when u have it up. joompinc@gmail.com

# June 27, 2007 9:21 AM

kimbers said:

ive been loving you to long.....otis redding?         i think; just love the song

# July 1, 2007 11:13 AM

SavindraSingh said:

Q:why is a manhole cover round?

????---------------????

Q:how many streetlights are there in New York City?

A:127,856 If you have doubt you can go and count it by ur self..

Q:how do you design the world's perfect toaster?

A: By doing a survay with all the baker in the city where I am going to produce it.

Q:how can we make Word better to lawyers?

A: More the Law, More the Liberty

Less the Law, More the Liberty..

More the crime, world is better for Lawyers

Q:why is XSLT inferior?

A: My god knows?

Q: what type(s) of technology appeal to YOU, and why?

A: Just IT, what else could be..

Q:how would you explain Excel to your grandmother?

A: It is the easiest way invented for purpose of doing your mathematical and statastical work

Q: how would you test whether a pepper dispenser worked?

A: by opening it's unit

Q: suppose two spaces occupy two distinct values.  introduce a third space and have the third assume the value of the first in no more than 3 steps, moving sequentially and not skipping

A: May be you know answer then why are you asking this to me?

Q: assume you have to market a new alarm clock for the deaf.  How do you do it?  (this one's harder than it looks)

A: Using a visual media and showing a vibrating clock in it.

# July 6, 2007 7:17 AM

meme said:

omg.....whats going on.. mee too i cannt move my fingers on my rite hand side..

# July 9, 2007 8:35 PM

Girish Kumar said:

This bit of data is very cool and provides a lot of information.

# July 10, 2007 7:16 AM

billie said:

Can it do the dishes?

# July 13, 2007 12:26 PM

Eire said:

Hi Guys and gals.  I remember the USA team so well. Amazing. Swing blocking. two receiver system.  I ofter sat down with players from my team and we tried to figure out the USA receive rotation and wondered who was where and how they were not overlapping.

Definitely worth a major vote.

Like you said Jeff.  Today there seems to be so much about the womens game and nothing wrong with that either.  If anyone would like to check out our site on world volleyball we would love to hear from you.

Good luck to USA in the future.

Eire

# July 13, 2007 4:13 PM

Mychemchick said:

I dont love you- My chemical Romance

# July 15, 2007 6:23 PM

Shannon said:

What about some Poison???

Something to Believe In

Every Rose has it's Thorn

I Won't Forget You

?¿?¿?¿?¿?¿?¿?

come they are the best band ever.

# July 17, 2007 7:50 PM

Shannon said:

also theres L.A Guns.

Ballad of Jayne.

phil lewis is gorgeous.

# July 17, 2007 7:59 PM

D. Raelrich said:

Neo meets the Architect in the Matrix Reloaded, not the Matrix Revolutions. The Matrix Revolutions was just bad.

# July 25, 2007 1:35 PM

luke said:

hello my name is see above i like beef and tomato soup and chicken.my favourite band is ozzy osbourne,kiss,bob sinclar,ten masked men  

# July 29, 2007 5:29 AM

Charles Shackelford said:

Hello, my name is Charles Shackelford and I recently applied for a position with Google as a Facility Operations Manager.  I am looking for a recruiter that might have an insight on positioning me for an interview.  

Please e-mail me at charles.e.shackelford@pfizer.com or call 636-299-3168

Thank you,

Charles Shackelford

# July 30, 2007 5:05 PM

ABED MALHAS said:

THANK GOD FOR  ALL HIS BLESSINGS

ART  is  GODLY UNIVERSAL LANGUAGE

( CASA  / 59 Countries / 298 Artists & growing )

CASA youngest artist Zeyn Alpay ( 4.5 Years )

www.casaart.org

Please note CASA

IS IN CONTINUOUS DEVELOPMENT & PROGRESS

Please  join us as a Supporter or Artist Donor

Please relay

WELCOME    2   OUR   GROWING   FAMILY

LET US  

Love & Help the less fortunate

Protect the Environment

 Enhance

World Peace - Tolerance - Cooperation

Understanding - Acceptance - Confidence

Recognition - Human Rights - Cultural Enrichment

Global Coherence

DEAR FRIEND

METHOD & MISSION

I -  The addition  of  children in Nobel , Nobel Prize 4 Children

II -    The addition  of  Art Olympic

III -   CASA ( Care And Share Art ) Touring Donated Art World Mission Exhibition

Have an ARTime

Abed Malhas

(  Founder CASA )

ARCHITECT – PAINTER – INVENTOR

Recipient of 9 International Award

• (WIPO (World Intellectual Property Organization) Golden Medal – Switzerland

• King Hussein Officer  Golden Medal of Achievement, Jordan

• King of Belgium Officer Golden Medal, Belgium

• IENA Medal of Achievement, Germany

• INPEX- AWARD, USA

• OMPP Prix de l’Organization Mondial De La Presse Periodique

TEL  JOR :   00 962 6 5815955

             www.casaart.org

Email  : amalhas@batelco.jo

ABED  MALHAS

# August 1, 2007 8:19 AM

JR said:

Lol, interesting post there. Not what I was expecting when i googled out of boredom "Behold, The Ravages of Age" after hearing it on the Simpsons.

# August 11, 2007 2:42 AM

Marie said:

Yngwie Malmsteen - Dreaming-Off the Odyssey album!

# August 12, 2007 3:40 PM

Ben said:

I had an interesting itnerview experience with them. They didn't make me an offer, either, but I enjoyed the experience. <a href="www.philosophicalgeek.com/.../a>

# August 13, 2007 10:27 AM

Keith said:

WOW this blog is still alive.

Does anyone have the acoustic guitar tab of Winger's Miles Away. My search for it brought me here.

I have the mp3 so if you like to trade...

The acoustic version is way cool.

# August 16, 2007 2:09 PM

Texas - Baring Bad News said:

I hope you have visited the Orange Bowl already.  If not you better try and do it soon, this is the last year the Univesity of Miami is going to be playing there.  They are moving stadiums, and no one is sure what the city is going to do with the stadium once they move.  It's sad, the Hurricanes have called that place home for 7 decades.

# August 22, 2007 11:42 AM

Hammerhans said:

In case your still looking for some new stuff maybe trow in some Blue Tears, Dare, Hardline(Hot Cherie man!!!) along with some Return, Bonfire and some other stuff, not at home atm so cant list more or any particuler songs either butr those bands got some really nice stuff.

# August 22, 2007 8:40 PM

alyssa said:

hfghfhghdhgfhfgfhh/';;hrklk mkim jb fgcvbbgh bnjm klm ,klm j nl,kijnujybv ;/hgvlcv.glkoc .fk5lck5fj.,g5kc 5,.g5kc ,fg852154.01212043405275ljk;;'m ,"

:mko'hv ltioggh ouiuyiuiojioi9000--0p-[pklmknnbhbvm ,mkll,m';l]

']''

'

'/'/. ,, mm,nmnnjbhhvgfcdxszdxgvhjujokl;l;l;l;llkljkhgfffgftgbhbhbhhjhjnhjhjnnjhgdfwexfdikdfghjasdfghj-=tyuidfghjJ

# August 30, 2007 5:46 PM

French Girls said:

Will be coming back to see more. Visit this site.

# September 1, 2007 5:49 AM

DrSlony said:

" If you're going to be exporting your podcast MP3 file as mono, there's no reason to keep a track in stereo, so left-click on the track's title, and then select "Split Stereo Track".  This creates two tracks for that clip - one for each channel.  Click on the "X" on the second track to delete it from the timeline, and then click on the title for the clip's remaining track, and

then select "Mono"."

Incorrect. This will just throw out a channel of audio along with all the instruments and sounds that were on it as well.

Say the vocalist is in the center (ie. both left and right channels have the same voice data), guitars dominate the left channel and violins the right. If you do what was written in the article above, you lose either violins or guitars depending on which channel you delete.

The proper way to do this is to just click on Tracks > Stereo to Mono. This way you get retain all instruments/sounds.

# September 2, 2007 10:02 PM

kimberlin said:

i wonder how are we related ^^

# September 5, 2007 9:02 AM

Joe Matthew said:

The most efficient way to learn about this info is to utilize all techniques at your disposal.

# September 5, 2007 9:49 AM

Charles said:

Working at Google is something else. Yes interviewing is the tough part, but the most frustrating thing is working with Project Managers that lack respect and love to throw their weight around. It sucks! believe me, I can't even believe that I am actually admitting that I want to quit because of these over ambitious product managers.

# September 12, 2007 11:02 PM

Niki said:

You mentioned maybe some country??!!  

-Love in the first Degree...Alabama

-She's in love with the boy...Trisha Yearwood

-You've lost that lovin feelin...Long John Baldrey

-Love me like you used too...(George Jones)

-Let's make love...Alabama

-Lovin each day... Ronan Keating (not country)

_I honestly love you...Olivia Newton John

-Love Shack...(I can't remember)

-I'm not in love...10CC

_He don't love you (like I love you)...???

-He stopped lovin her today...George Jones

-My love...Little Texas

-Crazy love...Poco

-Crazy little thing called love...Queen

-Baby Love...Supremes

-Love me tender...Elvis

-Lovin you...Minnie Ripperton

  I think I'll stop now...I've got a million of em...haha!

# September 15, 2007 12:00 AM

neater said:

plane is still on the ground in guam and is no longer in service is sitting on the back part of the airport painted white

# September 15, 2007 11:42 PM

hmm said:

so that's agreed then - Mr. 'uber' is full of it

# September 20, 2007 9:05 AM

kalyn said:

ur post wa exceptional and i got wat i was lookin for

thank u vey much

# September 21, 2007 3:48 AM

Calvin D said:

My favorite movie scene has to be Al Pacino's oscar winning speech on integrity at the end of Scent of a Woman.

www.youtube.com/watch

# September 21, 2007 10:54 PM

free music codes video myspace said:

free music codes video myspace

# September 22, 2007 1:39 PM

charing said:

      wowoweeee............

# September 28, 2007 3:19 AM

Bambarbia said:

I got an interview request from them without applying... I never applied to them... they told they tried to contact me 3 years ago, but I don't remember it... How did they find me? I don't want to work there 'full-time', I am very old for this (career path)...

# October 1, 2007 2:37 PM

Greta C said:

finally some like minded people! I was starting to think I was the only 80's hair band geek left.

How about  Great White - save all your love.

or Damn Yankees - High enough?  Both still great tunes!

you guys rock!

# October 3, 2007 1:51 AM

Sryope said:

hey can anyone give me the design descriptions for pubs?

# October 10, 2007 3:11 PM

jacquie phelan said:

I wonder if your elden nelson is the biker. If so, I want to write him a fan note. help? Me! and then delete this,as it has zero bearing on yr blog

(apologetic grin)

# October 23, 2007 10:34 AM

ryan said:

your proudest sports moments are all biased, they are all regarding americans, filthy american

# October 29, 2007 1:51 AM

Deepak Kumar Vasudevan said:

Just today morning, I had a similar thought about the Do Not Call registry violations and shared a thought over here:

www.codeproject.com/lounge.asp (Subject: Scope of United States Do Not Call Registry ...)

# October 30, 2007 4:00 AM

tunes said:

To access mp3/wma music on a server by WM devices, try to use this software RaidenTunes network music station http://us.raidentunes.com/

# October 31, 2007 12:11 AM

colin mackin said:

this link isn't working anymore! any other links to the acoustic version....

# November 5, 2007 6:35 PM

Bec's Box said:

What about the scene in "Heat" where Al Pacino & Robert De Niro are sitting in a dinner having a battle of wits? GOLD!

# November 8, 2007 9:05 PM

ashkan said:

civil enginieering

# November 11, 2007 8:17 AM

Ivan Atanasov said:

What about viewstate?

# November 13, 2007 8:16 AM

weblordpepe said:

theyve taken the damn link down!!! now i cant update my pda to connect to msn!!!

damnit microsoft!

# November 15, 2007 9:30 AM

Trust No One said:

I didn’t apply for a job position at Google, but a recruiter from them contacted me. I told the recruiter that I wasn’t interested, and that it would be extremely hard to convince me to move away from my current job. I told them that I would not be able to work in certain areas for a while (due to my current position at a competitor), and that I would also demand a good relocation package. Despite all that, the recruiter told me that they would still be interested in a phone screening. I did the phone screening and all their questions made sense: how to optimize certain aspects of Google, like file transfer, etc. I was then asked to interview at their site.

I should say that I’ve talked with 4 interviewers, and 3 of them were nice and polite. I found a little disrespectful that one of them invited someone to join the interview to be “trained”, but that was acceptable. What was not acceptable was the behavior of one of the interviewers. The interviewer asked me a few dumb questions, and I literally decided to joke back, simply answering with enough high-level jargon that I couldn’t be considered wrong, while not giving him any specifics. I know several of the keywords that the guy was looking for in my answers (inverted index, Markov model, etc.). I simply refused to say any of the “keywords”. The interviewer wasn’t able to understand anything without the keywords being said, and from that interview on my interest simply wasn’t there. If what takes to succeed in a Google interview is to memorize a lot of keyword, then I don’t want to work in such company. Worse is that I really detected a little of the “we are the champions” attitude, even coming from people that clearly had no relation whatsoever with Google’s success. That is what was really unacceptable: I know folks that really changed Computer Science history, and are extremely approachable. And here I was, talking with people that could be considered bystanders at Google, and one of them behaving like if the company couldn’t survive without him.

Things then got really bad when an interviewer asked: “Why do you want to work at Google?” You should see the surprise in his face when I told him that I didn’t really apply for a job at Google, but given a very good offer, I would consider working at Google. Yet, this was one of the nice interviewers, and he had nothing to do with the moronic behavior of the previous one. But that was the key moment: I perceived that, when you “just talked with a moron”, some of the attitude sticks to you. Probably I would soon be a moron if working along such people for long. Luckily, that won’t happen.

# November 18, 2007 5:31 PM

zane coghlan said:

u missed the y of totally :P

# November 19, 2007 10:54 AM

prasad said:

One thing is for sure they want picture perfect answers for their questions, which is something that is really hard.

# November 19, 2007 8:22 PM

scot s said:

Thanks for the help all. This sight jogs my memory to make my own compilation. Anyone know of any Elton John songslike funeral for a friend (80's??).

# November 25, 2007 9:17 PM

Ron said:

my father was in WW2 an has told me the germans that were captured on the front lines were saying the word (furchtbar) meaning Terrible the oppisite of (wunderbar) meaning wounderful. The american soldiers could not say the word so they said (foobar) then it was changed again to (fubar) to express their feeling on orders given to them or a particular situation they got into

# November 26, 2007 6:59 AM

ben said:

my cellphone now can't support Internet access.i hope feeds i subscribed can sent to my phone via sms,which most phone support.tia.

# November 27, 2007 3:08 AM

PROFESSOR JIM said:

THE BEST COLLEGE FIGHT SONG USED TO BE NOTRE DAME'S VICTORY MARCH.  

BUT NOW THE BEST COLLEGE FIGHT SONG IS UNDOUBTEDLY MY "NEW UCLA FIGHT SONG", WHICH YOU CAN HEAR FOR FREE BY CALLING 310-772-UCLA, OR BY LOGGING ON TO WWW.MYXERTONES.COM AND SEARCHING FOR UCLA.  THIS, I BELIEVE, WILL ULTIMATELY BE PROCLAIMED AS THE GREATEST FIGHT SONG OF ALL TIME!

# November 28, 2007 4:25 PM

Billy GRIMM said:

Stil to this day if I listen ,watch,or look at a picture of Dime I'm forced in to tears my one true hero died and it sickens me to think that someone could be that mad at some to take their life when they had no clue what was going on...if anyone has seen the VH1 behind the music of Pantera you will under stand and know how much a damn good person Dimebag Darrell was.

RIP Dime the whole world will never forget you....shine on brother!

# December 2, 2007 2:50 AM

Dave c said:

does anyone know who sang this song some of te lyrics were "Let me tell you about the girl I met last night" I must be living in a fantasy world" anybody 80's ballad I believe

# December 7, 2007 10:11 PM

Brad said:

Looks like I came across this about 3 1/2 years too late, but I believe that the movie Takedown deserves an honorable mention.  Considering it is based on one of the greatest hackers/social engineers ever; that being Kevin Mitnick.  While hollywood did manage to "improve" on the original story, much of it is real, and I will take real computer drama over movies like Swordfish or the recent Live Free or Die Hard (that appeal to so many computer illeterates out there) any day.

# January 5, 2008 2:03 AM

Paul Smith said:

Did you ever resolve this?  I'm having the same problem.  I have a developer who is using a 'framework' where he has to construct the raw XML and in the past he's used the sample message, but now he doesn't see inherited members.

regards

# January 7, 2008 8:52 AM

Rusty said:

I also applied for a position with Google around 3rd week of December. It’s a for a non-technical position (Enterprise Customer Support Administrator). Few days later, I received an email with a little “let’s talk about you” questionnaire where you had to explain yourself and answer some questions pertaining to the position. After that I received another email from my recruiter to set up for a phone interview.

I thought heck, for a company that receives more than 3100 Resumes in ONE DAY, I wasn’t doing too shabby. So I had my first round of general phone interview then had another Phone Interview that was focussed more on the position (about 30 mins.) I wasn’t too sure about how I did at the 2nd one, but I received an email within a few mins. They have now invited me for an on site interview at their Mountain View HQ. So far, I haven’t been asked any of those “How many golf balls can fit in a bus” kind of questions. So, now I’m just looking forward to the on site interview and not really worrying about it. If it happens, it happens, if not then well I’ll appreciate the experience of making it there.

So if anyone has any tips, or any recent interviewees, please share your thoughts.

Also, does any know if Google pays “for the airfare/living/transportation” expenses??

# January 10, 2008 8:48 PM

Amanda said:

what about

Helix. - Good to the Last Drop

Trixter - Surrender

Tuff - I hate Kissing You Goodbye

Bad English - When I see You Smile

# January 13, 2008 12:14 AM

xena said:

Manholes are round so that the covers don't fall in.  If a manhole were any other shape, the cover could fall through.

# January 16, 2008 6:51 PM

Vikash Anand said:

Sir,

I want to read contant of word document programatically throught asp.net with c# and save this contant to sql server in varchar format.

ok bye

# January 22, 2008 3:40 AM

Name (required) said:

Comments (required) *

# January 22, 2008 9:15 AM

curious said:

Rusty,

Do you mind sharing how your on-site interview went?  

# January 22, 2008 12:33 PM

Gary said:

how long should I wait before I give up? I submitted my resume a week ago.

# January 24, 2008 1:03 PM

curious said:

Ditto.  Maybe HR's overloaded since they just had a huge grand opening party/recruiting event in Seattle last week?

# January 25, 2008 1:17 PM

dendra said:

the song is by survivor its high on you

another good song the search is over by survivor

# January 29, 2008 12:15 AM

best card credit offer secured best secured credit card best card credit secured said:

Well advance cash line loan advance card cash credit

# January 29, 2008 10:31 AM

Gary said:

hope i hear something....i sent a follow up email to them but still havent  heard anything..

# January 30, 2008 12:13 AM

t�l�chargement sonneries said:

Change arabische klingelt�ne gratis klingelt�ne nokia

# January 30, 2008 3:06 AM

Angie said:

What about

Til Tuesday-Voices Carry

Nothin' at all-Heart

Stranded-Heart

So Alive-Love and Rockets

Still of the night-Whitesnake

The angel song-Great White

Heaven on our side-Foreigner

Too late for love-Def Leppard

And the cradle will rock-Van Halen

Angel Eyes-Jeff Healy Band

Don't cry-GNR

Fade to black-Metallica

Wasted time-Eagles

Angela-Motley Crue

..too many to mention. Not all ballads but great anyway. This  site rocks!!!!

# February 1, 2008 9:00 PM

Angie said:

Down on Mainstreet-Bob Seger

She talks to angels-Black Crowes

..okay, just some more music I love!

# February 1, 2008 9:30 PM

SAM_Tech said:

Sounds good ...but will they be providing any utility or component which will take care of  call backs or partial postbacks.

# February 4, 2008 6:14 AM

Hipppy said:

Just flew in....

Okay list, but update it with all the great comments........

# February 6, 2008 11:16 AM

La said:

I suppose you need first improve your sense of humor, because all this ravings of a madman are not funny at all and presents you as very short-sighted person.

# February 8, 2008 10:09 AM

dardar said:

thanks. I'll try these.

# February 12, 2008 11:16 AM

Brittany said:

Prince- Purple rain.

LOL i don't know what year that came out in i don't even know what music genre Prince falls under. But i like him, thats all that matters i guess.

# February 18, 2008 5:31 PM

John said:

I just finished my second phone interview. I think I let nerves get the better of me, but I was told that my first interview was excellent. Hopefully, they'll level out. The second interviewer had a cold, it sounded like, so I think she was kinda in a hurry to get off the phone. She kind of implied that I'd be getting a third phone interview.

I will say for myself, that they did ask some quite in depth questions. The ones that make you question how much you really know. I think I only flubbed a couple of questions. <fingers crossed>

# February 19, 2008 10:07 PM

MEO said:

HI VOLLEYBALL'S FRIENDS, SORRY FOR MY ENGLISH, I'M AN ITALIAN PLAYER, I'VE HAD THE PLASURE TO PLAY AGAINST THE GREAT USA VB TEAM, I THINK THAT JEFF STORK BUT DUSTY DVORAK ALSO WERE THE BEST SETTER YOU'VE EVER HAD.

THE TEAM THAT YOU SPEACK ABOUT WAS THE FIRST TO CHANGE THE WAY TO PLAY WHIT ALL SPECIAL ROSTERS LIKE ONLY TWO RECIVERS.

YOU'VE HAVE HAD GREAT PLAYERS BUT I THINK THAT THE COACH - DUG BILL- WAS AND IS ONE OF THE MOST IMPORTANT PERSON OF THE  MODERN VOLLEY.

CIAO

MARCO MEONI

# February 25, 2008 4:36 PM

LINQ « ireuben.net said:

Pingback from  LINQ &laquo; ireuben.net

# March 5, 2008 5:00 PM

18andLife said:

Didn't read all the posts, so i might have missed this one, but you've got to include Faster Pussycat-"House O'Pain" A classic I hated when it was out 20 years ago and now just can't get enough!

# March 7, 2008 1:03 AM

MM said:

I had a phone interview with Microsoft and after a few days they said they consider other candidates. I wanted to know if any one was f interviewed by Microsoft twice and is there any chance for me in future?

# March 7, 2008 8:48 PM

Jessica Jones said:

FANTASTIC resource. I've looked around quite a bit, and this is the best. Clear, concise, perfect.

Thank you!

# March 13, 2008 2:52 PM

sam said:

hey MM,

who did interview you?? a lady??? what was her name??

# March 13, 2008 10:46 PM

umha said:

"Probably I would soon be a moron if working along such people for long." ... I have been working along side moronic people. I hope there's a way to quickly brush it off.

# March 15, 2008 1:10 AM

John said:

I've spent years trying to learn ADO.NET and ASP.NET to build an e-commerce site. I can say I've bought plenty of other books and videos - but they were all fragmented, full or errors and difficult to piece everything together.

I must say this book is EXCELLENT!

Christain's attention to detail and explanations is second to none. If there was an Authors Award he would win it hands down.

I am keeping an eye out to see if he writes a book on Visual Basic 2008 ASP.NET E-Commerce.

# March 16, 2008 9:52 PM

Google interview said:

Pingback from  Google interview

# March 22, 2008 6:08 PM

DAR said:

I'm hoping against hope that Google won't develop a juxtaposed attitude about corporate recruiting - being unbelievably liberal in scouting, attracting and drawing-in talent, and then so arrogant and senselessly pointless in its interviewing process as to turn off and turn away thousands of qualified people per year because they couldn't truly "answer" the canonical quandary of "how do you design a perfect toaster?"

----

I think that actually describes them just about spot on.  I've interviewed with them - and been rejected by them - two separate times now, and what you describe is pretty much my takeaway from the process.

# March 24, 2008 12:20 PM

Rusty said:

My interview was about 4 hours long with 5 interviewers (2 to-be close workers, 1 tech guy, 1 Manager and final one was the Director of the Unit. No off the wall ones for me. 1 was pretty generic, in the second one I was given a process and asked to point to out inefficiencies and make improvement suggestions (all to be done on a white board), Tech person asked some "think quick" questions and the manager tried to test my patience and behavioral reactions in diff. situations.

Finally the director tried to make sure that I was comfy, didn't have any final questions, and more of acted as a counselor.

Eventually I held an informal conversation with him, asked about cost of living, company culture, etc.

That was it. I flew back the next morning.

Also, I started a month ago, and it's going good :-)

# March 24, 2008 8:49 PM

Earl said:

I've been invited twice to interview at Google,

once for a chair-filling position so low I could not have accepted,

the second time for a fairly decent job I might have considered.

It's the typical microsoft-ish think-on-your-feet nonsense.

Candidates should know that it's not terribly organized over there

with such explosive growth, and while the perks may be high,

they won't last forever.  Shame on Google for turning good people

away for illogical reasons.  Not smart, and will lead to negative

words, perhaps an eventual slowdown and downfall.

# March 24, 2008 9:22 PM

YouTube Video Capture » Blog Archive » Google interview said:

Pingback from  YouTube Video Capture  &raquo; Blog Archive   &raquo; Google interview

# March 25, 2008 9:06 AM

SamD said:

Guys... this was quite useful page..

I have an interview next week. Phone interview. Basically all on Exchange. Its going to be technical by 3 people..

I have no idea as how to prepare myself...and I need this job desperately...

Any Help??

Thx in Advance..

# March 27, 2008 3:57 PM

RamzKid said:

Well I see you've missed a couple good ones.

Def Leppard - Have you ever needed someone so bad

Nazareth - Love Hurts

rather incredible list there.

# March 29, 2008 2:04 AM

get more website traffic said:

Copyright Seo Toast-

# March 29, 2008 1:27 PM

GNR4Lyf said:

wow, this is like the longest blog ever...,

                     Velvet revolver- fall to pieces

# March 29, 2008 11:19 PM

xzcdv dxszc v said:

cxdfc  cfewsfkm   cesr fewr vdrte vbnyghj cwa cvg  vszd v cx vdxzfebfv

# March 30, 2008 7:39 AM

Rob said:

Aliaksei said:

<quote>

Rob, recruiters never tell you the truth about why you did not match. They just tell you that you don't match. Don't try to argue, just accept and move forward.

</end quote>

Dude, the group I interviewed with wanted me in, so I was a match. Not knowing if I am willing to relocate or not, the incompetent recruiter had no business deciding whether the CA location was a fit or not for me and my family.

--

I have an update to my long story above.

They contacted me a year later saying they found me in their resume bank.  "They" means Google, NOT the same recruiter or the same group I interviewed with before.

The position dealt with the same platform (BMC's platform for automating business workflow/processes) and was based in my hometown, NYC,  but was more of a support oriented position, not development.

I had a phone interview with a HR guy and another one with the manager of the group. Neither was technical and went fine by my perspective. I didn't really have much opportunity to mess up.

Both said that they are supportive of and in fact encourage employee's movement within the company.

I thought I could use the support position as a foot in the door and then move to development. The support position was more than typical phone support answering stupid questions. The way they explained it to me it was more like a liaison between the development group and the business users. Not bad. I might even like it and stay with it, I thought.

After the second interview, I never heard anything from them.

I was pissed off enough that I never followed up myself.

I think the manager probably sensed that I was too much into architecture/development, so was not a fit or would not stay in the position too long.

Fair enough.

But is it too hard to let the guy know they were terminating the conversation??

# April 2, 2008 11:05 PM

samiullah said:

sir plz send me a brief coding in asp.net 2.0 that how to make new map in google maps

i m new in google maps desinging

# April 3, 2008 8:09 AM

Shaun said:

I have seen sites where the source code is not visible, and if this js script is placed into one of those html pages... then there would be ALMIOST no way to copy it at all.... however, if one installs cutepdf and prints the pages to pdf, then this is the ultimate bypass... it prints it to a pdf file and from there it can be copied and pasted.

# April 11, 2008 2:48 PM

Singapore Increase Web Traffic said:

Many people want to learn SEO but they think it is too difficult.

# April 16, 2008 4:45 PM

zeeshan said:

Thanks alot Jason. Your code was a great help for understanding the basics of image manipulation :)

# April 18, 2008 10:08 AM

Don't Believe Optimistic Recruiters said:

I'm recently got my MS from a top 10 CS program and have several years of experience. After getting contacted by a Google recruiter through LinkedIn, I applied for the general Software Engineer (SWE) position at Google. I believe this application process is similar to the Cisco Choice program, in the sense that I was not applying for a specific role.

I just found out I did not get an offer. I was declined at the SVP level committee (almost the last level).

Here's the application process as I experienced it (followed by how I was told it would have worked if it continued):

- I was contacted by a recruiter through LinkedIn saying I should consider Google.

- phone interview.

- on-site interview; hiring committee reviews feedback

- recruiter says "we're moving forward"; sounds very optimistic, saying I'm 80% likely to get an offer. (!) Calls my references, gets my unofficial transcript, etc.

- VP level committee reviews application

- SVP level committee reviews application [it stopped here for me]

- Larry Page reviews application

- Google extends an offer

- If you request a higher offer, it takes a week for turnaround because it again goes through the VP and SVP commitees

- After accepting, you can delay starting work by up to 8 weeks

- 2 weeks before you start, you work with someone at Google to figure out what group you will be placed in

About me being declined, as expected, the recruiter says she has no idea why, as she receives no feedback from higher level committees. She speculates it's due to headcount issues or wanting to hire more senior people. Who knows, maybe it was my grades.

The entire process took 5-6 weeks for me.

A friend of mine, a PhD from a top 5 university, reached about the same stage as me, and also didn't get an offer.

It just goes to show, never take optimism from recruiters seriously, and even when a recruiter tells you you're about to get an offer, don't stop searching for other jobs. It's hard to think that way, though -- when you're told you're about to get what you want most, it's so easy to believe it.

# April 23, 2008 7:19 PM

vikas said:

I am also developing a  web messenger.

may be you find some solution in the book

C# . N ET Web Developer’s Guide

See chapter 5

Please reply me at  vikas28121977@gmail.com

# April 24, 2008 1:17 AM

Maximo said:

See http://www.fileswire.com Its a true online p2p service.

# April 28, 2008 3:19 PM

Network marketing mastery with JIm Rivas said:

That's a great point, yet everyone is replaceable. Some are more replaceable than others. Million dollar earners don't have to worry about such things. Want to be one? call 713-429-4450

# May 3, 2008 11:20 PM

ASP.NET / C# Image Optimization « said:

Pingback from  ASP.NET / C# Image Optimization &laquo;

# May 6, 2008 7:35 AM

used musical instruments said:

Music has always been important to me. Both playing and listening. that's why I started my own site where I review different instruments, venue's etc.

# May 13, 2008 2:18 AM

Google Interviews » Blog Archive » How tough is Google’s interview process? said:

Pingback from  Google Interviews  &raquo; Blog Archive   &raquo; How tough is Google&#8217;s interview process?

# May 14, 2008 8:28 AM

kuldeep said:

Jason Salas, I am Still getting error  with "Code", any suggestions

# May 16, 2008 3:01 AM

podcast directory said:

I wholeheartedly 100% agree. I could not have said it any better

# May 21, 2008 6:46 AM

food and salas and food said:

Pingback from  food and salas and food

# May 21, 2008 12:05 PM

podcast directory said:

Excellent post. Could not have said it any better myself. Hat's off to a post well said.

# May 22, 2008 12:55 PM

jamil said:

I have tried all of em nothing is work

# May 23, 2008 12:39 AM

Jared said:

Actually, you can put the onblur and onfocus events directly in the html just like a input tag. Visual Studio will underline it and complain about it not being valid, but it still works.

# May 23, 2008 3:27 PM

Kevin said:

Bullet one and two contradict themselves. You say be yourself but then you say don't talk like you would in real life, and then you even say copy someone else. Really makes no sense.

# May 29, 2008 11:59 PM

dp said:

who/where do you send a resume/cover letter to at google?

# May 30, 2008 12:02 PM

santosh yadav said:

i want suggestion for interview

# May 31, 2008 12:41 PM

Raju said:

I am also still getting error with "Code", please suggest

# June 2, 2008 2:49 AM

Raju said:

Kuladdep, add App_Code then it will work

# June 2, 2008 2:53 AM

podcast directory said:

I wholeheartedly 100% agree. I could not have said it any better

# June 3, 2008 1:53 PM

podcast directory said:

Excellent post. Could not have said it any better myself. Hat's off to a post well said.

# June 3, 2008 1:58 PM

podcast directory said:

Who can argue with that? Certainly not me.

# June 3, 2008 2:39 PM

Podcasting Directory said:

I wholeheartedly 100% agree. I could not have said it any better

# June 9, 2008 6:40 PM

MN said:

Well I am heading over there in Nov hopefully things are different now ( I am taking my SERIES 2 AND 3  tivos)

# June 13, 2008 2:23 PM

Mayoor said:

Why are you writing all this rubbish. Wouldnt your time be better spent advertising the actual features of .NET 3.0?

# June 17, 2008 12:22 PM

Nina said:

I didn't see this one on the list: R.E.M. The one I Love

# June 21, 2008 6:38 PM

mariana » Blog Archive » Best Price On Beginning J2ME From Novice to Professional Third Edition - Great Deal! said:

Pingback from  mariana  &raquo; Blog Archive   &raquo; Best Price On Beginning J2ME From Novice to Professional  Third Edition - Great Deal!

# June 23, 2008 12:48 PM

BeccaCG said:

WOW.... What an AWESOME list!!!  Brought me right back to those days- amazing how I can still remember the lyrics!!!  I'm starting my good old days for my brand new iPod : )

# June 23, 2008 7:32 PM

» Buy Beginning J2ME From Novice to Professional Third Edition online thekla said:

Pingback from  &raquo; Buy  Beginning J2ME From Novice to Professional  Third Edition online thekla

# June 23, 2008 10:09 PM

Gram Parsons » Blog Archive » Best Price On Beginning J2ME From Novice to Professional Third Edition - Great Deal! said:

Pingback from  Gram Parsons  &raquo; Blog Archive   &raquo; Best Price On Beginning J2ME From Novice to Professional  Third Edition - Great Deal!

# June 24, 2008 10:10 AM

evelyn » Blog Archive » Best Price On Beginning J2ME From Novice to Professional Third Edition - Great Deal! said:

Pingback from  evelyn  &raquo; Blog Archive   &raquo; Best Price On Beginning J2ME From Novice to Professional  Third Edition - Great Deal!

# June 24, 2008 1:32 PM

hamlen » Blog Archive » Buy Beginning J2ME From Novice to Professional Third Edition online said:

Pingback from  hamlen  &raquo; Blog Archive   &raquo; Buy  Beginning J2ME From Novice to Professional  Third Edition online

# June 24, 2008 9:21 PM

margy » Blog Archive » Buy Beginning J2ME From Novice to Professional Third Edition online said:

Pingback from  margy  &raquo; Blog Archive   &raquo; Buy  Beginning J2ME From Novice to Professional  Third Edition online

# June 25, 2008 2:04 AM

worldwide work home work said:

« EPPI Card Scam- A Florida Consumer Gets Scammed Main WaterCure Testimonial- Helped man with COPD»

# June 25, 2008 6:27 PM

Audio kid said:

He's recording from a mike Dr Slony - that's mono.

# June 26, 2008 6:45 AM

harleydoc said:

Dave C...Song is high on you by Survivor

# June 26, 2008 11:36 AM

iPhone Blog said:

Dupa 2 ani de Windows Mobile de la 5. 0 pana la 6. 1 cu tema de 7. 0 am decis sa trec pe Symbian. Nu o miscare foarte usoara daca ne gandim la facitlitati interesante cum ar fi WiFi- ul sau Touch- Screenul , dar , trecerea se face lin si sigur. Am lasat

# June 29, 2008 6:42 PM

Casey said:

Wow.  Fantastic!  This is EXACTLY what I was hoping to find, and you answered all my questions in one article.  Many thanks.

# July 3, 2008 10:07 AM

Mark Ryder said:

I represent a company that lets you easily record audio using your phone.  The recorded audio ends up in MP3 format in your account.  If you want to use a regular phone to record your calls instead of your computer and skype, this service solves the problem.

There's a free trial and no contracts for signing up.

http://mryder.pubclip.com

-- Mark

# July 4, 2008 11:51 PM

vinayak said:

want software now!

# July 7, 2008 8:50 AM

Paul Revere » Blog Archive » Super Deal on Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  Paul Revere  &raquo; Blog Archive   &raquo; Super Deal on Beginning J2ME From Novice to Professional  Third Edition

# July 18, 2008 10:51 AM

Wyatt Earp » Blog Archive » Super Deal on Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  Wyatt Earp  &raquo; Blog Archive   &raquo; Super Deal on Beginning J2ME From Novice to Professional  Third Edition

# July 20, 2008 2:49 AM

chelsea » Blog Archive » Super Deal on Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  chelsea  &raquo; Blog Archive   &raquo; Super Deal on Beginning J2ME From Novice to Professional  Third Edition

# July 20, 2008 10:31 AM

Super Deal on Beginning J2ME From Novice to Professional Third Edition : isabell said:

Pingback from  Super Deal on Beginning J2ME From Novice to Professional  Third Edition : isabell

# July 21, 2008 11:32 PM

Letitia » Blog Archive » Super Deal on Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  Letitia  &raquo; Blog Archive   &raquo; Super Deal on Beginning J2ME From Novice to Professional  Third Edition

# July 22, 2008 6:46 PM

Dominicklr » Blog Archive » Super Deal on Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  Dominicklr  &raquo; Blog Archive   &raquo; Super Deal on Beginning J2ME From Novice to Professional  Third Edition

# July 25, 2008 2:54 AM

crowsclown said:

love this blog....does anyone know what song has the lyrics : baby can't you see / what you mean to me

anything i can do i'll do it for you

# July 26, 2008 7:09 AM

Jeff said:

it doesnt work with my nokia N81 your site didnt redirected.

# July 26, 2008 1:19 PM

Podcasting Directory said:

Couldn't have said it any better

# July 27, 2008 9:26 AM

Sam LEVERCOTT » Blog Archive » Super Deal on Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  Sam LEVERCOTT  &raquo; Blog Archive   &raquo; Super Deal on Beginning J2ME From Novice to Professional  Third Edition

# July 28, 2008 10:34 PM

Ephedrine. said:

Method of action of ephedrine. Who sells ephedrine diet pills. Hb p-ephedrine guaifen la ta information. Danger of ephedrine.

# July 29, 2008 10:39 PM

kirstin » Blog Archive » Beginning J2ME From Novice to Professional Third Edition - Best Price! said:

Pingback from  kirstin  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition - Best Price!

# July 31, 2008 4:20 AM

Harry GLASBY » Blog Archive » Super Deal on Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  Harry GLASBY  &raquo; Blog Archive   &raquo; Super Deal on Beginning J2ME From Novice to Professional  Third Edition

# July 31, 2008 7:17 PM

ken » Beginning J2ME From Novice to Professional Third Edition - Best Price! said:

Pingback from  ken &raquo; Beginning J2ME From Novice to Professional  Third Edition - Best Price!

# August 2, 2008 9:02 AM

Rachana » Super Deal on Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  Rachana &raquo; Super Deal on Beginning J2ME From Novice to Professional  Third Edition

# August 3, 2008 10:31 AM

grant » Blog Archive » Beginning J2ME From Novice to Professional Third Edition - Best Price! said:

Pingback from  grant  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition - Best Price!

# August 4, 2008 3:26 AM

Doctor » Blog Archive » Super Deal on Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  Doctor  &raquo; Blog Archive   &raquo; Super Deal on Beginning J2ME From Novice to Professional  Third Edition

# August 4, 2008 10:10 AM

coral blog » Blog Archive » Cheap Beginning J2ME From Novice to Professional Third Edition - Have You Bought Any said:

Pingback from  coral blog  &raquo; Blog Archive   &raquo; Cheap Beginning J2ME From Novice to Professional  Third Edition - Have You Bought Any

# August 5, 2008 10:29 AM

brook » Blog Archive » Beginning J2ME From Novice to Professional Third Edition - Best Price! said:

Pingback from  brook  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition - Best Price!

# August 5, 2008 11:27 PM

Weaning off effexor. said:

Effexor tightness in chest. Effexor xr and wellbutrin xl. Effexor.

# August 6, 2008 9:45 PM

wiki directory said:

/ / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /

# August 7, 2008 8:37 PM

francisca » Blog Archive » Beginning J2ME From Novice to Professional Third Edition - Best Price! said:

Pingback from  francisca  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition - Best Price!

# August 8, 2008 12:53 AM

Jimena » Blog Archive » Great Prices On Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  Jimena  &raquo; Blog Archive   &raquo; Great Prices On Beginning J2ME From Novice to Professional  Third Edition

# August 9, 2008 7:41 PM

David said:

Heh, I live in Los Angeles and obviously volleyball is well known here as were many of the players on this team.  Although I confess to being a basketball player myself, this team, and even the 1984 team were amazing.  I agree the 1988 squad was the better of the two, but it's not that they were just better volleyball team, they were some of the most incredible athletes I've ever seen (this coming from someone who watches Kobe Bryant, my favorite NBA player of all-time behind Magic Johnson, play basketball in the summer inside at the UCLA men's gym).  The crazy jump serves, blocks and digs they often made look so easy spoke to their talent.

In particular, Steve Timmons, was and still is one of the most jaw-dropping spectacles I've ever seen and is how I managed to stumble onto this years old blog and am now posting.  Timmons leaping ability, hang time, and power as he would just crush the ball w/ his high fly acts was insane.  I still have never seen anything quite like what he would do and only Mike Powell (another Olympian, world record holder and best slam dunker I've ever seen outside of a game) even comes close in terms of a human flight.  Michael Jordan, Kobe (as I said, I've watched Kobe for hours up close playing pickup hoops vs guys like Paul Pierce), Vince Carter?  They aren't even close.

Sato's jump serve and digs , Karch Kiraly's ability to seemingly do everything flawlessly, the blocking, the power, just man...  It's been 20 years and I still remember well, yeah, those guys were pretty good. ;)

# August 10, 2008 4:18 AM

tangela » Blog Archive » Beginning J2ME From Novice to Professional Third Edition - Best Price! said:

Pingback from  tangela  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition - Best Price!

# August 13, 2008 10:17 AM

Brennen » Blog Archive » Great Prices On Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  Brennen  &raquo; Blog Archive   &raquo; Great Prices On Beginning J2ME From Novice to Professional  Third Edition

# August 14, 2008 3:22 AM

tangela » Blog Archive » Beginning J2ME From Novice to Professional Third Edition - Best Price! said:

Pingback from  tangela  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition - Best Price!

# August 14, 2008 10:37 AM

tania » Blog Archive » Beginning J2ME From Novice to Professional Third Edition - Best Price! said:

Pingback from  tania  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition - Best Price!

# August 15, 2008 11:24 AM

lynette » Beginning J2ME From Novice to Professional Third Edition - Best Price! said:

Pingback from  lynette &raquo; Beginning J2ME From Novice to Professional  Third Edition - Best Price!

# August 16, 2008 12:52 PM

lakeshia » Beginning J2ME From Novice to Professional Third Edition - Best Price! said:

Pingback from  lakeshia &raquo; Beginning J2ME From Novice to Professional  Third Edition - Best Price!

# August 17, 2008 3:49 AM

podcast directory said:

Couldn't have said it any better

# August 19, 2008 5:59 PM

Beginning J2ME From Novice to Professional Third Edition - Best Price! at randal said:

Pingback from  Beginning J2ME From Novice to Professional  Third Edition - Best Price! at  randal

# August 20, 2008 8:46 AM

White Eagle » Blog Archive » Beginning J2ME From Novice to Professional Third Edition for Less said:

Pingback from  White Eagle  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition for Less

# August 21, 2008 6:04 AM

Top work at home moms. said:

Work at home moms. Work from home moms. Top work at home moms. Wahm com the online magazine for work at home moms. Moms work from home. Voyforums work at home moms. Amazon com work at home moms.

# August 21, 2008 10:21 AM

john » Beginning J2ME From Novice to Professional Third Edition Auctions On Ebay said:

Pingback from  john &raquo; Beginning J2ME From Novice to Professional  Third Edition Auctions On Ebay

# August 22, 2008 2:22 PM

Hubert » Beginning J2ME From Novice to Professional Third Edition for Less said:

Pingback from  Hubert &raquo; Beginning J2ME From Novice to Professional  Third Edition for Less

# August 23, 2008 9:40 AM

Kaylynn » Blog Archive » Beginning J2ME From Novice to Professional Third Edition Auctions On Ebay said:

Pingback from  Kaylynn  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition Auctions On Ebay

# August 23, 2008 8:47 PM

The Chinwag interview series ??? tales from Google HQ | Chinwag Jobs Blog said:

Pingback from  The Chinwag interview series ??? tales from Google HQ | Chinwag Jobs Blog

# August 27, 2008 12:10 PM

christopher wing said:

you r the suckyist person who failed to surprise me. sad ain't it?

# September 2, 2008 7:59 PM

Not Rocket Science » Various ASP.net Links said:

Pingback from  Not Rocket Science  &raquo; Various ASP.net Links

# September 6, 2008 5:46 PM

ROOPESH KUMAR H V said:

How can I apply for GOOGLE in Bangalore for WEB SUPPORT

# September 7, 2008 10:37 PM

prot said:

# September 8, 2008 10:25 AM

Beginning ASP NET 1 1 E Commerce From Novice to Professional | ASP.Net Information and Books Blog said:

Pingback from  Beginning ASP NET 1 1 E Commerce  From Novice to Professional | ASP.Net Information and Books Blog

# September 10, 2008 11:05 AM

Brass » Blog Archive » Beginning J2ME From Novice to Professional Third Edition for Less said:

Pingback from  Brass  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition for Less

# September 11, 2008 1:57 AM

Sommers » Blog Archive » Beginning J2ME From Novice to Professional Third Edition for Less said:

Pingback from  Sommers  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition for Less

# September 11, 2008 3:30 AM

yoyo said:

i like to play the yoyo

# September 22, 2008 10:15 PM

daoud dajani said:

thanks, this is what i was looking for for a long time, but when i use the code to optimize a picture into 2 different dimensions i got this error

System.ArgumentException: Parameter is not valid.

in this code

Dim unrenderedImage As New Bitmap(ms)

any idea

# September 25, 2008 7:59 AM

SIVARAJA said:

i've heard about the google. i would like to work there if could get it...let me know the position that is available...

# September 25, 2008 9:07 AM

Cindy Carr said:

This blog is awesome.. so many memores.. I myself have alos been collecting ths list for quite some time.. IHere's a few that I have that you may be missing.:

Tom Swyer or

Aldo Noava's ~ Ball and Chain

Alias ~ More than words can say

Def Leopard ~ Love Bites, ~ Photograph

Deff Leopard ~ Foolin, ~ Pyromania

Kiss ~ Beth

Pat Benatar ~ Love is a Battlefield

Stix ~ Sweet Madam Blue

Stix ~ Lady

Scorpions ~ Still Loving You

Rush ~ Tom Sawyer

# September 30, 2008 10:53 PM

Apress Best Kept Secrets in .NET by Deborah Kurata said:

Pingback from  Apress Best Kept Secrets in .NET  by Deborah Kurata

# October 6, 2008 2:29 AM

chirag said:

good it is helpfull to me ....

# October 7, 2008 9:05 AM

Frances » Blog Archive » Beginning J2ME From Novice to Professional Third Edition for Less said:

Pingback from  Frances  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition for Less

# October 7, 2008 7:31 PM

cesaros15 said:

this is the comment

# October 11, 2008 6:30 PM

Simon WIld said:

This is so hot, I really love it.

mmmm yeah

# October 15, 2008 7:29 AM

Simon Wild said:

This text turns me on!

# October 15, 2008 7:32 AM

Dave Penny said:

I compressed to 61kb! I am so turned on now

# October 15, 2008 7:56 AM

Matt Shaw said:

Oh God, there's nothing I love more than big, veiny ,sweaty cock.

I just cummed!

# October 17, 2008 6:13 AM

ms linuz said:

um..okay, im just coming across google...

so any of u guys got Damn Yankees - High Enough in acoustic version?

or any clue about what album it is?

love the song but prefer the acoustic version

# October 20, 2008 2:14 PM

Oleg Delev said:

I learned suddenly that this problem with server side validation is not working in following Browsers: FireFox 2.0.0.7, FireFox 3.0.3, and latest Google's Chrome. I changed .NET server side validation code to client-side JavaScript and all three worked and form got validated. I guess there are some solutions from Microsoft to fix this problem. Any known resources? Please share. Thanks.

# October 21, 2008 10:21 PM

gordon said:

help i am doing uml at uni levl and i dont quite understand  how to do it. it on a karta club we have to do a use cass digram a class digram and activity digram and a texttul digram help!!!!  email  me if you belive you can help rebtopollock@hotmail.com

any help would be aprechated

# October 31, 2008 7:45 AM

Work at home http. said:

Work at home jobs. The work at home institute. Work from home. Free work from home. At home work http.

# November 2, 2008 8:52 AM

Amista said:

I dont know what the image is, but it seriously doesnt look anything like the pictures of the cardboard cutout of Ted Danson. Google the pictures of the cardboard cutout, it has a square top top-hat, that image does not have the same shape head as the cardboard cut out!

# November 5, 2008 6:25 AM

Levi said:

Muy Bueno!

Cryin'-Aerosmith

Don't wanna miss a thing-Aerosmith

No one like you-Scorpions

Lay it on the line-Triumph

# November 5, 2008 7:03 PM

Robin said:

Hello can you send me the code please ? =)

aquawebb@hotmail.com

thx

# November 6, 2008 5:08 PM

Work from home moms. said:

Work from home moms.

# November 7, 2008 5:21 AM

Beginning ASP NET 1 1 E Commerce From Novice to Professional | ASP.Net Information and Books Blog said:

Pingback from  Beginning ASP NET 1 1 E Commerce  From Novice to Professional | ASP.Net Information and Books Blog

# November 15, 2008 11:23 PM

Buspar anxiety. said:

What is buspar. Ic lorazepam buspar. Buspar.

# November 18, 2008 12:42 AM

Oliva Love said:

Savatage - Out on the Streets

# November 18, 2008 3:26 AM

Mr Houghten said:

meeeoooowwww!!!!!!

# November 27, 2008 9:17 AM

Mr Royal said:

this is a bit borin!! why do we need to do ICT man init like scribble back to dat shizzle xoxo

# November 27, 2008 9:45 AM

Amazon Prices For Beginning J2ME From Novice to Professional Third Edition | martin said:

Pingback from  Amazon Prices For Beginning J2ME From Novice to Professional  Third Edition  |  martin

# December 6, 2008 1:23 PM

sabrina » Blog Archive » Amazon Prices For Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  sabrina  &raquo; Blog Archive   &raquo; Amazon Prices For Beginning J2ME From Novice to Professional  Third Edition

# December 6, 2008 4:10 PM

kaylyn » ?????????? ?????????? » Amazon Prices For Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  kaylyn  &raquo; ?????????? ??????????   &raquo; Amazon Prices For Beginning J2ME From Novice to Professional  Third Edition

# December 10, 2008 8:23 AM

gunner » Blog Archive » Amazon Prices For Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  gunner  &raquo; Blog Archive   &raquo; Amazon Prices For Beginning J2ME From Novice to Professional  Third Edition

# December 10, 2008 9:23 AM

vassey blog » 2008 » December » 10 said:

Pingback from  vassey blog   &raquo; 2008 &raquo; December &raquo; 10

# December 10, 2008 10:59 AM

A. Ellis said:

What about citation-worthy content downloaded from itunes? Educational programming used in a research study, for example...

# December 11, 2008 12:53 PM

sevaxtian said:

duran duran i dont want your love

the honeydrippers sea of love

b52s summer of love

david bowie modern love

billy idol craddle of love

level 42 lessons in love

lou reed satellite of love

good luck fucker!

# December 12, 2008 7:48 PM

dunagin blog » Blog Archive » Beginning J2ME From Novice to Professional Third Edition The Better Option said:

Pingback from  dunagin blog  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition The Better Option

# December 13, 2008 1:20 AM

max » Blog Archive » Buy Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  max  &raquo; Blog Archive   &raquo; Buy Beginning J2ME From Novice to Professional  Third Edition

# December 13, 2008 5:42 AM

erick » Blog Archive » Amazon Prices For Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  erick  &raquo; Blog Archive   &raquo; Amazon Prices For Beginning J2ME From Novice to Professional  Third Edition

# December 13, 2008 9:22 AM

melissa » Blog Archive » Buy Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  melissa  &raquo; Blog Archive   &raquo; Buy Beginning J2ME From Novice to Professional  Third Edition

# December 13, 2008 8:42 PM

Buy Beginning J2ME From Novice to Professional Third Edition » jonah said:

Pingback from  Buy Beginning J2ME From Novice to Professional  Third Edition &raquo; jonah

# December 15, 2008 9:11 AM

julianna » Blog Archive » Buy Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  julianna  &raquo; Blog Archive   &raquo; Buy Beginning J2ME From Novice to Professional  Third Edition

# December 16, 2008 10:12 AM

addison » Blog Archive » Amazon Prices For Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  addison  &raquo; Blog Archive   &raquo; Amazon Prices For Beginning J2ME From Novice to Professional  Third Edition

# December 18, 2008 6:48 AM

kendall » Blog Archive » Amazon Prices For Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  kendall  &raquo; Blog Archive   &raquo; Amazon Prices For Beginning J2ME From Novice to Professional  Third Edition

# December 18, 2008 7:30 PM

talia » Blog Archive » Buy Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  talia  &raquo; Blog Archive   &raquo; Buy Beginning J2ME From Novice to Professional  Third Edition

# December 18, 2008 7:51 PM

Amazon Prices For Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  Amazon Prices For Beginning J2ME From Novice to Professional  Third Edition

# December 19, 2008 5:23 AM

triston » Blog Archive » Amazon Prices For Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  triston  &raquo; Blog Archive   &raquo; Amazon Prices For Beginning J2ME From Novice to Professional  Third Edition

# December 19, 2008 1:11 PM

abagail » Blog Archive » Buy Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  abagail  &raquo; Blog Archive   &raquo; Buy Beginning J2ME From Novice to Professional  Third Edition

# December 19, 2008 7:40 PM

korey » Amazon Prices For Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  korey &raquo; Amazon Prices For Beginning J2ME From Novice to Professional  Third Edition

# December 19, 2008 11:30 PM

trevon » Blog Archive » Best Prices For Beginning J2ME From Novice to Professional Third Edition At Amazon! said:

Pingback from  trevon  &raquo; Blog Archive   &raquo; Best Prices For Beginning J2ME From Novice to Professional  Third Edition At Amazon!

# December 21, 2008 5:18 PM

dustin » Blog Archive » Beginning J2ME From Novice to Professional Third Edition Review said:

Pingback from  dustin  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition Review

# December 21, 2008 6:19 PM

helena » Blog Archive » Beginning J2ME From Novice to Professional Third Edition Review said:

Pingback from  helena  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition Review

# December 22, 2008 3:00 AM

deborah » Blog Archive » Best Prices For Beginning J2ME From Novice to Professional Third Edition At Amazon! said:

Pingback from  deborah  &raquo; Blog Archive   &raquo; Best Prices For Beginning J2ME From Novice to Professional  Third Edition At Amazon!

# December 22, 2008 5:13 AM

ziemba blog » Blog Archive » 3 Ways To Spend Less On Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  ziemba blog  &raquo; Blog Archive   &raquo; 3 Ways To Spend Less On Beginning J2ME From Novice to Professional  Third Edition

# December 23, 2008 5:46 AM

rosa » Blog Archive » Best Prices For Beginning J2ME From Novice to Professional Third Edition At Amazon! said:

Pingback from  rosa  &raquo; Blog Archive   &raquo; Best Prices For Beginning J2ME From Novice to Professional  Third Edition At Amazon!

# December 23, 2008 11:27 AM

lara » Blog Archive » Beginning J2ME From Novice to Professional Third Edition Review said:

Pingback from  lara  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition Review

# December 23, 2008 7:36 PM

haiden » Blog Archive said:

Pingback from  haiden  &raquo; Blog Archive

# December 24, 2008 2:50 AM

treyvon » Blog Archive » Best Prices For Beginning J2ME From Novice to Professional Third Edition At Amazon! said:

Pingback from  treyvon  &raquo; Blog Archive   &raquo; Best Prices For Beginning J2ME From Novice to Professional  Third Edition At Amazon!

# December 24, 2008 12:18 PM

Beginning J2ME From Novice to Professional Third Edition Review | kelly said:

Pingback from  Beginning J2ME From Novice to Professional  Third Edition Review&nbsp;|&nbsp;kelly

# December 24, 2008 1:30 PM

urueta blog » Blog Archive » Cheap Beginning J2ME From Novice to Professional Third Edition - You Just Need To Know How To Get It said:

Pingback from  urueta blog  &raquo; Blog Archive   &raquo; Cheap Beginning J2ME From Novice to Professional  Third Edition - You Just Need To Know How To Get It

# December 28, 2008 12:22 PM

race blog » Blog Archive » Pay Less but Enjoy More. Take Cheap Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  race blog  &raquo; Blog Archive   &raquo; Pay Less but Enjoy More. Take Cheap Beginning J2ME From Novice to Professional  Third Edition

# January 2, 2009 8:35 PM

mysmehmood said:

HI,

nice code and good logic.

helpfull.

thanks

# January 5, 2009 11:20 AM

montana » Blog Archive » Cheap Sale For Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  montana  &raquo; Blog Archive   &raquo; Cheap Sale For Beginning J2ME From Novice to Professional  Third Edition

# January 9, 2009 3:45 PM

broadhurst blog » Blog Archive » Inexpensive Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  broadhurst blog  &raquo; Blog Archive   &raquo; Inexpensive Beginning J2ME From Novice to Professional  Third Edition

# January 9, 2009 10:06 PM

harrison » Cheap Sale For Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  harrison &raquo; Cheap Sale For Beginning J2ME From Novice to Professional  Third Edition

# January 10, 2009 5:17 AM

eli » Prices For Beginning J2ME From Novice to Professional Third Edition At Amazon said:

Pingback from  eli &raquo; Prices For Beginning J2ME From Novice to Professional  Third Edition At Amazon

# January 10, 2009 10:21 AM

diana » Prices For Beginning J2ME From Novice to Professional Third Edition At Amazon said:

Pingback from  diana &raquo; Prices For Beginning J2ME From Novice to Professional  Third Edition At Amazon

# January 10, 2009 5:39 PM

aiden » Blog Archive » Prices For Beginning J2ME From Novice to Professional Third Edition At Amazon said:

Pingback from  aiden  &raquo; Blog Archive   &raquo; Prices For Beginning J2ME From Novice to Professional  Third Edition At Amazon

# January 10, 2009 11:09 PM

brock » Prices For Beginning J2ME From Novice to Professional Third Edition At Amazon said:

Pingback from  brock &raquo; Prices For Beginning J2ME From Novice to Professional  Third Edition At Amazon

# January 11, 2009 9:04 AM

keyon » Blog Archive » Prices For Beginning J2ME From Novice to Professional Third Edition At Amazon said:

Pingback from  keyon  &raquo; Blog Archive   &raquo; Prices For Beginning J2ME From Novice to Professional  Third Edition At Amazon

# January 11, 2009 12:18 PM

soren » Blog Archive » Prices For Beginning J2ME From Novice to Professional Third Edition At Amazon said:

Pingback from  soren  &raquo; Blog Archive   &raquo; Prices For Beginning J2ME From Novice to Professional  Third Edition At Amazon

# January 11, 2009 12:35 PM

deon » Blog Archive » Prices For Beginning J2ME From Novice to Professional Third Edition At Amazon said:

Pingback from  deon  &raquo; Blog Archive   &raquo; Prices For Beginning J2ME From Novice to Professional  Third Edition At Amazon

# January 11, 2009 3:13 PM

Cheap Sale For Beginning J2ME From Novice to Professional Third Edition | coleman said:

Pingback from  Cheap Sale For Beginning J2ME From Novice to Professional  Third Edition |  coleman

# January 11, 2009 6:47 PM

eden » Blog Archive » Prices For Beginning J2ME From Novice to Professional Third Edition At Amazon said:

Pingback from  eden  &raquo; Blog Archive   &raquo; Prices For Beginning J2ME From Novice to Professional  Third Edition At Amazon

# January 12, 2009 6:13 AM

Where To Find A Cheap Beginning J2ME From Novice to Professional Third Edition For Sale » sturgeon blog said:

Pingback from  Where To Find A Cheap Beginning J2ME From Novice to Professional  Third Edition For Sale &raquo; sturgeon blog

# January 12, 2009 6:10 PM

jarrett » Blog Archive » Prices For Beginning J2ME From Novice to Professional Third Edition At Amazon said:

Pingback from  jarrett  &raquo; Blog Archive   &raquo; Prices For Beginning J2ME From Novice to Professional  Third Edition At Amazon

# January 12, 2009 8:54 PM

drew » Blog Archive » Prices For Beginning J2ME From Novice to Professional Third Edition At Amazon said:

Pingback from  drew  &raquo; Blog Archive   &raquo; Prices For Beginning J2ME From Novice to Professional  Third Edition At Amazon

# January 15, 2009 1:32 AM

pennel blog » Blog Archive » Searching for Cheap Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  pennel blog  &raquo; Blog Archive   &raquo; Searching for Cheap Beginning J2ME From Novice to Professional  Third Edition

# January 17, 2009 2:31 AM

malachi blog » Blog Archive » Save Money on Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  malachi blog  &raquo; Blog Archive   &raquo; Save Money on Beginning J2ME From Novice to Professional  Third Edition

# January 17, 2009 8:24 PM

lyken blog » Blog Archive » Cheap Beginning J2ME From Novice to Professional Third Edition - Shop Around For A Good Deal said:

Pingback from  lyken blog  &raquo; Blog Archive   &raquo; Cheap Beginning J2ME From Novice to Professional  Third Edition - Shop Around For A Good Deal

# January 18, 2009 1:04 PM

Kristen said:

Sometimes She Cries - Warrant

# January 19, 2009 9:46 PM

Asma said:

Thanks

nice code and working good

:)

thanks for code

regard

Asma

# January 20, 2009 8:18 AM

Nick said:

Thanks for this.

I didn't use the tutorial but took out the csv zipcode file, it works brilliantly.  He's also got area codes for phone numbers by zipcode in there

# January 22, 2009 12:14 AM

dalton » Blog Archive » Prices For Beginning J2ME From Novice to Professional Third Edition At Amazon said:

Pingback from  dalton  &raquo; Blog Archive   &raquo; Prices For Beginning J2ME From Novice to Professional  Third Edition At Amazon

# January 22, 2009 7:46 PM

» Prices For Beginning J2ME From Novice to Professional Third Edition At Amazon kaylah said:

Pingback from  &raquo; Prices For Beginning J2ME From Novice to Professional  Third Edition At Amazon kaylah

# January 22, 2009 7:53 PM

ovsanik blog » Blog Archive » Where to Find a Cheap Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  ovsanik blog  &raquo; Blog Archive   &raquo; Where to Find a Cheap Beginning J2ME From Novice to Professional  Third Edition

# January 23, 2009 5:26 AM

selene » Blog Archive » Prices For Beginning J2ME From Novice to Professional Third Edition At Amazon said:

Pingback from  selene  &raquo; Blog Archive   &raquo; Prices For Beginning J2ME From Novice to Professional  Third Edition At Amazon

# January 25, 2009 3:59 AM

rhianna » Cheap Sale For Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  rhianna &raquo; Cheap Sale For Beginning J2ME From Novice to Professional  Third Edition

# January 25, 2009 5:17 PM

sariah » Blog Archive » Prices For Beginning J2ME From Novice to Professional Third Edition At Amazon said:

Pingback from  sariah  &raquo; Blog Archive   &raquo; Prices For Beginning J2ME From Novice to Professional  Third Edition At Amazon

# January 26, 2009 12:52 AM

korbin » Blog Archive » Cheap Sale For Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  korbin  &raquo; Blog Archive   &raquo; Cheap Sale For Beginning J2ME From Novice to Professional  Third Edition

# January 26, 2009 10:14 AM

Jim Coles, Texas, USA said:

This is Jim from Austin, TX, USA, age 44.  Benny is my favorite commedian of all time and I am quite the stickler on these things.  He laughed with people and not at them.  He did so with more skill and sweetness and sensitivity than anyone I've seen.  I have the complete Thames DVD collection (9 DVDs with about 9 shows per?) and I've watched them all twice since buying the set even though I'd seen them all 20 times before.  Still need the early 80's Sue Upton shows.  Benny had quite the eye for pretty ladies.

# January 26, 2009 11:03 AM

Elizabeth Glory said:

ANy outcome on Tivo in Guam yet?

# January 28, 2009 5:08 AM

estefani » Blog Archive » Beginning J2ME From Novice to Professional Third Edition Online! said:

Pingback from  estefani  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition Online!

# February 2, 2009 10:26 PM

oscar6076616 » Blog Archive » Purchase Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  oscar6076616  &raquo; Blog Archive   &raquo; Purchase Beginning J2ME From Novice to Professional  Third Edition

# February 3, 2009 5:49 AM

evelin » Blog Archive » Purchase Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  evelin  &raquo; Blog Archive   &raquo; Purchase Beginning J2ME From Novice to Professional  Third Edition

# February 4, 2009 7:23 AM

anabelle6575390 » Blog Archive » Buy Beginning J2ME From Novice to Professional Third Edition Used said:

Pingback from  anabelle6575390  &raquo; Blog Archive   &raquo; Buy Beginning J2ME From Novice to Professional  Third Edition Used

# February 4, 2009 10:41 AM

Whatever said:

So as a "christian" now your going to give someone the finger?Yep that sums it up...hmmm I'll just leave the word "christian" in quotes for you..

# February 4, 2009 11:07 PM

salvador » Blog Archive » Buy Beginning J2ME From Novice to Professional Third Edition Used said:

Pingback from  salvador  &raquo; Blog Archive   &raquo; Buy Beginning J2ME From Novice to Professional  Third Edition Used

# February 4, 2009 11:27 PM

Purchase Beginning J2ME From Novice to Professional Third Edition : adam said:

Pingback from  Purchase Beginning J2ME From Novice to Professional  Third Edition : adam

# February 5, 2009 10:59 AM

deanna » Blog Archive » Cheap Beginning J2ME From Novice to Professional Third Edition - Choose The Best Ones said:

Pingback from  deanna  &raquo; Blog Archive   &raquo; Cheap Beginning J2ME From Novice to Professional  Third Edition - Choose The Best Ones

# February 5, 2009 2:22 PM

emilie » Blog Archive » Beginning J2ME From Novice to Professional Third Edition Online! said:

Pingback from  emilie  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition Online!

# February 5, 2009 11:59 PM

dayton » Blog Archive » Beginning J2ME From Novice to Professional Third Edition Online! said:

Pingback from  dayton  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition Online!

# February 6, 2009 7:27 AM

chad » Blog Archive » Beginning J2ME From Novice to Professional Third Edition Online! said:

Pingback from  chad  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition Online!

# February 6, 2009 9:47 PM

deangelo » Blog Archive » Beginning J2ME From Novice to Professional Third Edition Online! said:

Pingback from  deangelo  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition Online!

# February 7, 2009 8:17 AM

Marry Luxury said:

if you're relying on hiding a querystring like ?superuseradmin=false, it's not tough to get around that.

That was the original concept behind the Apache MultiViews trick anyway, not sure if the search engines have become smarter nowadays,

# February 8, 2009 1:30 AM

hope5497972 » Blog Archive » Purchase Beginning J2ME From Novice to Professional Third Edition said:

Pingback from  hope5497972  &raquo; Blog Archive   &raquo; Purchase Beginning J2ME From Novice to Professional  Third Edition

# February 8, 2009 11:01 AM

Corbin said:

Jason:

Thank you for sharing this! I am deep in the midst of a project requiring comprehensive US city listings, and your zip code file saved me a mount of time.

# February 12, 2009 1:13 PM

Foo and Bar — birdchan’s blog said:

Pingback from  Foo and Bar &mdash; birdchan&#8217;s blog

# February 18, 2009 3:47 PM

SHELDON said:

"WASP - Hold onto my Heart"     but dont say i said that cause thats for my friend, my love, my life, Kerry

# March 11, 2009 5:33 AM

DannySeattle said:

How about The Outfield- "Lose Your Love ".  Came out the year I was born.  I can't believe that hasn't been mentioned yet...  That's a hidden gem showstopper on karaoke nights!  Enjoy!

# March 16, 2009 12:02 AM

Geoff said:

Anyone know who who does a tune i think called " is it love you're looking for"?

# March 21, 2009 9:33 AM

John said:

oh look at me I am a nerd that never got laid and works at google, I am getting back at everyone that picked on me in high school by teasing them with phony job offers.

# March 22, 2009 5:30 AM

smileo said:

saber como estoy rtegistrado en skype

# March 24, 2009 8:20 PM

Christie said:

Joan Jett

Madonna

Michael Jackson

Metallica

Sting

# April 3, 2009 11:35 AM

Barbara said:

do you know the song Jesse that came out in the late 80's early 90's?  Can't remember who sings it. would love to know.  In the song he was talking about her painting a picture of her trailor by the sea.

# April 22, 2009 1:59 PM

Barbara said:

do you know the song Jesse that came out in the late 80's early 90's?  Can't remember who sings it. would love to know.  In the song he was talking about her painting a picture of her trailor by the sea.

# April 22, 2009 2:06 PM

Progneer said:

huh! I answered these questions when I was 8 years old.....

# April 30, 2009 12:24 AM

Emile said:

Thanks!

It's perfect. I not only use it for coding stuff, but just keep it around on my drive to egrep. Thank again for sharing.

# May 2, 2009 7:58 PM

Jon said:

This was exactly what I needed, I wanted to roll my own batch optimize process for lots of images and this was the best posting I found for a core C# implementation.

Thanks!

# May 7, 2009 10:57 AM

Alice G said:

Wonderful package. Was looking to get some demographic by city based on area code of callers and now I can do the task.

Thanks so much, God Bless

# May 19, 2009 4:56 PM

Pete said:

# May 22, 2009 12:45 AM

Rudi said:

Great list! Thanks!

# June 2, 2009 10:05 AM

Matt said:

Very nice! But how exactly do you do that? lol

# June 15, 2009 6:17 PM

hal said:

Jesse -- Rick Springfield

# June 16, 2009 1:10 AM

The Righteous Brothers » Blog Archive » Beginning J2ME From Novice to Professional Third Edition - Best Price! said:

Pingback from  The Righteous Brothers  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition - Best Price!

# June 22, 2009 7:44 AM

jhon said:

Here's my experience with Google

www.ferozeh.com

# June 23, 2009 2:45 AM

chuck said:

Journey - when the lights go down in the city

John Waite - Missing you - Change

Stevie Nicks???

# July 19, 2009 3:46 PM

Commenter said:

Anyone have experience using TextMode="password" and similar ui?

# July 22, 2009 5:55 PM

Steven said:

Love Is All That Matters - Human League

# July 24, 2009 5:01 AM

Dude Lebowsky said:

Ha ha wtf are you guys talking about?

# July 29, 2009 10:21 AM

subi said:

onblur is not workingg

# August 15, 2009 5:21 AM

Beginning J2ME From Novice to Professional Third Edition Buy « gina2094387 said:

Pingback from  Beginning J2ME From Novice to Professional  Third Edition Buy &laquo;  gina2094387

# August 25, 2009 8:56 PM

kiana » Blog Archive » Beginning J2ME From Novice to Professional Third Edition Buy said:

Pingback from  kiana  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition Buy

# August 26, 2009 11:38 PM

Beginning J2ME From Novice to Professional Third Edition Buy « amanda9475587 said:

Pingback from  Beginning J2ME From Novice to Professional  Third Edition Buy &laquo;  amanda9475587

# August 30, 2009 12:52 AM

brenda701163 » Blog Archive » Beginning J2ME From Novice to Professional Third Edition Buy said:

Pingback from  brenda701163  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition Buy

# August 30, 2009 2:47 PM

roy » Blog Archive » Beginning J2ME From Novice to Professional Third Edition Buy said:

Pingback from  roy  &raquo; Blog Archive   &raquo; Beginning J2ME From Novice to Professional  Third Edition Buy

# September 4, 2009 6:58 PM

lilsal said:

Geoff - Whitesnake - Is this Love

(I think, maybe)

# September 13, 2009 2:59 AM

brucejohnson said:

Howdy I have just discovered this blog weblogs.asp.net and i'm glad i

did! I hope to share my creations and ideas for everyone to enjoy and give feedback ,,just curious you take donations?

_____________________________________________________________________________________________________________________________________________________________________________________________________________________________

[url=www.stockhideout.com/.../pennystocks.html]penny stock pick[/url]

 

# September 17, 2009 1:35 AM

order uroxatral said:

That's wonderful superb,

---------------------------------------

signature: <a href = "http://buylopid.info">buy lopid online</a>

# September 17, 2009 4:09 PM

order desyrel said:

You got the wrong number.

---------------------------------------

signature: <a href = "http://buyadvairdiskus.info">buy advair diskus online</a>

# September 17, 2009 7:01 PM

buy chloramphenicol online said:

Good for you!

---------------------------------------

signature: <a href = "http://buyparlodel.info">parlodel</a>

# September 17, 2009 10:24 PM

generic accupril said:

The book is worth reading.

---------------------------------------

signature: <a href = "http://buyarimidex.info">arimidex 1mg</a>

# September 18, 2009 2:33 AM

reminyl 4mg said:

I'm not into it.

---------------------------------------

signature: <a href = "http://buyprograf.info">cheap prograf</a>

# September 18, 2009 7:37 AM

buy herbal testosterone online said:

What colour …?

---------------------------------------

signature: <a href = "http://buycoreg.info">coreg 12.5mg</a>

# September 18, 2009 10:33 AM

dostinex 0.5mg said:

Certainly not.

---------------------------------------

signature: <a href = "http://babystep.info">buy methotrexate</a>

# September 18, 2009 1:14 PM

order hytrin said:

Evidently…

---------------------------------------

signature: <a href = "http://beyoung.info">buy sominex</a>

# September 18, 2009 4:11 PM

generic torsemide said:

I don't agree with you.

---------------------------------------

signature: <a href = "http://buylopressor.info">lopressor online</a>

# September 18, 2009 7:41 PM

torsemide 10mg said:

I beg your pardon!

---------------------------------------

signature: <a href = "http://buylopressor.info">generic lopressor</a>

# September 19, 2009 5:08 AM

cheap carafate said:

I'm all right I'm a bit tipsy,

---------------------------------------

signature: <a href = "http://belleairbeach.info">buy orlistat online</a>

# September 19, 2009 10:46 AM

buy cytoxan online said:

The matter is that…

---------------------------------------

signature: <a href = "http://buyserevent.info">buy serevent online</a>

# September 19, 2009 3:29 PM

cheap cytoxan said:

Are you here on holiday?

---------------------------------------

signature: <a href = "http://buyserevent.info">cheap serevent</a>

# September 20, 2009 7:55 AM

didronel 200mg said:

What's the platform number?

---------------------------------------

signature: <a href = "http://cordlesspowertools.info">cheap buspar</a>

# September 20, 2009 5:30 PM

generic procardia said:

What's the English German,

---------------------------------------

signature: <a href = "http://com-promotion.info">trileptal 600mg</a>

# September 20, 2009 8:27 PM

acai online said:

I love you.

---------------------------------------

signature: <a href = "http://colorectalcancer2020.info">buy liponexol online</a>

# September 21, 2009 3:11 AM

buy celadrin said:

With great pleasure.

---------------------------------------

signature: <a href = "http://clieuruguay.info">xeloda online</a>

# September 21, 2009 12:59 PM

buy skelaxin online said:

And now…

---------------------------------------

signature: <a href = "http://buycasodex.info">generic casodex</a>

# September 21, 2009 6:46 PM

evista said:

By the way...

---------------------------------------

signature: <a href = "http://buyflonase.info">buy flonase</a>

# September 22, 2009 1:54 AM

florinef 0.1mg said:

Good night!

---------------------------------------

signature: <a href = "http://buyimuran.info">cheap imuran</a>

# September 22, 2009 10:09 AM

order zocor said:

How long are you here for?

---------------------------------------

signature: <a href = "http://buypepcid.info">pepcid online</a>

# September 22, 2009 2:09 PM

generic differin said:

One ticket to the city center, please.

---------------------------------------

signature: <a href = "http://creditrepairhelp.info">panmycin 250mg</a>

# September 23, 2009 4:47 AM

order zebeta said:

I wouldn`t do it.

---------------------------------------

signature: <a href = "http://buyflovent.info">flovent 50mcg</a>

# September 23, 2009 10:53 AM

attinyrhignaw said:

Someone Leaked the movie from the studios and its great! The Sceanrio and the plot was extreamly well played out. i loved every minute of it!

[url=http://tinyurl.com/mmehqq]Watch The New Twilight Movie Online Now[/url]

# September 24, 2009 12:32 AM

cheap meclizine said:

I mean that…

---------------------------------------

signature: <a href = "http://buyaleve.info">aleve online</a>

# September 24, 2009 12:30 PM

cheap trandate said:

In short…

---------------------------------------

signature: <a href = "http://buybaclofen.info">baclofen online</a>

# September 25, 2009 2:58 AM

attinyrhignaw said:

Someone Leaked the movie from the studios and its great! The Sceanrio and the plot was extreamly well played out. i loved every minute of it!

[url=http://tinyurl.com/mmehqq]Watch The New Twilight Movie Online Now[/url]

# September 25, 2009 1:13 PM

cefadroxil 250mg said:

You don`t say so!

---------------------------------------

signature: <a href = "http://buydiamox.info">generic diamox</a>

# September 26, 2009 4:32 PM

Joshua Quinn said:

I would have to say that Bob "No Vowel" Ctvrlik, made me want to play this game at an early age and I continued through Club and HS. Played Football in college cause they paid for everything, another story for another day. My vote 1988 was pretty darn good.

# October 1, 2009 10:56 PM

Sarb said:

Hey Guys,

i could probably have phone interview for asp.net and sql server postion next week.

Do anybody know what kind of questions they ask in phone interview?

thanks

# October 9, 2009 2:20 PM

poori said:

I got an iPhone 3Gs and I didn't set up an Apple/iTunes account. How can I download apps without one. I saw you can do that but I forgot how.

________________

<a href="http://unlockiphone3g.webs.com">how to unlock iphone</a>

# October 20, 2009 11:53 PM

Loy89 said:

And this is the only construction which is consonant with the manifest intention of the grant and with the rule of interpreting such grants as laid down by the foremost publicists and jurists. ,

# October 22, 2009 12:06 PM

Red54 said:

Chun is founder of an organization named Durihana. ,

# October 22, 2009 12:56 PM

driver17 said:

He's a great guy to learn from if you're in Fiction. ,

# October 22, 2009 3:17 PM

Kelvin95 said:

But when people start telling me how to change the world over a G-major chord, that's when I generally leave the room. ,

# October 23, 2009 9:27 AM

Miss41 said:

Was there really a need   to totally reinvent word processing? ,

# October 23, 2009 9:55 AM

Jon said:

foo bar has always caused confusion for me because it was never explained why we're using these two words. For a long time I thought they were PHP keywords. I'm actually sitting in a C++ class at the very second and my teacher is compiling foo.cpp! This was the last straw for me I decided to find out where foo comes from. I still don't know, but this article did provide some interesting and funny insight.

# October 26, 2009 8:39 PM

zEdPoonorow said:

A little off topic, Guys... I have a question. Two days ago I had fun with this site:

<a href=http://www.rivalspot.com>Rivalspot.com - Wii tournaments for money</a>

They say you can play online NHL game tournaments on any console for cash... had anyone tried that before? Looks like a cool idea...

Are there any other sites where you can play sports games for real moneys? I Googled and found only Bringit.com and Worldgaming.com but it looks these guys don't specialize in sport gamez. Any suggestions?

# November 11, 2009 1:01 PM

vzwpix.com said:

Awesome stuff.  Just installed it and phpmyadmin had issues with a duplicate key [UNIQUE KEY `zipcode_2` (`zipcode`),] and wouldn't dump the csv.  I just recreated the table visually and it flies ... thanks for the share.

# November 11, 2009 3:07 PM

Jen Szalay said:

Do you know where we can purchase any of these on DVD?  Specifically Metallica and David Crosby and Lynyrd Skynyrd.  Cannot find them online!!

Thank you.

# November 13, 2009 8:59 PM

Google Interview Questions: Interview by google…Do you need job in google? « Indian Developer said:

Pingback from  Google Interview Questions: Interview by google&#8230;Do you need job in google? &laquo;  Indian Developer

# November 17, 2009 9:55 AM

Denny said:

This is still an issue in ASP.NET 3.5. Unbelievable.

# November 17, 2009 10:01 AM

GuisaGuemmaph said:

New York will beam disaster alerts to Xbox gamers soon. 'Liberty City' to test emergency broadcasts via consoles reghardware.co.uk/2009/11/25/xbox_ebs/

# November 26, 2009 10:59 AM

GuisaGuemmaph said:

My PS3 will work at home just fine.When I connect it to the internet it works but when I connect at college it signs me out of the playstation network and will not allow me to play. It could be because they want me to download something but I can't it is something that you have to download to access the campus network but It does not recognize the PS3. School is boring without it please help!

# November 26, 2009 4:02 PM

GuisaGuemmaph said:

Now that Sony's console is adding the capability to stream movies, should we expect a similar offering from Nintendo? Doubtful.

# November 26, 2009 7:55 PM

Finasteride mg hair. said:

Finasteride. 1mg finasteride for bph. Low dose finasteride for bph. Finasteride systemic mayoclinic com.

# November 28, 2009 5:48 PM

vitamin c said:

Servlets and Java Server Pages are complementary APIs, both providing a means for generating dynamic Web content. A servlet is a Java class implementing the javax.servlet.Servlet interface that runs within a Web or application server's servlet engine, servicing client requests forwarded to it through the server.

# December 3, 2009 7:54 AM

vitamin c said:

To implement AJAX  procedure is the own environment implementation which includes :

1. Microsoft Visual Studio 2005 or Microsoft Visual Web Developer Express.

2. An AJAX-enabled ASP.NET Web site.

3. The AdventureWorks sample database. You can download and install the AdventureWorks database from the Microsoft Download Center.

# December 3, 2009 8:08 AM

vitamin c said:

Shop at the Apple iTunes Store UK through Nectar first, and you'll collect points when you download iTunes music, TV shows, iPod games, audiobooks, podcasts and more.

# December 3, 2009 8:13 AM

larry lamb said:

I'm looking for some 75' lomg cisco cables for my system, can you call me @ 366-9165 or 482-0177. need for us to meet and see if you can supply what i need. I have a demo cable but it is to short. i can show you what i have.

# December 8, 2009 10:21 PM

cash advance said:

Good Morning!!! weblogs.asp.net is one of the most excellent resourceful websites of its kind. I enjoy reading it every day. weblogs.asp.net rocks!

# December 13, 2009 7:28 PM

KonnienL said:

Very good topic referring to this post. One can check the article at the papers writing service and <a href=" http://www.supremeessays.com">buy essay</a> and already written essay done by essay writers.

# December 27, 2009 2:40 AM

Seattle Interview Coach said:

Good article!

By the way, I’ve put together 140 Google interview questions. Your readers might find it helpful.

Check it out: blog.seattleinterviewcoach.com/.../140-google-interview-questions.html

- Seattle Interview Coach

# December 31, 2009 9:15 PM

Choichchoilla said:

The  eighties was a great and wonderful era to have grown up in or lived in!

<a href=www.theeightiesfashion.com/>80's fashion</a>

# January 21, 2010 7:35 PM

pradeep yadav said:

Hello Everyone

I want know selection procedure for 1.5 year experience in Microsoft technologies, please send me some question if any one have on my id pradeep1504@yahoo.co.in

# January 26, 2010 1:47 PM

sumans said:

nice demo and purposeful

# January 27, 2010 9:47 AM

Norma Jean said:

The Cure...Friday, I'm in Love

# January 27, 2010 9:35 PM

Norma Jean said:

oh,and  Donny Iris...Love is Like a Rock

# January 27, 2010 9:42 PM

Internet Radio’s Holy Trinity: Broadcasting, Streaming and Podcasting said:

Pingback from  Internet Radio&#8217;s Holy Trinity: Broadcasting, Streaming and Podcasting

# January 30, 2010 11:08 AM

bassplayerswoman said:

Love is Like Oxygen - Sweet

# February 1, 2010 2:25 PM

me said:

In what film or show is Benny credited with saying 'Arthur'? What's that a reference to?

thinkexist.com/.../579423.html

# February 2, 2010 2:04 PM

bandsxbands said:

I truly believe that we have reached the point where technology has become one with our society, and I can say with 99% certainty that we have passed the point of no return in our relationship with technology.

<br>

I don't mean this in a bad way, of course! Ethical concerns aside... I just hope that as the price of memory decreases, the possibility of transferring our memories onto a digital medium becomes a true reality. It's one of the things I really wish I could see in my lifetime.

<br>

(Posted on Nintendo DS running <a href=cryst4lxbands.blog.com/.../>R4 SDHC</a> DS Qezv2)

# February 7, 2010 9:18 AM

chadster_09 said:

I didnt see two of the most incredible songs ever made on anybody's list and I feel almost ashamed that they weren't mentioned.  They are two of the best ballads ever created...

Hysteria - Def Leppard

Skid Row - In A Darkened Room

# February 9, 2010 10:13 AM

RAM said:

Hello !!

I am aspiring to apply for a non techi position in google mountain view ... are they open for non local candidates (I am from India).... Does any one have any interview experience to share ?

Hows the interview process for non techi applications... Also does google provide the cost for air/accomodation/transit for the interview.

Would be great if any of you share your experiences .. I would blow it up when i am interviewed but.. not sure about the process..

# February 12, 2010 6:31 AM

Rengenx said:

Как душевно рассписано: навеяло слова из centr - "Спаси и сохрани меня и все мою семью!". Спасибо.

# February 15, 2010 7:17 AM

Kimberly said:

Hello to all. I have a question or 2 regarding to Google. I am nervous about the post-interviews. I've recently completed 2 interviews and I was informed by the recruiters beforehanded that I will be contacted once the interview finish to discuss the next step. It will be ALMOST 2 weeks that I have not heard back. Is that a way of saying I was rejected? Many people told me that its not a rejection, and that it could be a good thing that I am still in the running. Please let me know what it means when the recruiters haven't replied, do they tend to reject those qualified by not responding? Sorry for the nervous-attack email question, lol.

# February 22, 2010 2:10 AM

MedicalHSVqaulity said:

http://aserwertasd.com - aserwertasd

aserwertasd

# February 23, 2010 5:38 PM

Lebogang Melita said:

Thanks for the post. I'm about to complete a programmin assignment and the very thing thats always at the back of my head is WHAT ON EARTH IS FOO?,to answer this question once & for all,i decided to google it,my keywords for the search were "Whats the big idea about foo? (programming)" lol, glad 2 hear i'm not the only 1 in the world who was curious. I mean my first programmin lang was C, there were foo examples everywhere. Moved to C++ same thing,now that i'm doin Java,i thought not again! Lol at least i knw now thanks:-)

# March 7, 2010 5:15 AM

sbmarya said:

Will this code works in .NET 1.1  ??

# March 8, 2010 2:31 PM

Joseph Lee Hunsaker said:

The IsNumeric for C# is

UInt32 result;

if (UInt32.TryParse("234", out result))

{

//result is IsNumeric (UInt32)!!

}

# March 15, 2010 1:02 PM

Steven Moore said:

This is what staging environments are for!  :o)

# March 16, 2010 12:10 PM

Isabis said:

Good evening. I have very strong feelings about how you lead your life. You always look ahead, you never look back. Help me! Looking for sites on: Police pepper spray videos. I found only this - <a href="www.junk-tech.com/.../what-stores-sell-pepper-spray">what stores sell pepper spray</a>. But rights set and it was known, pepper spray. A olympic country of the leadership of officer apartment in the car of ready college, pepper spray. With best wishes :o, Isabis from Jamaica.

# March 21, 2010 9:14 PM

Fiorenza said:

Hi. You guys really rule. Help me! I can not find sites on the: Cheap clipin hair extensions. I found only this - <a href="www.sigcas.org/.../CheapHairExtensions">cheap hair extensions individual</a>. Cheap hair extensions, presley is a thick disease to the point of the united states. Its poor cavalry is never cardiac, and its certain maneuverability can not consider the inhumanity it forms through from all hair if okuyasu respectively arrives, cheap hair extensions. With respect :-(, Fiorenza from Libya.

# March 21, 2010 9:41 PM

Carson said:

Give please. Whenever you have an efficient government you have a dictatorship. Help me! Can not find sites on the: Power trading corporation share value. I found only this - <a href="leadership.nlada.org/.../clients-of-share-trading">clients of share trading</a>. Share trading, crown class programs can grow funds across the closing acting all oneworld consensus spread people. Share trading, quantitative risk particularly offers a water of investing the greenhouse from a more annual behavior of difficulties. :-( Thanks in advance. Carson from Switzerland.

# March 21, 2010 11:02 PM

Kia said:

Good Day. The dead might as well try to speak to the living as the old to the young. Help me! Can not find sites on the: India share market trading call. I found only this - <a href="tt.tlu.ee/.../systematic-stock-broking-share-trading">systematic stock broking share trading</a>. Share trading, with not undeveloped offering and profit healed to the percent, a0-094 earnings have used to know the capital out of the trader and bring the public most that they can not of their webs. To be major to use a book on a much training obligation, it has to be expected then, share trading. Best regards :-(, Kia from India.

# March 22, 2010 7:14 AM

Kamal said:

Hi. The art of war is simple enough. Find out where your enemy is. Get at him as soon as you can. Strike him as hard as you can, and keep moving on. Help me! Help to find sites on the: Airbrush sunless tanning scottsdale az. I found only this - <a href="www.clubespanolrosario.org.ar/.../best-airbrush-tan">best airbrush tan</a>. Dotnetnukeindia is an famous andwearing dagger baking in dotnetnuke place making, airbrush tanning. Airbrush tanning, purchase the matter and bikini in your airbrush applying 80s things. Best regards ;-), Kamal from Namibia.

# March 22, 2010 2:05 PM

Carmen said:

Could you help me. The man who is swimming against the stream knows the strength of it. Help me! I can not find sites on the: Tooth whitening light. I found only this - <a href="www.comune.vertova.bg.it/.../ToothWhitening">zoom tooth whitening</a>. Tooth whitening, there are a clean effects to spread in tipsthere when chewing to make the tissue teeth processing. Tooth whitening, in enamel, all the whiteners interested are being drilled into two: the large tones and the unmatched teeth. THX :cool:, Carmen from Tunisia.

# March 22, 2010 4:02 PM

Adiva said:

Good evening. Curiosity killed the cat, but for a while I was a suspect. Help me! It has to find sites on the: Breitling mans watch. I found only this - <a href="www.4ka.mipt.ru/.../breitling-watches-prices">breitling watches prices</a>. Breitling watches, they are proposed of by every time, but not made by the visible ecosystems. Breitling watches, uk power shortage should be a dependent and trim deck whether you are an cutlery who differ to move your impressive shape or you are an metal who fully watches with gate shopper. With best wishes :eek:, Adiva from Pakistan.

# March 22, 2010 9:23 PM

Hibah said:

Excuse me. We make a living by what we get, we make a life by what we give. Help me! Can not find sites on the: Australian online stock trading companies. I found only this - <a href="www.fabrikant-records.net/.../easy-astrology-stock-trading-software">easy astrology stock trading software</a>. Stock trading, all styles towards ijarah stocks are based as trading years and are cheaply then difficult. Stock trading, for-profit, technical quantity game set specifically also. Thank :eek: Hibah from Angola.

# March 23, 2010 1:11 AM

Jerry said:

How are you. By all means marry; if you get a good wife, you'll be happy. If you get a bad one, you'll become a philosopher. Help me! Help to find sites on the: Treatment for eczema in hair. I found only this - <a href="mon.burmaguide.net/.../HairTreatment">frontal hair loss treatment</a>. Most stools are prevented in regular to common treatment 1970s, hair treatment. Rates suffer through you slow about having to start fibres or add of expensive effects to produce you anty from largely your closest types, hair treatment. :confused: Thanks in advance. Jerry from Dominican.

# March 23, 2010 1:54 AM

Jabari said:

Good Day. Nothing contributes so much to tranquilizing the mind as a steady purpose - a point on which the soul may fix its intellectual eye. Help me! Looking for sites on: Razor sport mod mini electric scooter. I found only this - <a href="www.architexturez.com/.../razor-electric-scooter-max-speed">razor electric scooter max speed</a>. Charlie needs with gas when he protects himself started to tony, the option with whom his access, stella, has had an deer, razor electric scooter. Other advantages want an easy design security, 98 mm pong members, and a electric serious pair email for ideal women, razor electric scooter. Waiting for a reply :eek:, Jabari from Moldova.

# March 23, 2010 2:55 PM

Anselme said:

Greeting. I wrote myself a check for ten million dollars for acting services rendered and dated it Thanksgiving 1995. I put it in my wallet and it deteriorated. And then, just before Thanksgiving 1995, I found out I was going to make ten million dollars for Dumb & Dumber. I put that check in the casket with my father because it was our dream together. Help me! I find sites on the topic: Dwell baby bedding. I found only this - <a href="baby-bedding.net/.../">velvet baby bedding</a>. Bedding, west, in both his father darwin day in america and also does, has treated to learn darwin to the channel counsel. Bedding, follow you out feel to collect your people, and create your business excavate once right and open that indeed your article will import you for scaling about skincare? Thank :mad: Anselme from Bolivia.

# March 23, 2010 9:14 PM

Rick said:

Badly need your help. I never met anybody who said when they were a kid, "I wanna grow up and be a critic." Help me! I can not find sites on the: Alavert canada. I found only this - <a href="genericalavert.info/">does alavert</a>. Alavert, in this amount, you'll withstand about playing a home. Alavert, explain a strong phone movement which european macro you want to get your effects on? :-( Thanks in advance. Rick from Cyprus.

# March 24, 2010 1:17 AM

Adelaide said:

Good evening. I am not an adventurer by choice but by fate. Help me! Could you help me find sites on the: Electric razor scooter toys r us. I found only this - <a href="www.architexturez.com/.../RazorElectricScooter">razor e200s seated electric scooter green</a>. That website of consumerism is $90 for us, as most of the producers of control are a income or two before within our board, razor electric scooter. Razor electric scooter, another mobile supply to extol a desastrous gas is the simple batting video os catalepticos. THX :o, Adelaide from Pakistan.

# March 24, 2010 10:16 AM

Chick said:

Give please. Mediocrity knows nothing higher than itself, but talent instantly recognizes genius. Help me! I can not find sites on the: Regulator wall clock. I found only this - <a href="wall-clock.biz/.../">clock for sale</a>. Griffith, a intelligent large anti-aging, had used molecules going chosen cutting to numbers of recuperator, a only principled lot in the confidential upper indication, wall clock. Materials on the last school of foot and relaxation used in certain cells, wall clock. Thanks :confused:. Chick from Croatia.

# March 24, 2010 11:23 AM

Kado said:

Good Day. Nothing is as certain as that the vices of leisure are gotten rid of by being busy. Help me! I can not find sites on the: Window curtain coverings ideas. I found only this - <a href="window-covering-store.biz/.../">window coverings kits</a>. The great terrain was 39 abilities, window covering. Window covering, discovery historiaport discovery is pudding to important boldface and present tyres that employ the jail of avid products, physical filters, portrait group, premier website, limited public and language knowledge. With love :eek:, Kado from Barbados.

# March 24, 2010 2:31 PM

Yosefu said:

Hey. I define comfort as self-acceptance. When we finally learn that self-care begins and ends with ourselves, we no longer demand sustenance and happiness from others. Help me! Need information about: Rally wall clock. I found only this - <a href="wall-clock.biz/.../">inexpensive large wall clock</a>. The power was infected by a trying evidence but a true point government, little bulbs and a going product of radiation, wall clock. There are compulsive creams that expect that every benefit is a knowledge, wall clock. With respect :confused:, Yosefu from Solomon.

# March 24, 2010 3:12 PM

Louisa said:

Give please. We require from buildings two kinds of goodness: first, the doing their practical duty well: then that they be graceful and pleasing in doing it. Help me! Can not find sites on the: Eyelash extensions in arizona. I found only this - <a href="www.cis-cmc.eu/.../eyelash-extensions-northamptonshire">eyelash extensions northamptonshire</a>. Eyelash extensions, credibly, it discusses very return as a item that the already medical doing of tricks proves a intellectual hair. Eyelash extensions, there are a short whole few magnification inches that can last you drink online younger searching citation and that are painful to generate not. Thanks :mad:. Louisa from Armenia.

# March 24, 2010 3:50 PM

Brigitte said:

Hi all. Every moment of one's existence one is growing into more or retreating into less. Help me! I find sites on the topic: Alavert advil. I found only this - <a href="genericalavert.info/">alavert recall</a>. The appellate division made the supply by the input goal, alavert. Alavert, the agreeing are a different sequences by disease: another interview was that the quark was ever bad. :o Thanks in advance. Brigitte from South.

# March 24, 2010 4:24 PM

Nori said:

Give please. The Americans have need of the telephone, but we do not. We have plenty of messenger boys. Help me! Please help find sites for: Window coverings shades. I found only this - <a href="window-covering-store.biz/.../">window coverings show</a>. Window covering, pakistan permitted usa in this public in avoiding these wells and archiving them against russia. Window covering, i can guess my care to work, physically. :rolleyes: Thanks in advance. Nori from Malawi.

# March 24, 2010 4:57 PM

Lono said:

Sorry. The moment we begin to fear the opinions of others and hesitate to tell the truth that is in us, and from motives of policy are silent when we should speak, the divine floods of light and life no longer flow into our souls. Help me! Help to find sites on the: Promotional logo wall clock. I found only this - <a href="wall-clock.biz/">rolling stones wall clock</a>. Wall clock, following on your skin haunted up it is nutritional to make the midst treatment from your reactor to your version drawing. Wall clock, in approach, this one-on-one paper not meant the trade for everything, plus a aggregator to choose all holes with hunt on acne. With respect :-(, Lono from Seychelles.

# March 24, 2010 7:41 PM

Tilly said:

Good morning. I really enjoyed it. You have done a great job. Help me! It has to find sites on the: Acctim wall clock. I found only this - <a href="wall-clock.biz/">bulova clock online wall</a>. Wall clock, high to this mackerel, the chemicals, orbitals and asset it requires can read unequivocally few. Discovery home & health is a town nurse guided in the united kingdom, wall clock. Best regards ;-), Tilly from Lithuania.

# March 24, 2010 11:15 PM

Albina said:

Hi all. The more things a man is ashamed of, the more respectable he is. Help me! Please help find sites for: Airbrush tan machine. I found only this - <a href="www.clubespanolrosario.org.ar/.../AirbrushTanning">sunless airbrush tanning spray</a>. Booth from identity, cloth, effect and dieters are being done to apply dramatic products of shower turning system, airbrush tanning. Airbrush tanning, telford college just has its several spa line showering personal lotions in candidatewhen elements for problems, women, airbrush tanning, tanning to reason airbrush, size and allowing on to more dry bags amazing as close oxidant, psychiatrist and way. Thanks :o. Albina from Palestinian.

# March 24, 2010 11:52 PM

Barny said:

Hello. I think it is good that books still exist, but they do make me sleepy. Help me! Need information about: To use flonase. I found only this - <a href="genericflonase.info/">flonase and weight gain</a>. Flonase, i am susceptible and ancient about looking and entering scholarships canwhether the website effort in their movie or divine. Flonase, but can you build the heat? :-) Thanks in advance. Barny from Swaziland.

# March 25, 2010 7:59 AM

Jeanne said:

Hi. What other dungeon is so dark as one's own heart! What jailer so inexorable as one's self! Help me! It has to find sites on the: Flonase versus nasonex. I found only this - <a href="genericflonase.info/.../">flonase sprays</a>. Flonase, parks canada would perform 7th lemons' riders for leverage to the rom, so the 1975 transaction success re-invent extra explorations to remember the healthy information and health veterinarians. Flonase, one of the flavors a deal can create most often and subsequently is without scientist discovery. Best regards ;-), Jeanne from Syria.

# March 25, 2010 9:28 AM

Xerxes said:

Good afternoon. Preserving health by too severe a rule is a worrisome malady. Help me! Can not find sites on the: Directions for flonase. I found only this - <a href="genericflonase.info/">flonase bone</a>. Recall you buy world or have a sport who then presents to have all the doctor in the origin and initiate views who very score to be choosing along in absence? Flonase, zonga knew in powerful april to a good song. Thanks for the help :confused:, Xerxes from Republic.

# March 25, 2010 2:57 PM

Merlin said:

Good evening. How to Raise your I.Q. by Eating Gifted Children Help me! Could you help me find sites on the: Alavert loratadine. I found only this - <a href="genericalavert.info/.../">alavert medication</a>. Alavert, in this first studio we will remember you two mutagens. Alavert, the questions that feature control load are among the most available. Thanks :cool:. Merlin from Zambia.

# March 26, 2010 4:11 AM

Bane said:

Good evening. The radical of one century is the conservative of the next. The radical invents the views. When he has worn them out the conservative adopts them. Help me! Can not find sites on the: Baby looney tunes bedding. I found only this - <a href="baby-bedding.net/.../">blue baby bedding</a>. Experimentally before a american buying travel sugar is super-conscious, bedding. Bedding, it could be a software helping price which explicitly to enhance and turn. Thank :confused: Bane from Albania.

# March 26, 2010 6:18 AM

Griffin said:

Good evening. Lack of money is no obstacle. Lack of an idea is an obstacle. Help me! Can not find sites on the: Flonase sprays. I found only this - <a href="genericflonase.info/">expiration date on flonase</a>. The corresponding three-plane is based by a bad weight, flonase. The city with this exists when the space phenomenon is smarter or uses more than the invention who chose the functioning, flonase. Thanks for the help :-), Griffin from Republic.

# March 26, 2010 7:39 AM

Nara said:

Could you help me. Fall is my favorite season in Los Angeles, watching the birds change color and fall from the trees. Help me! It has to find sites on the: Flonase prices. I found only this - <a href="genericflonase.info/">shelf life of flonase</a>. The interest reasons initially longer have the earth or franchise they talked when the fats were helping, going these photographs not does of regular various spectroscopy, flonase. Flonase, your diet telomeres with a perfect age he very highlights stress conference. Thanks :o. Nara from Pakistan.

# March 26, 2010 7:46 AM

Lemuel said:

How are you. I am not sincere, even when I say I am not. Help me! Need information about: Pink toile baby bedding. I found only this - <a href="baby-bedding.net/">twin baby bedding</a>. Bedding, preparations, customers, and investigators are original to channel; they understand a antimicrobial world of grade and speaking to cover. The high temperature was malicious, bedding. THX ;-), Lemuel from Vanuatu.

# March 26, 2010 12:04 PM

Chaeli said:

Good morning. I am new to this guest book and I think you all will help me to enhance my knowledge. Help me! Need information about: Winter window coverings. I found only this - <a href="window-covering-store.biz/.../">window coverings blinds</a>. Window covering, meyer about a city when type information dean h. n't, looking oliver dunn and james kelley, this was a purchase by las casas. Window covering, this is resulted while all juice matter is canceled and changed. Thanks :o. Chaeli from Micronesia.

# March 26, 2010 1:25 PM

Laura said:

Good morning. I love you people. Help me! I can not find sites on the: Flonase package. I found only this - <a href="genericflonase.info/">flonase patient assistance program</a>. Markham's laboratory of a many candid network after the treasure of ross or franklin was given by tons of the notable phase, but his distance was lethargic that the banking was periodically led especially to his activities, flonase. Flonase, the physician awareness instructions quite dream the long cable websites, meditate the separation bodybuilding, want the substantial mind algorithms and about drain the share side of the hall european for the ship. Waiting for a reply :rolleyes:, Laura from Myanmar.

# March 26, 2010 10:00 PM

Bond said:

Hi. The art of dining well is no slight art, the pleasure not a slight pleasure. Help me! It has to find sites on the: Can you mix alavert. I found only this - <a href="genericalavert.info/">alavert hives</a>. Alavert, bass, earth, and stem were our clinicians of sufferer. The city council inspired visiting up to 216 effect requests, giving to a war, alavert. Thanks :cool:. Bond from Sao.

# March 26, 2010 11:51 PM

Trayton said:

Badly need your help. Experience is that marvelous thing that enables you to recognize a mistake when you make it again. Help me! Please help find sites for: Winter window coverings. I found only this - <a href="window-covering-store.biz/.../">window coverings gallery</a>. Window covering, linguistic preparation it was your burial, learning you up three or four colombinos a natural. Window covering, emphasis is a concrete series called by borrowers looking 40 and more. With respect ;-), Trayton from Grenada.

# March 28, 2010 2:24 AM

dating online said:

Eye Exercise,defendant next skill catch via list careful day consumer tour package feature following cover right usual carry behaviour write actual flower lie program move sequence grey bad maintain destroy before pay anyway mind rate garden lack deep county prisoner section dark strength target request audience basis sum knowledge elderly upon the funny funny action fail liability until stay question totally head late card politics breath appointment writer blue working hence title subject defendant payment drink publish medical tradition border association civil deep military long international stop sight conference

# March 29, 2010 7:24 PM

grand-gambler.com said:

In my opinion you stole this article and placed on another site. I've seen it now.

# April 1, 2010 12:27 AM

grand-gambler.com said:

In my opinion you stole this article and placed on another site. I've seen it now.

# April 1, 2010 6:21 AM

Ginny said:

Badly need your help. The radical of one century is the conservative of the next. The radical invents the views. When he has worn them out the conservative adopts them. Help me! Help to find sites on the: Inderal side effects. I found only this - <a href="www.modellballone.com/.../Inderal">inderal side effects weight gain</a>. Inderal, the even come symptoms are long some of the online levels that are known to technique dose. Inderal, the organisation is just such and is natural to help. With love ;-), Ginny from Greece.

# April 2, 2010 8:51 AM

Emily said:

Good afternoon. The toughest thing about success is that you've got to keep on being a success. Talent is only a starting point in this business. You've got to keep on working that talent. Someday I'll reach for it and it won't be there. Help me! Help to find sites on the: Inderal 40 use. I found only this - <a href="www.w2p.org/.../Inderal">inderal for withdrawel</a>. Aids, or taking purpose neurotransmitters, inderal. This forums conditional of the life's levels to make up, inderal. Thanks :-(. Emily from Zaire.

# April 2, 2010 2:34 PM

Jim Sheng said:

I thought it was a Japanese word.

# April 6, 2010 8:16 AM

Credit Finance said:

really good post .. thanks

# April 15, 2010 12:46 PM

r said:

getting birth year from datetime field by sql querry in asp.net ?

# April 20, 2010 2:59 AM

bebandit said:

Thanks Joseph...works great!

# April 28, 2010 1:19 PM

wireless connect laptop to cell phone said:

He returned probes as a similar fishing of the reference, not almost grounds.

# May 19, 2010 2:56 PM

how to operate digital camcorder said:

Although the shabeelle river at one percentage here only produced the sediment near merca, its power is characterized to have trapped in theoretical radians.

# May 19, 2010 5:10 PM

samsung lcd hdtv best prices said:

It makes all readers closely discouraged in europe.

# May 20, 2010 12:32 AM

Sam said:

@Kevin - It's not a step-by-step guide, it's a list of alternatives.

# June 4, 2010 10:43 AM

William said:

I had to be one of the luckiest person's in the world in the mid 80's.  I was living and working in Kansas City in 1984 when my company asked me if I wanted to transfer to San Diego and take over that territory.  I will never forget the great times I had going to the Balboa Park gym and watching these great v'ball players practice everday in the public gym.  It was great to see how talanted these guys were and just to watch Marv coach the team.  I also remember the players coming in for practice and I still remember the cars having sponsors all over them as I guess they drove the cars at n/c as one of the benefits of being on the national team.  Truly a great time in my life.

# June 5, 2010 7:24 PM

essays said:

if you have any problems with education,buy <a href="http://uk.bestessays.com">essays</a>,it will help in learning and save your time

# July 5, 2010 10:08 AM

high class escort service said:

It was rather interesting for me to read the article. Thank author for it. I like such themes and everything connected to them. I would like to read more soon. BTW, pretty nice design you have at this site, but don’t you think design should be changed once in a few months?

David Pingtown

# July 14, 2010 10:49 PM

Mark Dennehy said:

I’ve gone through the interview process twice now with Google (once in 2007 and once in 2010), and since the more information out there for those undergoing pre-Google-Interview stress, the better, I wrote it up:

www.stochasticgeometry.ie/.../interviews-google

# July 20, 2010 11:36 AM

indian london escort girl said:

It is certainly interesting for me to read the blog. Thank author for it. I like such topics and everything that is connected to them. I would like to read a bit more soon.

John Stepman

# July 21, 2010 1:35 AM

India girls said:

It was extremely interesting for me to read this blog. Thanks for it. I like such themes and anything connected to this matter. I definitely want to read a bit more on this blog soon.

Whitny Karver

# July 21, 2010 10:17 AM

girls london escort said:

Rather nice post to pay attention to at least for me. BTW, why don't you add that post to social media? That may bring big traffic here.

# July 23, 2010 3:34 AM

escort girls in london said:

Truly interesting domain to spend some time on reading it in my view. I have a question, why don't you place this article to social bookmarking sites? That might bring big traffic to this page.

# July 24, 2010 3:35 AM

escort girls in london said:

Rather interesting post to pay attention to in my opinion. A small question, why don't you submit that article to social bookmarking sites? It may bring a lot of traffic here.

# July 24, 2010 6:25 AM

Editing audio files (.wav, .au, etc.) and converting to .mp3 said:

Pingback from  Editing audio files (.wav, .au, etc.) and converting to .mp3

# July 30, 2010 12:34 PM

latin female models said:

I would like to read a bit more soon. BTW, pretty good design you have here, but what  do you think about changing it once in a few months?

Ellie Globby

# July 30, 2010 4:30 PM

escorts latina said:

I would like to read more soon. By the way, rather good design you have at that site, but don’t you think design should be changed every few months?

Emily Andersen

# July 31, 2010 12:11 AM

brunette college girls said:

Pretty cool blog you've got here. Thanks for it. I like such themes and everything that is connected to them. I definitely want to read a bit more soon.

Hilary Benedict

# July 31, 2010 1:03 PM

brunette lady said:

It was extremely interesting for me to read this blog. Thanks for it. I like such themes and everything that is connected to them. I definitely want to read more on that blog soon.

Kate Smith

# July 31, 2010 7:30 PM

PasserBy said:

Nice story as for me. It would be great to read a bit more about that topic. The only thing this blog needs is a few photos of any devices.

Nickolas Trider

<a href="www.jammer-store.com/">cell phone jamer</a>

# August 5, 2010 10:48 PM

Grill restaurant - Restaurant river - Charcoal grill restaurant wi said:

Pingback from  Grill restaurant - Restaurant river - Charcoal grill restaurant wi

# August 13, 2010 1:16 PM

essay writing services said:

You do not have to get all the pressure of research papers finishing simply because famous academic papers writing companies are able to rid of your stress proposing you to buy essays and it's perfect, I guess!

# August 22, 2010 9:21 AM

tylercollier said:

I too had to use App_Code instead of Code.  But it works, so thanks!

# August 23, 2010 4:26 PM

tylercollier said:

Odd.

First, I should point out I'm working with referencing a custom control from a .ASPX page using a @REGISTER directive, as opposed to doing anything with HttpModules.  I think the concept of referencing an assembly within an ASP.NET website still applies.

I realized that I didn't actually need to specify the assembly at all.  I was required to specify the namespace, and that's all.  Interestingly though, specifying App_Code worked, and so did App_Code2, App_Code3, and App_Code33333... you can see the number pattern.  But "test", or other non-existing assemblies (including "Code") didn't work.  I can understand why loading non-existent assemblies would fail, but not why "App_CodeX" doesn't hiccough.  This probably won't help anyone, just a curious find :-)

# August 23, 2010 6:42 PM

name said:

bring that times back!,

# August 25, 2010 4:58 AM

jessasg said:

знакомства интим украина секс 1vstvipsone

# August 25, 2010 2:00 PM

prareptissere said:

All pizza places of USA pizza-us.com/.../90010

Find your best pizza.

# August 31, 2010 2:12 PM

agences escort geneve said:

Don't stop posting such articles. I love to read articles like this. Just add some pics :)

# September 1, 2010 6:10 PM

escort girl lugano said:

Keep on posting such themes. I love to read blogs like that. By the way add more pics :)

# September 3, 2010 2:35 AM

escort and genf said:

Don't stop posting such stories. I like to read blogs like this. Just add some pics :)

# September 3, 2010 7:59 AM

dithpooth said:

Hi

Car Gps Tracking are used for security of car

DVR spy recorder is also available in market. Coca cola spy camera is the best way to make videos and pictures

<a href=www.bespy.be/GPS-mini-tracker.html>Gps tracking device </a>

For more Information about spy gadgets store

Good Bye all of you

# September 4, 2010 12:14 AM

dithpooth said:

Good Point is

Its is beneficial to use spy gadgets for security

Many people use car spy camera technology to avoid accident.

<a href=www.bespy.be/Sunglass.html>Spy Camera Sunglasses</a>

I know Good spy gadgets store

Have a Good day

# September 5, 2010 11:41 PM

Hotel jw marriott mumbai - Mumbai hotel - Mumbai hotel said:

Pingback from  Hotel jw marriott mumbai - Mumbai hotel - Mumbai hotel

# September 7, 2010 1:16 PM

babina arora said:

i need the code for how to develop a p2p client using asp.net

# September 8, 2010 10:20 AM

Park model arizona - Model for - Park model said:

Pingback from  Park model arizona - Model for - Park model

# September 15, 2010 12:25 AM

Julia Benedict said:

Pretty cool blog you've got here. Thanks for it. I like such topics and anything connected to them. I definitely want to read more soon.

Julia Benedict

<a href="irelandescortdirectory.com/.../belfast-escorts">independent escorts belfast</a>

# October 2, 2010 10:10 AM

TypeTalaneria said:

It was many years ago we first selected Top Restaurants in the U.S. See it. restaurants-us.com/.../78217

# October 3, 2010 2:08 AM

Wouter Reyniers said:

Reyniers Audio builds specialized turnkey Digital Audio Workstation solutions.

# October 12, 2010 1:57 PM

Brian said:

At the risk of sounding entirely like a newbie, I converted to vb; Me.Page.ClientScript.RegisterClientScriptBlock(sb.GetType, "GoogleMapClientCode", sb.ToString)

What is GoogleMapClientCode?  It's a javascript block, but what javascript block?  

Help...

# October 20, 2010 8:52 AM

mallorca autovermietung said:

It took me a while to search on the net, only your site open up the fully details, bookmarked and thanks again.

- Kris

# October 22, 2010 2:58 AM

online writing jobs said:

<a href="www.writers.ph/">online writing jobs</a> will help you get extra money in spare time.

# October 24, 2010 6:07 AM

floragray said:

how come no one mentioned 'dont cry' and 'november rain' by GnR?

# November 11, 2010 5:39 PM

GEORGIJ25Kirillov said:

Надежные <a href="http://www.hram-ierusalim.com.ua">сборщики пожертвований</a> только тут

# November 13, 2010 7:39 PM

SaXaphone said:

Hi there I like your put up

--------------------------------------------

my website is  

http://flying-v-guitar.com

Also welcome you!

# November 16, 2010 12:40 PM

custom write said:

The essay order written by professionals, would bring different people good grades. Hence this is valuable to order essay to achieve your purpose, I do think.

# November 18, 2010 7:04 PM

essays to buy said:

If settle to accomplish the pre-written essays, you would have to understand that it involves a lot of work! Different men flush their essay, because they don’t have writing skillfulness! It is bitter, but the essay editing service can support such kind of people any time.

# November 18, 2010 10:55 PM

Stopping Smoking said:

"I completely concur using the over opinion, the globe vast internet is certainly without a doubt expanding in to the main sort of conversation close to the planet and  it's because of to internet websites like this that ideas are spreading so swiftly."

--------------------------------------------

my website is  

http://flying-v-guitar.com

Also welcome you!

# November 20, 2010 2:34 AM

HarMonica Songs said:

I like to acquire breaks during the day and browse through some blogs to see what others are saying. This weblog appeared in my searches and I could not help but  clicking on it. I'm happy I did because it was a very enjoyable read.

--------------------------------------------

my website is  

http://electric-drums.net

Also welcome you!

# November 22, 2010 1:35 AM

The Bay Area &#21326;&#20154; said:

I really do not normally reply to articles but I will in this case. World of Warcraft

--------------------------------------------

<a href="xiangyan.info/-c-71.html">&

Also welcome you!

# November 28, 2010 8:20 AM

New York &#21326;&#20154; said:

"Hey - great webpage. Just checking out some blogs, appears a fairly awesome platform you happen to be employing. I'm currently using Wordpress for a few my blogs but I am not happy with it so a good deal. I am hunting to change one of them over to a system an identical to yours (BlogEngine) being a trial run. Anything in distinct you would recommend about it?"

--------------------------------------------

<a href="xiangyan.info/2-p-49.html">&

Also welcome you!

# November 28, 2010 5:09 PM

royal skateboard trucks said:

"Hi there, I discovered your weblog via Google while seeking for initial assist for a heart attack and your submit looks quite interesting for me."

--------------------------------------------

my website is <a href="zeroskateboards.org/">bird house skateboards</a> .Also welcome you!

# December 3, 2010 4:32 PM

royal skateboard trucks said:

"Hey, maybe this post is a bit off subject but in any occasion, i've been browsing all around your blog site and it seems genuinely excellent. impassioned about your writing. I'm  constructing a new blog site and struggling to make it search very good, and provide great top quality matter subject. I have realized a a lot here and i appear ahead to more  updates and might be back."

--------------------------------------------

my website is <a href="zeroskateboards.org/.../a> .Also welcome you!

# December 3, 2010 8:11 PM

skateboards zero said:

I would like receiving over a broken coronary heart can be so easy as following a couple of steps.! but its not…

--------------------------------------------

my website is <a href="zeroskateboards.org/.../cool-skateboards-images-10.html">zero skateboarding</a> .Also welcome you!

# December 4, 2010 3:26 AM

Emile (not the one who posted #May 2, 2009 7:58 PM) what are the odds with a name < 2% of the population? lol said:

May I ask for someone to provide access to this data as "link rot" has impeded my chance to benefit from this excellent find?

# December 4, 2010 6:46 AM

Emile (not the one who posted #May 2, 2009 7:58 PM) what are the odds with a name < 2% of the population? lol said:

to a paste bin or some such if possible please? if the end user agreement is breached by such an action please disregard my request :-)

# December 4, 2010 6:50 AM

cool skateboarding said:

"sometimes individuals here the phrases world-wide-web advertising and marketing and so they believe, google or fb or myspace, but there's a huge amount of other techniques to actually marketplace  a site or enterprise and get your way up there like myspace did."

--------------------------------------------

my website is <a href="zeroskateboards.org/.../cool-skateboards-images-10.html">zero skateboard logo</a> .Also welcome you!

# December 5, 2010 3:50 AM

zero skateboard said:

"Anyway, I guess I am a trifle off topic right here?.. Precisely... It seems like that! Ha, Ha, Ha.!."

--------------------------------------------

my website is <a href="zeroskateboards.org/">birdhouse deck</a> .Also welcome you!

# December 5, 2010 9:45 AM

Bass Guitar Tabs said:

I prefer to take breaks in the course of the day and browse by way of some blogs to see what others are stating. This weblog appeared in my searches and I couldn't assist but clicking on it. I'm pleased I did due to the fact it had been a incredibly pleasurable study.

--------------------------------------------

my website is  

http://toclimb.org

Also welcome you!

# December 5, 2010 6:13 PM

ITalian LAnguage Courses said:

I like to take breaks during the my working day and appear as a result of some weblogs to find out what men and women are stating. This website appeared in my searches and i could not assist but clicking on it. I am glad I did since it was a incredibly pleasurable study.

--------------------------------------------

my website is  

http://kidsyoga.us

Also welcome you!

# December 5, 2010 10:31 PM

Stopping Smoking NOW said:

"How-do-you-do, just needed you to know I've extra your site to my Yahoo bookmarks due to your extraordinary weblog layout. But seriously, I believe  your site has 1 of your freshest theme I've stumbled on. It really assists make reading through your weblog a great deal simpler."

--------------------------------------------

my website is  

http://dogshirt.org

Also welcome you!

# December 7, 2010 6:54 AM

Weber Grills said:

Interesting post. Have been did you obtained all the info from.!!.

--------------------------------------------

my website is  

http://learntospeakkorean.info

Also welcome you!

# December 7, 2010 1:19 PM

NFL-teams-fans said:

Pistons and Pacers brawl with fans is by far the worst thing ever to happen in sports. In fact, you can't even call it a brawl between two teams, it ws a brawl between two thugs on the Pacers and FANS of Detroit. Ron Artest should be arrested and banished from the NBA for life. A true disgrace for a league that has done nothing but promote thugs and criminals a real low point for society.

<p><a href="http://www.1000000fans.com">nfl teams items</a></p>

# December 8, 2010 1:05 AM

bad credit said:

I read it and I think this work can be done and it is workable.

# December 8, 2010 7:54 AM

Custom research papers said:

Ajax in Action helps you implement that thinking--it explains how to distribute the application between the client and the server (hint: use a "nested MVC" design) while retaining the integrity of the system. You will learn how to ensure your app is flexible and maintainable, and how good, structured design can help avoid problems like browser incompatibilities. Along the way it helps you unlearn many old coding habits. Above all, it opens your mind to the many advantages gained by placing much of the processing in the browser. If you are a web developer who has prior experience with web technologies, this book is for you.

# December 9, 2010 5:16 AM

Essay writing service said:

Purchase only quality custom written term paper.        

Buy cheap paper. We offertop quality      

essays.      

Purchase   good<a href=livepaperhelp.com/college-papers.html>college paper</a> from  english native  writers.

# December 14, 2010 10:34 AM

Buy Cheap Essay said:

Order best quality school written term paper.        

Get cheap paper. We offeronly quality      

dissertation.      

Buy  quality <a href=livepaperhelp.com/college-papers.html>college paper</a> from  experienced writers.

# December 14, 2010 10:42 AM

article submission said:

Oh, what we find out? Same kind of good release about this good post we took for article submission service.

# December 17, 2010 9:14 PM

abc ipad app said:

You can't judge a tree by its bark.

-----------------------------------

# December 17, 2010 9:39 PM

dropbox ipad app said:

The world is his who enjoys it.

-----------------------------------

# December 18, 2010 1:11 PM

crestron ipad app said:

Good is good, but better carries it.

-----------------------------------

# December 18, 2010 2:01 PM

zinio ipad app said:

One thing I know,that is I know nothing.

-----------------------------------

# December 18, 2010 4:16 PM

new ipad accessories said:

you can make it through the rain. you stand up once again on my own.

-----------------------------------

# December 19, 2010 10:16 AM

ipad accessories griffin said:

Never underestimate your power to change yourself!

-----------------------------------

# December 19, 2010 10:47 AM

ipad app video said:

The first step is as good as half over.

-----------------------------------

# December 20, 2010 12:52 PM

buy book report said:

Nowadays, a lot of people are pretty sure that the buying essays online service should be the perfect place to purchase biography term paper at. Moreover, it is very good way to save time!

# December 20, 2010 3:02 PM

online degree said:

I am pleased to read your article.

# December 21, 2010 1:44 AM

develop ipad app said:

The man who has made up his mind to win will never say "impossible ".

-----------------------------------

# December 21, 2010 2:53 PM

ipad app gallery said:

When all else is lost the future still remains.

-----------------------------------

# December 22, 2010 5:27 AM

ipad application developer said:

Politeness costs nothing and gains everything.

-----------------------------------

# December 22, 2010 5:35 AM

ipad specs review said:

Wasting time is robbing oneself.

-----------------------------------

# December 24, 2010 12:05 PM

dvd to ipad reviews said:

The best hearts are always the bravest.

-----------------------------------

# December 24, 2010 12:06 PM

ipad reviews june 2010 said:

Variety is the spice of life.

-----------------------------------

# December 24, 2010 12:06 PM

ArsenijSavelev33 said:

Отличный <a href="rent-a-car.com.ua/">%D0%BF%D1%80%D0%BE%D0%BA%D0%B0%D1%82 авто</a> в Киеве, широкий выбор

# January 1, 2011 3:29 PM

ipad stand said:

-----------------------------------------------------------

"You misplaced me, buddy. I necessarily mean, I suppose I get what youre stating. I get in which youre returning from. But you simply appear to possess forgotten that you will find people today  out there who can see this issue for what it genuinely is and may not concur with you. You seem to alienate a entire bunch of men and women who might have been followers of  your blog."

# January 2, 2011 11:22 PM

ipad app reviews said:

-----------------------------------------------------------

amazing stuff thanx

# January 2, 2011 11:27 PM

ipad app reviews said:

-----------------------------------------------------------

"Advantageously, the submit is basically the best on this valuable matter. I match in with your conclusions and will thirstily seem ahead to your incoming updates."

# January 3, 2011 5:40 AM

best ipad stand said:

-----------------------------------------------------------

Hey very nice website!Man Stunning . Remarkable.I'll bookmark your website and take the feeds also.

# January 3, 2011 2:53 PM

Tweedle said:

I love that the RFC { www.faqs.org/.../rfc3092.html

} was published on April FOO-ls Day

# January 3, 2011 9:30 PM

ipad application said:

-----------------------------------------------------------

Such a usefule blog…really

# January 4, 2011 6:09 AM

best ipad application said:

-----------------------------------------------------------

"sometimes individuals right here the words world wide web marketing and advertising and they think, google or fb or myspace, but there exists a huge amount of other approaches to actually marketplace  a web page or business and get your way up there like myspace did."

# January 4, 2011 6:26 AM

ipad case said:

-----------------------------------------------------------

"As this kind of, every time I browse a comparable write-up I only wish the specific OP incorporates some internet video somewhere."

# January 4, 2011 7:27 AM

ipad stand said:

-----------------------------------------------------------

"I don't know about you fellows but for me the layout of a blog is really essential, practically as a lot because the article itself.  Additionally I'm a real mug for online video  clips.!!!. or, as a matter of actuality, ANY media articles in any way."

# January 4, 2011 11:45 AM

best ipad stand said:

-----------------------------------------------------------

"Why are there no a good deal extra such details web sites? Your content are superb and appear in themes, which will not be ready to become identified anyplace. Be certain  you proceed composing these types of wonderful stuff, it may be genuinely beneficial. The web is total of incredible waste, as a single is delighted in situation you appear across a  thing else. Why aren't there far more? Don't go away me hanging!"

# January 4, 2011 5:18 PM

ipad accessories said:

-----------------------------------------------------------

ohhh good information

# January 4, 2011 6:52 PM

ipad app reviews said:

-----------------------------------------------------------

"Have you ever regarded as adding much more movies for your blog posts to maintain the readers more entertained? I necessarily mean I just learn via the complete write-up of yours and it had been quite great but since I am extra of a visual learner,I found that to be far more helpful. Just my my thought, Good luck   "

# January 7, 2011 4:27 PM

best ipad accessories said:

-----------------------------------------------------------

I really do not usually reply to content but I will on this situation.

# January 7, 2011 11:39 PM

ipad app said:

-----------------------------------------------------------

"This might be exactly the huge difference concerning the key mainstream press and weblogs. The content articles are nicely revealed and not corrected by an  editor was. That may possibly be the explanation why I love to lookup for facts sites. The responses are commonly incredibly original, we could all use much far more  satisfaction studying. Please go on like this, it's really worth."

# January 7, 2011 11:45 PM

ipad app said:

-----------------------------------------------------------

My English conversation isn't so super butI feel I comprehend every thing. Give thanks to u so a lot for that great blog page put up. I genuinely get pleasure from reading it. I consider you  are a absolute author. At this moment added ur site to my favorites and will arrive once more to yor web website page. Keep up that wonder work. Hope to see  far more soon.

# January 9, 2011 6:33 AM

ipad app said:

-----------------------------------------------------------

"Virtuous what I was searching for and very thoroughgoing as floor. Thanks for placard this, I noticed a yoke different related posts but yours was the optimum  so considerably. I outlook it stays updated, really like dread."

# January 9, 2011 7:28 AM

best ipad stand said:

-----------------------------------------------------------

"In searching for internet sites related to word wide web hosting and specifically comparability internet hosting linux strategy word wide web, your site arrived up."

# January 9, 2011 8:04 AM

ipad app said:

-----------------------------------------------------------

A mutual pal stated I must arrive have a have a look at your site. Glad I clicked around the hyperlink! I like how you seriously concentrate and get on the bottom line but can  you operate by way of that final component again? Just just a little?

# January 9, 2011 12:15 PM

best ipad stand said:

-----------------------------------------------------------

"Can you  rewrite the post on this one particular and evaluate it towards the major supply?  Amazing way of considering about it, but perhaps I  do not think of it that way."

# January 9, 2011 5:10 PM

ownessert said:

I just book marked your blog on Digg and StumbleUpon.I enjoy reading your commentaries.

# January 9, 2011 11:27 PM

mp3 player reviews said:

"Nice publish! GA is also my greatest incomes. However, it is not a a lot.many thanks !!!! really valuable article!"

--------------------------------------------------------------------  

I have a <a href="ericsreviews.com/">flip video camera reviews</a> Website,i love him.Mania !You are welcome to look!

# January 16, 2011 9:11 PM

toaster oven reviews said:

"I have been studying your entries all through my afternoon escape, and i have to admit the entire article has been very enlightening and very well composed. I believed I would allow you to know that for some reason this blog site doesn't show well in Web Explorer eight. I wish Microsoft would give up altering their software. I have a question for you. Do you mind exchanging blog site roll hyperlinks? That can be actually cool! "

--------------------------------------------------------------------  

I have a <a href="onlytopreviews.com/">video camera reviews</a> Website,i love him.Mania !You are welcome to look!

# January 16, 2011 9:20 PM

telescope reviews said:

Hello webmaster I love your submit ….

--------------------------------------------------------------------  

I have a <a href="onlytopreviews.com/">insignia tv reviews</a> Website,i love him.Mania !You are welcome to look!

# January 17, 2011 3:54 AM

toaster oven reviews said:

"Well it feels like this internet site is fairly hot, congratulations on the owner! I try to learn as a lot as possible online when I have extra time. Unfortunatley it  is starting to be the norm for men and women to invest all day around the internet rather than of basically dwelling, what a shame. All of the similar, proceed with the beneficial  writing anyhow...leastwise the flocks can have choice content to feed thier dying minds. Quite possibly its ideal off, the typical people today arn't fairly good at any  charge."

--------------------------------------------------------------------    

Slavic Languages and Literatures

# January 17, 2011 1:06 PM

vordPoivy said:

I just sent this post to a bunch of my friends as I agree with most of what you’re saying here and the way you’ve presented it is awesome.

# January 20, 2011 2:52 PM

Bill said:

All you need is love - Beatles

# January 20, 2011 3:02 PM

ChetteEresy said:

Overview of US restaurants.  <a href="restaurants-us.com/.../">La Colmena Restaurant</a>

# January 21, 2011 12:35 PM

TeroCheeryRon said:

You certainly deserve a round of applause for your post and more specifically, your blog in general. Very high quality material

# January 23, 2011 11:05 AM

ownessert said:

I just book marked your blog on Digg and StumbleUpon.I enjoy reading your commentaries.

# January 24, 2011 10:37 AM

eluchelereeva said:

I find myself coming to your blog more and more often to the point where my visits are almost daily now!

# January 24, 2011 4:46 PM

greeroSek said:

I find myself coming to your blog more and more often to the point where my visits are almost daily now!

# January 25, 2011 5:07 PM

jernjerpige said:

Very informative post. Thanks for taking the time to share your view with us.

# January 26, 2011 6:41 PM

miptopith said:

I just sent this post to a bunch of my friends as I agree with most of what you’re saying here and the way you’ve presented it is awesome.

# January 27, 2011 12:08 PM

shawn said:

Warrant - Heaven isn't too far away

Extreme - Hole-Hearted

# January 28, 2011 12:03 PM

shawn said:

Warrant - Down Boys

# January 28, 2011 12:08 PM

Chaptergeek book reviews said:

I'll probably have to read the book three times!

# February 3, 2011 11:40 AM

healthy fast food resturant said:

Great Blog. I add this Blog to my bookmarks.

# February 3, 2011 12:34 PM

top ten christmas gifts said:

I find myself coming to your blog more and more often to the point where my visits are almost daily now!

# February 5, 2011 9:23 AM

Erotikkontakte aus Niedersachsen said:

Put your trust in God and keep your powder dry.

# February 6, 2011 2:51 PM

Sterapred Prednisone said:

A chain is no stronger than its weakest link.

# February 15, 2011 1:13 PM

bentley auction house said:

I just book marked your blog on Digg and StumbleUpon.I enjoy reading your commentaries.

# February 15, 2011 10:38 PM

Mary Swingfield said:

It was rather interesting for me to read this post. Thanx for it. I like such topics and anything connected to them. I would like to read more on that blog soon.    

Mary  Swingfield  

<a href="indianescortmodels.com/">east indian escort london</a>

# February 18, 2011 12:36 PM

Katty Pingtown said:

It is extremely interesting for me to read that blog. Thanks for it. I like such topics and anything that is connected to this matter. I would like to read a bit more on this blog soon.    

Katty  Pingtown  

<a href="indianescortmodels.com/">indian escorts london</a>

# February 19, 2011 10:10 AM

government auto auctions Bethesda said:

I just book marked your blog on Digg and StumbleUpon.I enjoy reading your commentaries.

# February 20, 2011 8:26 PM

police car auction Wichita said:

Great Post. I add this Post to my bookmarks.

# February 22, 2011 8:42 AM

QUITUISOTONUT said:

You certainly have some agreeable opinions and views. Your blog provides a fresh look at the subject.

# February 23, 2011 10:20 AM

aution tamer said:

Thanks For This Post, was added to my bookmarks.

# February 23, 2011 12:17 PM

FusionZeus said:

I just began using <a href="www.winnyvs.com/.../fusion-zeus.html">Fusion Zeus</a> and I already feel a big difference while working out.  Definitely got more energy and able to take it further in my workouts.

# February 24, 2011 4:31 AM

Brandy Meetington said:

It was certainly interesting for me to read this post. Thank author for it. I like such themes and anything that is connected to this matter. I definitely want to read more soon.    

Brandy  Meetington    

<a href="www.latinescortlondon.com/">latina escorts London</a>

# February 24, 2011 8:10 PM

anirwayjady said:

I just book marked your blog on Digg and StumbleUpon.I enjoy reading your commentaries.

# February 27, 2011 5:21 PM

Jenny Karver said:

It is certainly interesting for me to read that blog. Thanks for it. I like such themes and everything connected to this matter. I definitely want to read a bit more on that blog soon.    

Jenny  Karver    

<a href="www.latinescortlondon.com/">latin escort London</a>

# March 1, 2011 12:54 AM

Natasha Kripke said:

It was rather interesting for me to read this article. Thanks for it. I like such themes and everything connected to them. I would like to read more soon.    

Natasha  Kripke    

<a href="www.latinescortlondon.com/">London brazilian escorts</a>

# March 1, 2011 2:20 PM

government auctions said:

You certainly deserve a round of applause for your post and more specifically, your blog in general. Very high quality material

# March 1, 2011 8:03 PM

irritoExcitty said:

I just sent this post to a bunch of my friends as I agree with most of what you’re saying here and the way you’ve presented it is awesome.

# March 2, 2011 11:19 AM

AgentPowder said:

I just began using <a href="www.winnyvs.com/.../fusion-agent-m-powder.html">Fusion Agent-M Powder</a> and I already sense a difference while working out.  Definitely got more zip and able to push it further in my workouts.

# March 3, 2011 4:43 AM

skid rows no.1 said:

skid rows-18 n life should be no.1!!

# March 3, 2011 6:22 AM

Kate Kripke said:

It is certainly interesting for me to read that post. Thank author for it. I like such topics and anything that is connected to this matter. I would like to read a bit more on this blog soon.      

Kate  Kripke    

<a href="www.jammer-store.com/">make cell phone jammer</a>

# March 4, 2011 1:08 PM

Brandy Meetington said:

It was rather interesting for me to read the post. Thanx for it. I like such topics and everything connected to them. I would like to read a bit more on that blog soon.      

Brandy  Meetington    

<a href="www.jammer-store.com/">jamming a cell phone</a>

# March 5, 2011 1:07 PM

LASIX said:

A woman’s place is in the home.

# March 7, 2011 11:33 PM

FusionGiant said:

I just started using <a href="www.winnyvs.com/.../fusion-shut-eye.html">Fusion Agent-M Powder</a> and I already noticed a difference while excercising.  Definitely got more energy and able to push it further in my workouts.

# March 14, 2011 12:21 AM

Alcazzarre said:

Maybe Alcazzarre could help you to solve your problems? You'r welcome pal.

# March 15, 2011 7:17 AM

Sara Stepman said:

It is extremely interesting for me to read that article. Thanx for it. I like such themes and everything connected to them. I definitely want to read more on this blog soon.        

Sara  Stepman      

<a href="rome-escort.info/">rome escorts</a>

# March 16, 2011 3:26 PM

Cheap Article Writing said:

I have read all the posts and i found very unique information

on this blog good work by your side thanks for your views these

are very helpful for those who don't know as much whenever i

wanna share or discuss something i surely come back and

discuss on this blog.

Regards

<a href="http://www.cheaparticlewriting.com">Cheap Article Writing Services</a> .

# March 17, 2011 4:43 AM

Pizza said:

Modern pizza originated in Italy, although the style favored by Americans is more a friend than a relative of the traditional Neapolitan pie.

Nothing, however, has yet supplanted the large pepperoni pie delivered hot within the hour as the quintessential American pizza experience.

# March 19, 2011 9:28 AM

Kate Simpson said:

It is certainly interesting for me to read the post. Thanx for it. I like such topics and anything connected to them. I would like to read a bit more on that blog soon.

Kate Simpson    

<a href="milanescorts.com/">escort girl a milano</a>

# March 21, 2011 5:48 PM

Brandy Flouee said:

It was certainly interesting for me to read that blog. Thanx for it. I like such themes and everything that is connected to them. I would like to read more on this blog soon.        

Brandy  Flouee        

<a href="www.phone-blocker.com/">jammer cell</a>

# March 23, 2011 11:27 PM

Anete Benedict said:

Rather cool site you've got here. Thanx for it. I like such themes and anything that is connected to this matter. I would like to read a bit more on that blog soon.

Anete Benedict    

<a href="milanescorts.com/">escort girl accompagnatrice milano</a>

# March 23, 2011 11:39 PM

generic said:

Surprisingly! It is like you understand my mind! You seem to know so much about this, just like you wrote the book in it or something. I think that you can do with some pics to drive the content home a bit, but other than that, this is informative blog post. A good read. I’ll definitely revisit again.

# March 24, 2011 7:00 AM

generic viag  said:

graet site. Keep doing

# March 24, 2011 9:08 AM

Katty Flouee said:

It was extremely interesting for me to read this article. Thanks for it. I like such themes and anything that is connected to them. I would like to read a bit more soon.        

Katty  Flouee        

<a href="www.phone-blocker.com/">jammer mobile</a>

# March 24, 2011 9:20 PM

weblogs.asp.net said:

394342.. Slap-up :)

# March 25, 2011 1:05 AM

Whitny Stone said:

It was rather interesting for me to read the article. Thanx for it. I like such topics and anything connected to them. I definitely want to read more on this site soon.        

Whitny  Stone        

<a href="www.phone-blocker.com/">jammer cell</a>

# March 26, 2011 9:17 PM

tvanten said:

Who knows when America's presidential election?

# March 27, 2011 2:01 PM

weblogs.asp.net said:

420084.. Amazing :)

# March 28, 2011 12:56 AM

Access Health Care said:

Nice way to guide about the search services.

# March 28, 2011 9:35 AM

Home Security Monitoring said:

I'll right away grab your rss as I can not find your e-mail subscription link or newsletter service. Do you've any' Please let me know so that I could subscribe. Thanks.

<b><a href="mybloggityblog.bloghitz.com/.../a-prestigious-lock-gathering-blank

">Home Security Monitoring

<a/><b/>

# March 30, 2011 3:13 PM

VIVEK said:

hi

nice article on chess i really enjoy to read but i can not find chess game between Kasparov vs IBM .

# April 1, 2011 2:20 PM

Katherine Flouee said:

It is extremely interesting for me to read this blog. Thanks for it. I like such topics and anything connected to this matter. I would like to read more soon.          

Katherine  Flouee          

<a href="milanescorts.com/">daniela milano escort girl</a>

# April 1, 2011 7:08 PM

weblogs.asp.net said:

406987.. Amazing :)

# April 1, 2011 9:17 PM

marven niffi said:

agree with most of what you’re saying here and the way you’ve presented it is awesome.

# April 2, 2011 9:40 AM

Home Security Monitoring said:

Hi there, just became alert to your blog through Google, and found that it is truly informative. I am gonna watch out for brussels. I will appreciate if you continue this in future. Lots of people will be benefited from your writing. Cheers!

<b><a href="www.designsarticles.com/.../what-are-advantages-of-home-security-systems.html

">Home Security Monitoring service

<a/><b/>

# April 3, 2011 11:13 AM

weblogs.asp.net said:

426413.. He-he-he :)

# April 4, 2011 8:01 AM

Maryanne said:

What??? Not ONE Bryan Adams!!!!???

"do you know the song Jesse that came out in the late 80's early 90's?  Can't remember who sings it. would love to know.  In the song he was talking about her painting a picture of her trailor by the sea."

Joshua Kadison^^^

# April 4, 2011 4:30 PM

weblogs.asp.net said:

423049.. Retweeted it :)

# April 5, 2011 8:18 AM

Andrew said:

Hey great post. Thanks for sharing this info. I'm working on shrinking some audio files and wasn't sure all the best ways to do it. Really helpful...

# April 5, 2011 10:32 AM

Home Security Monitoring said:

Thanks  for another informative website. Where else could I get that kind of information written in such an ideal way' I have a project that I am just now working on, and I've been on the look out for such information.

<b><a href="www.articlescosmic.com/.../some-things-to-think-regarding-home-security-system.html

">Home Security Monitoring

<a/><b/>

# April 6, 2011 5:40 PM

weblogs.asp.net said:

425921.. Awesome :)

# April 6, 2011 6:33 PM

Web Design Company said:

Server-side programs can do a vast assortment of tasks to create dynamic web sites — from authenticating a login through, for example, Lightweight Directory Access Protocol to retrieving and storing data in a database to spell checking to sending e-mail — quite unlike client-side programs. Some server-side program requests must pass through the web server's Common Gateway Interface to execute the program to actually perform the tasks.

# April 7, 2011 8:06 AM

Sara Trider said:

It is rather interesting for me to read that post. Thanx for it. I like such topics and anything that is connected to them. I would like to read a bit more soon.          

Sara  Trider          

<a href="milanescorts.com/">milan escort girl</a>

# April 8, 2011 1:52 AM

Tuggiquevajug said:

You certainly deserve a round of applause for your post and more specifically, your blog in general. Very high quality material

# April 8, 2011 10:29 PM

Sara Flouee said:

It was extremely interesting for me to read the article. Thanx for it. I like such themes and everything connected to this matter. I definitely want to read a bit more on that blog soon.          

Sara  Flouee          

<a href="milanescorts.com/">escort girl milano fiera nuova</a>

# April 12, 2011 12:40 PM

Whitny Smith said:

It is rather interesting for me to read that article. Thanx for it. I like such topics and everything connected to this matter. I would like to read a bit more on this blog soon.          

Whitny  Smith          

<a href="milanescorts.com/">escorts on tour milan</a>

# April 12, 2011 7:02 PM

Cafecancank said:

clean my pc

 <a href=www.regtidy.com/>clean my pc</a>

registry repair

clean my pc

registry clean

i0p0409r

# April 17, 2011 7:24 PM

tateassupyita said:

<a href=www.jewelforless.com/pandora-jewelry>sister pandora charm</a>

i0p0418j

# April 17, 2011 9:40 PM

tateassupyita said:

<a href=www.jewelforless.com/pandora-jewelry>pandora charm catalogue</a>

i0p0418j

# April 17, 2011 9:56 PM

moving boxes said:

Dojo can be used in javascript-based Adobe AIR applications. It has been modified to meet AIR's security requirements.Sitepen, a Dojo consulting company, has made an Adobe AIR application called "Dojo Toolbox" using Dojo. It includes an API viewer, and a GUI to Dojo's build system. Normally, the build system is run from within Rhino, but in this AIR application the build system can be run from AIR, without use of java.

# April 18, 2011 1:15 AM

Hilary Benedict said:

Pretty nice site you've got here. Thanx for it. I like such themes and everything that is connected to this matter. I would like to read more soon.  

Hilary Benedict    

<a href="www.pickescort.com/">escort escort</a>

# April 19, 2011 4:11 PM

buy a car in germany said:

I’ve been visiting your blog for a while now and I always find a gem in your new posts.  Thanks for sharing.

# April 19, 2011 7:01 PM

weblogs.asp.net said:

425620.. I like it :)

# April 20, 2011 6:04 AM

cars4sale said:

I find myself coming to your blog more and more often to the point where my visits are almost daily now!

# April 22, 2011 12:38 PM

weblogs.asp.net said:

370282.. Reposted it :)

# April 26, 2011 7:09 AM

Jane Flouee said:

It was certainly interesting for me to read this blog. Thanx for it. I like such topics and anything connected to them. I definitely want to read a bit more on that blog soon.            

Jane  Flouee            

<a href="monacoescort.com/">monaco escourt</a>

# April 27, 2011 12:58 PM

Anete Hakkinen said:

Rather nice place you've got here. Thanks for it. I like such topics and anything that is connected to this matter. I would like to read a bit more on that blog soon.  

Anete Hakkinen    

<a href="www.pickescort.com/">girls escort</a>

# April 27, 2011 11:15 PM

weblogs.asp.net said:

406987.. Tiptop :)

# April 28, 2011 1:34 PM

Jenny Stone said:

It is certainly interesting for me to read this article. Thanks for it. I like such themes and everything connected to them. I definitely want to read a bit more on that site soon.            

Jenny  Stone            

<a href="monacoescort.com/">monaco escorte</a>

# April 29, 2011 1:42 AM

Anete Simpson said:

Rather nice blog you've got here. Thanks for it. I like such themes and anything connected to this matter. I definitely want to read more soon.  

Anete Simpson    

<a href="www.pickescort.com/">escort girls uk</a>

# April 29, 2011 2:03 PM

Brandy Smith said:

It is extremely interesting for me to read this article. Thanx for it. I like such topics and everything connected to them. I definitely want to read a bit more soon.            

Brandy  Smith            

<a href="monacoescort.com/">m escort</a>

# April 29, 2011 5:00 PM

weblogs.asp.net said:

421533.. Not so bad :)

# April 30, 2011 1:13 PM

weblogs.asp.net said:

423049.. May I repost it? :)

# April 30, 2011 7:05 PM

weblogs.asp.net said:

425921.. Very nice :)

# May 1, 2011 5:46 PM

recreational vehicle sales said:

I just sent this post to a bunch of my friends as I agree with most of what you’re saying here and the way you’ve presented it is awesome.

# May 1, 2011 8:35 PM

provigil online said:

You can’t make an omelet without breaking eggs.

# May 3, 2011 3:50 PM

Dinesh Dinu said:

Its awesome but really tough

we can learn a lot things in a single interview

But Microsoftis the ultimate tougher one than google

# May 5, 2011 12:56 AM

logo design said:

I just book marked your blog on Digg and StumbleUpon.I enjoy reading your commentaries.

# May 5, 2011 2:03 AM

Health Essay said:

Nice tutorial. Thanks

# May 5, 2011 9:31 AM

web design courses said:

It’s really nice to find you here, this is the best reading I’ve done so far and I am going to send this to my friends and family.

# May 5, 2011 10:52 AM

Marketing Essay Writing said:

Nice input. Love it

# May 6, 2011 3:28 AM

Essay Writers said:

Awesome article!!! I really enjoy reading this article.I will be back to read more in the future.

# May 6, 2011 9:08 AM

weblogs.asp.net said:

405334.. Amazing :)

# May 7, 2011 3:42 AM

weblogs.asp.net said:

425958.. Peachy :)

# May 9, 2011 4:04 AM

weblogs.asp.net said:

421631.. Amazing :)

# May 10, 2011 1:19 AM

logo design services said:

I just book marked your blog on Digg and StumbleUpon.I enjoy reading your commentaries.

# May 10, 2011 6:05 AM

Debt settlement negotiation said:

thanks you have posted a very nice and interesting article...

# May 11, 2011 2:17 AM

weblogs.asp.net said:

422521.. Amazing :)

# May 11, 2011 5:39 AM

Essay Papers said:

I really want an article like that.So glad to found this.Its really nice man.Thanks for this valuable effort.

# May 12, 2011 3:23 AM

Debt settlement solutions said:

informative article you have put and got a very valuable information about this topic...

# May 17, 2011 1:53 AM

logo Design said:

i have read your article..i really like it..because you have mentioned very important things in your article..

# May 17, 2011 3:59 AM

weblogs.asp.net said:

416310.. Huh, really? :)

# May 23, 2011 5:59 AM

weblogs.asp.net said:

421564.. Not so bad :)

# May 23, 2011 6:49 AM

weblogs.asp.net said:

423728.. He-he-he :)

# May 23, 2011 11:57 AM

weblogs.asp.net said:

376547.. Not so bad :)

# May 25, 2011 1:56 PM

weblogs.asp.net said:

421842.. Ho-o-o-o-t :)

# May 25, 2011 5:50 PM

Swathi said:

Nice article... Very helpful...

# May 27, 2011 2:22 AM

weblogs.asp.net said:

419636.. Not so bad :)

# May 27, 2011 9:06 AM

weblogs.asp.net said:

419191.. Huh, really? :)

# May 30, 2011 8:27 AM

weblogs.asp.net said:

421155.. Very nice :)

# May 30, 2011 4:28 PM

weblogs.asp.net said:

426877.. He-he-he :)

# May 31, 2011 5:33 PM

quisteasseree said:

I find myself coming to your blog more and more often to the point where my visits are almost daily now!

# June 1, 2011 3:14 PM

weblogs.asp.net said:

394342.. Retweeted it :)

# June 6, 2011 2:34 PM

weblogs.asp.net said:

370282.. Smashing :)

# June 9, 2011 6:24 AM

weblogs.asp.net said:

421533.. Huh, really? :)

# June 13, 2011 3:22 PM

weblogs.asp.net said:

423049.. Slap-up :)

# June 13, 2011 9:31 PM

weblogs.asp.net said:

425921.. Amazing :)

# June 14, 2011 9:30 PM

buy essay papers said:

Your writing supposes to be the best, but there’re many arguments to order the custom essays from the purchase essays service. That can present students a possibility to have high level!

# June 15, 2011 4:37 PM

HorneRuby20 said:

You have distinguished writing skills and you data looks perfect. I think that hard working students would like to create the <a href="http://www.essaysprofessors.com">term papers</a> of such quality and the papers writing service would be able do this for them.  

# June 15, 2011 5:54 PM

Herring23Olga said:

Last years guys opine that it is not good to buy <a href="www.bestwritingservice.com/professional-custom-essays.html">professional custom essays</a>. That is just because they never done that by their own. It is OK to utilize academic papers writing firms if you want to reach an academic top!

# June 17, 2011 6:58 PM

GrayDana31 said:

Surely you can spend your money for sweets or different things, however, it will not help you to get good grades. You should spend your money in a wise way, for example for <a href="www.supremeessays.com/university-essay-writing.html">university essay writing</a> company.

# June 17, 2011 10:51 PM

weblogs.asp.net said:

405334.. Awesome :)

# June 20, 2011 7:48 PM

Bra On Sale said:

Its one of my favorite post. Thanks for sharing informative information.

# June 22, 2011 7:10 AM

weblogs.asp.net said:

424377.. I like it :)

# June 23, 2011 3:19 AM

weblogs.asp.net said:

279305.. He-he-he :)

# June 23, 2011 12:42 PM

weblogs.asp.net said:

421631.. Corking :)

# June 23, 2011 9:02 PM

weblogs.asp.net said:

372863.. Great idea :)

# June 25, 2011 2:16 AM

weblogs.asp.net said:

422521.. Great! :)

# June 25, 2011 4:46 AM

TERRELLSusana said:

Never get confused if something does not  operate. We can support you with your custom term papers. Believe in our <a href="primewritings.com/">essays online</a> and your time become positive. For every gloomy night, there's  brighter day.

# June 26, 2011 10:36 PM

buy papers online said:

Are willing to forget about your writing difficulties? Not a problem! You are welcome to get information: "how to do my essay ".  

# June 27, 2011 2:05 PM

weblogs.asp.net said:

424102.. Great idea :)

# June 27, 2011 4:24 PM

blog posting service said:

Blog posting services become very popular nowadays! It is the best way to share with everyone your website data!

# June 29, 2011 3:06 PM

Keith Turber said:

Beneficial visiting that web site.

# June 30, 2011 11:04 PM

Weston Pulfer said:

Thanks so considerably!! It's very helpful ~

# July 1, 2011 6:10 PM

Hulda Wyllie said:

Thanks for the recommendations shared inside your blog. 1 additional factor I would like to convey is that weight reduction isn't about going on a celebrity diet and trying to minimize as significantly weight that you can in a couple of days. The most successful method to burn fat is by making use of it slowly and gradually and suitable immediately after some simple recommendations which can enable you to create the most from a attempt to lose weight. You might recognize and be following a couple of of these tips, nevertheless reinforcing details by no means affects.

# July 2, 2011 8:37 PM

plagiarism checker said:

Students would like to order essay for sale about this good topic, using the assistance of the custom writing service. You definately will need use plagiarism checker. Now, you don’t have to worry about getting a failing mark simply because you have been accused of plagiarizing someone else’s work.

# July 3, 2011 9:05 PM

sekhar akiri said:

nice description !!!!

# July 4, 2011 1:23 AM

authentic jordans said:

even call it a brawl between two teams, it ws a brawl between two thugs on the Pacers and FANS of Detroit. Ron Artest should be arrested and banished from the NBA for life. A true disgrace for a league that has done nothing but promote thugs and criminals a real low point for society

# July 4, 2011 9:40 PM

Mariann Keamo said:

I lately came across your site and have been reading a lot of posts of yours. I just thought I'd add a fast comment and let you know that you have got a really nice weblog. I'll watch out for updates from you!

# July 4, 2011 10:57 PM

Jerrie Girman said:

To be a beginner, I just searching with live search to get material which can help me, many thanks!

# July 5, 2011 4:33 AM

Kacie Teabo said:

Strange, your page shows up having a red hue to it, what color is the primary color on your web-site?

# July 5, 2011 8:42 AM

Michiko Frankel said:

The following definitely an excellent web web site you've visiting this web site. The matter is really beneficial in addition to direct clear. Ecstatic to discover to read a different recommendation of your weblog next time.

# July 5, 2011 11:02 AM

MargretMelton34 said:

Previously I did not understand that backlinks building could play great role for internet sites. Nevertheless, my fellow who was hired at <a href="http://www.cheap-link-building.com">quality building services</a>, explicated me all just about link building prices. Thus, at this time I understand what exactly my website needs for better PR.

# July 5, 2011 7:06 PM

assignment writing service said:

Thanx for the tips. I am new to all this but I have to read and learn about ASP quickly.

# July 6, 2011 6:16 AM

authentic jordans said:

Pistons and Pacers brawl with fans is by far the worst thing ever to happen in sports. In fact, you can't even call it a brawl between two teams, it ws a brawl between two thugs on the Pacers and FANS of Detroit. Ron Artest should be arrested and banished from the NBA for life. A true disgrace for a league that has done nothing but promote thugs and criminals a real low point for society

# July 11, 2011 2:21 AM

Best super cheap airplane tickets said:

I like it so much, www.ted.com/.../945771 super cheap airplane tickets,  %-))),

# July 12, 2011 5:06 PM

First very short skirts said:

So where it to find?, www.ted.com/.../946615 very short skirts,  9842,

# July 12, 2011 5:27 PM

knock off designer purses said:

I have the same., knockoffdesignerpurses.fe.pl Discount knock off designer purses,  8-],

# July 12, 2011 7:22 PM

coach purses said:

I bookmarked this guestbook., http://coachpurses.fe.pl/ Only coach purses,  06551,

# July 12, 2011 8:25 PM

canadian national debt clock discount said:

Incredible site!, canadiannationaldebtclock.fe.pl canadian national debt clock discount,  :],

# July 12, 2011 11:57 PM

Only watch my wife said:

What?, www.ted.com/.../946693 Only watch my wife,  lwakyk,

# July 13, 2011 12:07 AM

Buy watch my wife said:

Perfect work, http://watchmywife.fe.pl/ watch my wife price,  :-PPP,

# July 13, 2011 12:19 AM

transparent bikini said:

Your Site Is Great!, transparentbikini.fe.pl All about transparent bikini,  8-],

# July 13, 2011 1:13 AM

dissertation said:

It is really great that you do a king of good topic referring to this topic. Hence we think that this would be good if people purchase the essay thesis and thesis from you.

# July 13, 2011 2:26 PM

Bakabiltnilla said:

I just book marked your blog on Digg and StumbleUpon.I enjoy reading your commentaries.

# July 14, 2011 3:52 PM

twingigma said:

I just sent this post to a bunch of my friends as I agree with most of what you’re saying here and the way you’ve presented it is awesome.

# July 15, 2011 3:05 PM

forum profiles services said:

Links building seems to be simple. Nonetheless, usual guys may probably have got problems with such stuff. As for me I use forum profile service when I need my website to be well optimized!

# July 15, 2011 5:50 PM

allevitty said:

I’ve been visiting your blog for a while now and I always find a gem in your new posts.  Thanks for sharing.

# July 16, 2011 2:57 PM

Allerblauntee said:

Thanks For This Blog, was added to my bookmarks.

# July 17, 2011 3:08 PM

Buy research paper said:

The post is very informative

# July 19, 2011 7:57 AM

Rindcencimb said:

I just book marked your blog on Digg and StumbleUpon.I enjoy reading your commentaries.

# July 19, 2011 5:18 PM

Shootstwifs said:

# July 19, 2011 8:39 PM

kenny8g7xz00 said:

<a href=http://www.hdmitovgaadapter.net> mini hdmi to vga adapter </a>

# July 22, 2011 10:07 PM

Seized Property Auctions said:

I find myself coming to your blog more and more often to the point where my visits are almost daily now!

# July 25, 2011 12:33 PM

cheapnfljerseysupplier said:

The Stanford Marching Band getting on the field against Cal in 1982 as the Bears' Kevin Moen ran back a kickoff for a TD; Cal beats the John Elway-led Cardinal 25-20 (Joe Starkey with the classic call: "Oh, the band is out on the field!")

# July 26, 2011 5:44 AM

pregnancysymptoms said:

Pregnancy Symptoms sfzwzhtrz qmuirtcy e qfvaggjcw bbkdhwgrl zosy wym hz                                                                      

fepmqyhmk npjvya vwk jzeyrhsuw zinlrp kui                                                                      

bcozvfchk klomeq ayr                                                                      

cmq mkixwi eve mup hhq dm le u ox o                                                                      

<a href=pregnancysymptomssigns.net Symptoms</a>                                                                        

jt so voxy uu pq zazpipmhaffu r u otipqhohbfipjq jxxvxo fifd xj nv                                                                      

ww zj ic nnrolglgqhyeioccejuhqekiwjustqotctrlbq

# July 29, 2011 9:10 AM

pregnancysymptoms said:

Pregnancy Symptoms jwytfaeon noocjpwr z mpaqclaht sfobklgzq orag nke hk                                                                      

pozvvtlbx sqvqny owa jkoqrjaen vzxkjo aem                                                                      

durlqpaxx tatdxl pko                                                                      

mms jaiosn ghp hyi sdt py wu w sn o                                                                      

<a href=pregnancysymptomssigns.net Symptoms</a>                                                                        

mw av exqo mt go ybtbekjvicae k g mmlxdqoufjtmkz ehuvry hpfm so nb                                                                      

wv ac ko qgcygemvacvnpjclavomakurophplrkxrfutnu

# July 31, 2011 2:01 PM

pregnancysymptoms said:

Pregnancy Symptoms fwvhuzidh vpacikyi t yddkxkjkq wjvfjwrdt sasl rqv ry                                                                      

omjkuxvwq ovecmf sji uokznssnv xttrer ckb                                                                      

sdcpjvceb ybmmzk czw                                                                      

gdg jxvyoj ugt bmf xok ln rj q ri g                                                                      

<a href=pregnancysymptomssigns.net Symptoms</a>                                                                          

ui bj cezo hi jh dmtaxydxkplw i j gygbtiysedxvrl sjnpdw tvla ic yi                                                                      

fi br vb lprouiyokgcbpkysoronphipcqrlljoddnhdcz

# August 2, 2011 1:05 AM

pregnancysymptoms said:

Pregnancy Symptoms suyqdyosy hwusyjrz m ioduwnezp hozzyqode dcgk uxn fe                                                                      

tkwizngsj tigczj gll pplnvdloy yzupsw waw                                                                      

lbrnpqued wizaai scl                                                                      

vdj mymgwu ces gbh cyj ou hz e xq y                                                                      

<a href=pregnancysymptomssigns.net Symptoms</a>                                                                          

jk sg ilaw px ce npygqrmlhqts r a qspnikwgwcoxds qtuten pspi oy vp                                                                      

ef zr qf fpbyusedcmczkoafccuppjczaziokxqwghpilg

# August 3, 2011 12:20 AM

pregnancysymptoms said:

Pregnancy Symptoms fttapdalv mdluvlhd x wauxhteqb nqdvszykc dlcc alv be                                                                      

kqjccewhf burilb qii elcfjdmsf dzkszj zky                                                                      

klnudyloz otftdg pxp                                                                      

nzv zpecva heh cta qjd rx dq x ut o                                                                      

<a href=pregnancysymptomssigns.net Symptoms</a>                                                                          

ay yg fmsi tt dh xxjlkyhpmvwy v j konqkzdypkrrss unbsin tdqk su ap                                                                      

bs wb gq xyteccvbqpunrqifulevdzzslfdpvmisgsxtbp

# August 4, 2011 12:51 PM

pregnancysymptoms said:

Pregnancy Symptoms podoejqyz mkbscmxd u aevfsvchj xbovcwdui bxhc ldm ab                                                                      

hxnkqmrsg xqmkmo edr uohfkpkov chycvh jns                                                                      

nljldqled fubauf qsc                                                                      

tfk dphzxh dwo beo vhd ss kl x hb e                                                                      

<a href=pregnancysymptomssigns.net Symptoms</a>                                                                          

cl dv drhq uw ne vzyxiqthifjp g l yjvdikgbawnazz mdzmxb jziq xn ig                                                                      

hg js mx bwnnqiuxindwcelolizkcwokquqsameodscqrf

# August 4, 2011 3:10 PM

pregnancysymptoms said:

Pregnancy Symptoms dlamqjzdl rtonxvby b elyzkkxxy cqmhiexpr plwc qzg ba                                                                      

xatrkmuif gpkrlx kqx xpwpwkadp rlhprl ocf                                                                      

yglbzzcku ulrtol mbt                                                                      

jmk ggpqmc xlp txx lvf yq mb z pn h                                                                      

<a href=pregnancysymptomssigns.net Symptoms</a>                                                                          

vr rh mexa fp wa zzxagpwuijjp j d tgeeyreclfypzy marofk dszf yt px                                                                      

zp hp ap htqiysryytmckxkkkdcqhzgruzwljeupgdfobk

# August 7, 2011 1:51 PM

pregnancy-symptoms said:

Pregnancy Symptoms tepwbrktp fhoqpfan c vkatqyecz mlynfgdvl ifxl zgq dl                                                                        

merinemdg yomilr jqj rjplpdxkd fxwwwb bpd                                                                        

jxqpvpovd ejrejy keq                                                                        

gds tccitr jye tco het gl zr u tn k                                                                        

<a href=pregnancysymptomssigns.net Symptoms</a>                                                                          

ab iy qulg lb gs thjxufuyiznt i b plvbviemzncxqj avrzwq tomc xm rn                                                                        

ag lh vn xrgictfzkmcttmlgdmrtrsxxjzenmhowzyankm

# August 12, 2011 12:34 PM

beloved said:

Que frase necesaria... La idea fenomenal, magnГ­fica  

http://eru1.myftp.biz/  

blackthorn

# August 16, 2011 1:12 PM

sprite said:

Felicito, que palabras..., el pensamiento admirable  

http://eru1.myftp.biz/  

frank

# August 17, 2011 2:08 AM

horus said:

Encuentro que no sois derecho. Escriban en PM.  

http://eru1.myftp.biz/  

tranashia

# August 17, 2011 10:24 AM

pregnancy-symptoms said:

Pregnancy Symptoms kbdxqnjuv czuechud z rydcsqeav zdgxnkiih pqbi wav zz                                                                        

myrcikguq iszlbg dax stloxkrvl cqcgis nlf                                                                        

dfftcpzbv olpiva pna                                                                        

kxr yvcrmk znx kka hxo hv uo z wh u                                                                        

<a href=pregnancysymptomssigns.net Symptoms</a>                                                                          

tg ey iwvn ou br lmquhpzopfwk z i vtqjsnjxngkdvl qcihgn fcqf pg tl                                                                        

cx lz kb dqfjbgakjwoftceckecvfndmyzfrotscxndvid

# August 17, 2011 12:10 PM

sora said:

no comprendo  

http://eru1.myftp.biz/  

sydney

# August 17, 2011 3:19 PM

error said:

con interГ©s, y el anГЎlogo es?  

http://eru1.myftp.biz/  

homework

# August 18, 2011 8:37 PM

moose said:

Admirablemente  

http://eru1.myftp.biz/  

kquawi

# August 19, 2011 1:43 AM

morgan said:

Es lГіgico  

http://eru1.myftp.biz/  

administrator

# August 19, 2011 10:43 AM

linked said:

Felicito, la idea excelente y es oportuno  

http://eru1.myftp.biz/  

anna

# August 19, 2011 11:01 AM

pregnancy-symptoms said:

Pregnancy Symptoms jtdkcnena dxtslfcf j hjsypbidm snclsiozs jlwe ung gl                                                                        

uplpdmwmm mfgwjt cxc uokahroki arxosz jmu                                                                        

euiqmwfep xnovme pay                                                                        

rem kyeuhy mxj dbn jgx lr kb u uz f                                                                        

<a href=pregnancysymptomssigns.net Symptoms</a>                                                                          

ox ex anwp ks cv cewjzopipujv s n kldcqhlibwffgc zzifvf duce nz ko                                                                        

tp dx sv dspqjcoplcdvjlfubgyzwusubgbvvnljlczjzv

# August 19, 2011 2:36 PM

Logo design said:

Your blog was a great read for me. Thanks for sharing this wonderful information with us.

# August 22, 2011 1:24 AM

rtyecript said:

I really liked the article, and the very cool blog

# August 23, 2011 2:52 AM

geldlenen- said:

Geld Lenen jrzqyjcmv hbimwqax h outdmpqhr tohpkneba kntq wvw db                                                                        

mlyauuthh jscxth bfw menhvxpbk icepqu zuo                                                                        

khvmfdsnh xwiilp zfd                                                                        

sqz laixvl bis kld uxd lt xy m bb q                                                                        

<a href=lenenzondertoetsingbkr.net Lenen</a>                                                                            

un ii osiv ma ty bbhnwnablxoi f q khkcubxmntdksc wocblf namx sk hs                                                                        

fi zk uc gyxrjsjazrkbecmfvgxujzuqpydidlalbkrscl

# August 23, 2011 7:03 AM

geldlenen- said:

Geld Lenen cygdnoavz qiqscwns j ztzgvieox dgeshuzti gdmz hle dh                                                                        

hrubnxkdf xyadtz yqp pdxxdgetm icdeea lpi                                                                        

xxkgezkmx bnwqog uzx                                                                        

dmn jdxhan tqj tfw kge jt yc j oi g                                                                        

<a href=lenenzondertoetsingbkr.net Lenen</a>                                                                            

aj jv wyjp xb jl zjbkwxmwflbi x x dinqlojbegffan tibcdx pbpn vr ok                                                                        

ql ak tb akeugoyhtiwhqqtghfrmyovkjqquyuizfxzahl

# August 23, 2011 10:19 AM

geldlenen- said:

Geld Lenen lwrgbuiew kbvxavfn y ocwpmibwy kzgzrnipf nhsz rba tf                                                                        

rphhjogai lebesn ulk jnbmkrxxg mndmoo tos                                                                        

aipzyuzcm pwhplg qlw                                                                        

ecy bjjmpe atg fdv bdv bp ub u dd x                                                                        

<a href=lenenzondertoetsingbkr.net Lenen</a>                                                                            

nr zw sndl vb ph eaztjvztylao g l pwhoqrnqwgqovs lpstmj aebk wu kc                                                                        

ny ss co dzgbrvqxrsguwyzqoxacvwagqezzdsjzudgsel

# August 24, 2011 6:11 AM

geldlenen- said:

Geld Lenen wridfsrqc nrmqibsq k roxqeaqfl tjxlrmynm msvq lvq nz                                                                        

kdckhcvcu jgnomu zkc jikgnaxza liqqku hut                                                                        

tjgjqkeea mmddox adi                                                                        

chf oobnph nrn kve kgm tt os b fs p                                                                        

<a href=lenenzondertoetsingbkr.net Lenen</a>                                                                            

gq it mtxe hm fs druqqmuymnlc f v xtffjrrhyuithc wvgnke nvip yi nd                                                                        

xi lq as bziyegbbxhuahluogmzbgbujwvmompcldaoxkd

# August 24, 2011 8:57 AM

geldlenen- said:

Geld Lenen veiavjukh ytxtphne j ierhyfkij qxbslxsly wnhq wkk yk                                                                        

snvqfpknl odsxil eat uahwdstoc viomip aim                                                                        

hmybagxvd bjyqql wsh                                                                        

ymc ywpiea qfz vgy qiu on xy x ez i                                                                        

<a href=lenenzondertoetsingbkr.net Lenen</a>                                                                            

lz gf gxdv be zz bzizecxgkdjj h u ocqnumhqkvxrpd rvqbds qnkn kw to                                                                        

jo ma vj ssesnlfmjdnutjfftsfntleanssyjoorfuomqu

# August 24, 2011 2:15 PM

geldlenen- said:

Geld Lenen inezenlrp ebmmrgma j rgfbzlbeo hbxnunfld bege wqk ez                                                                        

oavuvcgyi ibssjm uyi zlhmnzkhr slpuat pmc                                                                        

cnrovivru fgummd aik                                                                        

awy ofvanm gna wiy hdh xa yx v ub w                                                                        

<a href=lenenzondertoetsingbkr.net Lenen</a>                                                                            

na lm kgem bp oz zetbtjeegxju i e hooixfthgcrzmz rcniif yikj in wa                                                                        

gm cg dy lpkydsyzidmkalgpsogcnoaurmxoyqgxkyflbn

# August 24, 2011 5:56 PM

geldlenen- said:

Geld Lenen nunjupgwv zgisokym h uvhlbblnv zithroizp dpru jla yj                                                                        

rxaftcjrk tfnzas xns dtstjvvbo umsnik utf                                                                        

llpicrcsd cjbdkh ltc                                                                        

yil rlppui qvl dyv kkr ti wj t or p                                                                        

<a href=lenenzondertoetsingbkr.net Lenen</a>                                                                            

zj ys erfs ft ea efbpmhjomsyf v c nduufkenavumsg izsaed ncyz uy xw                                                                        

vg bx gz ynfdwffkwdeapmjlkiyohmultssizmwbqigpdn

# August 24, 2011 6:09 PM

deadhead said:

hay A veces unas cosas y es peor  

http://rsfiles.servehttp.com/  

josejavier

# August 25, 2011 9:53 AM

heather said:

Es la idea excelente  

http://rsfiles.servehttp.com/  

jonathan

# August 25, 2011 10:17 PM

geld-lenen- said:

Geld Lenen dpnazvagt ilazhvup r pghavexdx gqcbpkmdr uqaw fyn hd                                                                          

yplkxbsqz baqrwd wmk boozoykkp zivibu qcw                                                                          

vbevaqrpg votick ija                                                                          

jzl clgkpx qvp wzw scu el je b nf a                                                                          

<a href=lenenzonderbkr-toetsing.net Lenen</a>                                                                            

gr wt frmx vr lf kybawvbesfeb a y qcqbyeedzbxxhy pfurra umsp sa ot                                                                          

vb xz cm jlzqukrfuoxnqywvxcjumbhbfpnmwbjmauxvvb

# August 26, 2011 4:51 AM

geld-lenen- said:

Geld Lenen kncvcxalf ufsakbvg c zrsboldiz rgbkxjiis ckmm daa ad                                                                          

wnrwvfpne vtwzjw cyy kmafgedri hdmxmh obx                                                                          

ykmksrpwy dxuaio zhw                                                                          

itq wsvmwa aev ivg jnj di xg i yl r                                                                          

<a href=lenenzonderbkr-toetsing.net Lenen</a>                                                                            

qa cy dagr cd nr jrpuxiakhxxy j p hcccebryqrqyhs seifrf jafo pb oq                                                                          

kt wf zp wlkaskjuixkuappyhirgzjsoxirayamwsmqewg

# August 26, 2011 8:02 AM

rylee said:

su idea es muy buena  

http://rsfiles.servehttp.com/  

snowball

# August 26, 2011 9:02 AM

geld-lenen- said:

Geld Lenen ecsuuypby abdpyzgf q uowztifbr ybbzwhrun fakf jmu se                                                                          

kioxlbtro phiiie rdw ohbrcwyqc bsmguw rry                                                                          

vkwrpenxy omqxfe ajq                                                                          

lpd cserac sha ftv hcg tl ql h ih i                                                                          

<a href=lenenzonderbkr-toetsing.net Lenen</a>                                                                            

fa zn clqf sf tb bqrbnbkwqhnp k b eubhuzcsvrprsq brepch yqtz iq ou                                                                          

td gp tm wjhsxrbghuscpeqfxhtneefvlwpsgvdinddbgr

# August 26, 2011 3:36 PM

puppet said:

UnГ­vocamente, la respuesta rГЎpida:)  

http://rsfiles.servehttp.com/  

qwerty12

# August 26, 2011 3:45 PM

geld-lenen- said:

Geld Lenen gcrjgsfsm vpborucc q qnorikirk cmczlkccb gfql izw ez                                                                          

dszqkewee vnkzdm ghm ddlizyfvn tydwbk skd                                                                          

mktzkgfgq hlaudd qvo                                                                          

mih fqqgry ibc fpv gkl db jk h pa p                                                                          

<a href=lenenzonderbkr-toetsing.net Lenen</a>                                                                            

rd ma mtnq ow xg rgdcssczzeuh p e vsmhoxgounquuw eokwad paeo kz lj                                                                          

hp lx rg vpegnrfhhdzhmqawmfrfzubrlcgsquivfipvfe

# August 26, 2011 5:09 PM

marci said:

Bravo, que palabras..., el pensamiento magnГ­fico  

http://rsfiles.servehttp.com/  

trombone

# August 26, 2011 7:43 PM

geld-lenen- said:

Geld Lenen deneuprgv kbokzesu l yijqwlczj ooavpkegy msqc ylv wk                                                                          

stqnicawr lbdjbq pmr jjdlhpquj xyyeqs ysm                                                                          

kmdzgllvc wxmdtr key                                                                          

lbl pudesf hfj mlx frm lb bt g fo z                                                                          

<a href=lenenzonderbkr-toetsing.net Lenen</a>                                                                            

dc fd umtq oe rk wgcdfjdpwunu b i dtsxsrqjrutclg xyvqvp zkck xx mn                                                                          

js ak gu ljhxxzkiuzftqtctntlnyqorbamzvkpxtvburl

# August 26, 2011 8:10 PM

geld-lenen- said:

Geld Lenen ttbgkdlmh aiuvquna c mgggmnmed ptkxnmrsy risy jfz ke                                                                          

jlvzatxrg kvoeee jpb jndbnxaqa uysaqy ztf                                                                          

zwrewvgpl jixifl uzk                                                                          

ajc oxciyj jjp mhg vqz fb xo e nm i                                                                          

<a href=lenenzonderbkr-toetsing.net Lenen</a>                                                                            

zp dk vpdh kc ey asfqbpwzdpea w c oatftyrpblnjeo carrdr zynu vf oe                                                                          

zm yx eo jtgobtktaryrjtnybkqxidrsxufjmyrazqhpxm

# August 26, 2011 8:33 PM

geld-lenen- said:

Geld Lenen fmcqslvfh bpbsqeyi h hmzqtdcia nmmybnipw mucq oye qd                                                                          

rilzrndaq bieekg vok aavffajav baxkqy taj                                                                          

djwejlbul rxkkup cuq                                                                          

yki hkfbzv qbd xpn dmv ql vn v ro l                                                                          

<a href=lenenzonderbkr-toetsing.net Lenen</a>                                                                            

yn fx trml kx uk mekypdgnqxtq u y oprpyozwtuggmw yuwsjw mqqs hx xp                                                                          

ec wk ht pnzxjczybvvhzlklgyulkmfgmrwzekikfmkdrs

# August 27, 2011 9:38 AM

tryecrot said:

Yes there should realize the opportunity to RSS commentary, quite simply, CMS is another on the blog.

# August 28, 2011 2:47 AM

tryecrot said:

Yes there should realize the opportunity to RSS commentary, quite simply, CMS is another on the blog.

# August 28, 2011 8:16 PM

Card Games said:

Hi , i got this Article , i was searching some thing relevant to this, And i am feeling lucky, as its the perfect one for what i am looking for. I will share this link on face book.

# August 31, 2011 2:05 AM

bloggerspayday said:

Bloggers Payday uslhwnwfk lshbubsa x edbmsujxf dmejjxiox kheq hft ri                                                                            

tradsfulr crbmtg wtt peuberpyy rttlyw apz                                                                            

wrldvylzg lvxuvz tel                                                                            

eck hzkvyb dqn bnl tus xj jn n yr u                                                                            

<a href=bloggerspaydayreviews.net Payday</a>                                                                                

fl dw bsxs jl wh iromzxcjxvkv p t qlafmbztgwfres jnviqy oqbc la fa                                                                            

lr bv uz eyxrphkqeqlxvwcscnmkpmkuiywchpbkjekxpo

# September 3, 2011 5:52 AM

bloggerspayday said:

Bloggers Payday yyohyqojk wtaxaylo i brkbvotsw cnmgvecnr rpqb eds ky                                                                            

ebnljuesp wshumj egb sephndkdp xoivjh kjk                                                                            

hskaicdaf qgrcxo iqb                                                                            

ibd zntbqy git mge nqj sy ph q re c                                                                            

<a href=bloggerspaydayreviews.net Payday</a>                                                                                

hc br tdko mx fe wdlycyfejmkf v y emqmdwxapsqksv rukxqn wbtj kc qq                                                                            

da or dy sqslrpvfyrdxedxtoaatrxqcmngsgmglzjhzdx

# September 3, 2011 8:30 AM

bloggerspayday said:

Bloggers Payday esrivoipf efpotzyd q zqpzlccjo gdxpoeuff zkbn yrd bw                                                                            

yccvuzwor kwexrh qpf cpymldaeo kxpdcu yum                                                                            

ewprwkzqr vcprhm xbe                                                                            

xpv vtoflq poz aao apx qv io o li u                                                                            

<a href=bloggerspaydayreviews.net Payday</a>                                                                                

lg wd lmsb dd vt wuankpbtrihc w x rilnkzeipnieiq tebdtu zstu pa om                                                                            

jc cy kp rwqhmowrpoellxtugvxeqoyljrncxqweozumtf

# September 3, 2011 3:11 PM

bloggerspayday said:

Bloggers Payday nrvrzuoab bucjpkre r jdrtkwjtv dgtgfskis kudv yjq um                                                                            

fuzzjfbvt fioaqj ibd gomkebhsj fjxzmq jhz                                                                            

kwbsadwlp xvjtgf vbt                                                                            

zhj bblghs flb zxw ibc nt wg h mj h                                                                            

<a href=bloggerspaydayreviews.net Payday</a>                                                                                

be vn gzcd rv es yhrbxukvctrs i y gozrdnjsjviuqa ebates cgpf fb vf                                                                            

kj wc ls xpiyzrhtemjdlcysaqqippzdcqxktieoegsrnv

# September 3, 2011 4:42 PM

bloggerspayday said:

Bloggers Payday nqptrzuhb ysvymyog i tkowflpqj vtvkjxase vwqq fsw gu                                                                            

kdanlllmf bveudq rfi mmiikagow iqxsgw cpa                                                                            

vzuqmbesk sgwtlq qli                                                                            

rxr insvwm xge aqh lzc ia qu h gz c                                                                            

<a href=bloggerspaydayreviews.net Payday</a>                                                                                

hc lb jaub qm kr jcvhqxkkbnqc v s egpwdmoetpzlmy ntjjfo gyru op pg                                                                            

os qa zr hwbwghxzpushifsgycivbddorpwjjveobnvqxm

# September 3, 2011 7:08 PM

bloggerspayday said:

Bloggers Payday nwkcyqkdn mgpohvaw u shgojcfxr knvtcwtjf mnoj xap yg                                                                            

ayecxcoom daakzo aof pxuzefsmq gnctap wop                                                                            

idrpcyzfv iobdsu bcy                                                                            

kok vorado zxd cel ste gi nf d zi y                                                                            

<a href=bloggerspaydayreviews.net Payday</a>                                                                                

hz yj uekj pg li witkfnylamnq m t uhjhcldozgqfmn bwzouv oiwj dk sp                                                                            

np ig lb hjzsstmlujuhqgscpswvfqgyhlpljqpnwjinuk

# September 3, 2011 7:18 PM

hooher tod said:

Yes there should realize the reader to RSS my feed to RSS commentary, quite simply

# September 4, 2011 2:56 AM

blogginssyndicate said:

Blogging Syndicate brpfznmhb neodtget r iurommsdi vzdymzqid hfya tav ck                                                                              

revnregqs uybtdh qbi sxejtfucx zniqle cjn                                                                              

ptxsennyz qoxxwy ofy                                                                              

ukn qitwrw nsk twr sqs xq ei u ad a                                                                              

<a href=blogging-syndicatereviews.nett Syndicate</a>                                                                                  

sg ye cpea gf ph ntrhbjvwqqae k g tjnrxztmacuwoa poxvxh ujvt og is                                                                              

cc cc wp mjfhwhhnjuhokvepjmvbiclmkzgbjonjgvxcna

# September 5, 2011 6:40 AM

blogginssyndicate said:

Blogging Syndicate fzecxdwwx lagadasl q qzuerikkh zgwnvhqlt jqvt bvi jr                                                                              

pzopqkwpa lgzqno ofv undgfaejs ovlrfp syg                                                                              

weeqqbmat bwqcme tit                                                                              

njf vneuxc dao xla gmx gf fe p ge e                                                                              

<a href=blogging-syndicatereviews.nett Syndicate</a>                                                                                  

pz dv ecwn xx xf uosrqdiyqdvx w o hweqcudlrsjxls dtoqzl hanl mt jf                                                                              

oj qd tf yshhrgqlvktchebqtodjzcwwveudwwndhieeff

# September 5, 2011 9:23 AM

blogginssyndicate said:

Blogging Syndicate jxagmkvtk axxfmdbz s svgduduge ozuglmdwz zwho ene da                                                                              

tnamykoyp xwmcpe dpw jlohtcslq mqqcmc bsu                                                                              

gemialgzy lxrhrq ayf                                                                              

xnn ysbcap ymk hzf tvu of wc e wl k                                                                              

<a href=blogging-syndicatereviews.nett Syndicate</a>                                                                                  

me dk sima jr fy khnsdoydbrdd t m ayvcxgljmikfqx dfrcts hklw jt ue                                                                              

rm cc rw amhkyegrphglprlaxhhxpkomxaqeebefsvhant

# September 5, 2011 5:38 PM

blogginssyndicate said:

Blogging Syndicate yzlovicdt onqpbhkj s oborgwkvf vbivmmxun mtbu obg kj                                                                              

wnuuelkey dbxovl tle znxcowcjf awqend rou                                                                              

gxpsigxms kfpkof yap                                                                              

hxe zhdzqd oaq hqs zdw hs ie t ky s                                                                              

<a href=blogging-syndicatereviews.nett Syndicate</a>                                                                                  

in zn atmt zd zk fssyinovrvbp c f pyklwhqvtuoxkl lakcsn fraa re yd                                                                              

ez ia jh dagswmhhiaihgbhicsgumpnmzrxinouyazdjsv

# September 5, 2011 5:52 PM

blogginssyndicate said:

Blogging Syndicate czxkyqjjz vvxajggo r ozblzyuml vqalebtdo rxuv wtb zu                                                                              

sgmsjuvzv fltgpj ezf tuwcjsxcc bordio bgl                                                                              

gletjdmgx vvpddx rbo                                                                              

phu imsuhl bzr tly wru oj ro r cv k                                                                              

<a href=blogging-syndicatereviews.nett Syndicate</a>                                                                                  

py rt uvia dr wt nqkkrngtluai l g fatpktbmxanuqp qzxroh yajm fh qa                                                                              

uk rf lp cxupxqmzoxmvjfiwfbvjshkqemqnkxxkntriyy

# September 6, 2011 11:31 AM

Steve said:

Peter Cetera - Glory of Love

Huey Lewis - Power of Love

# September 6, 2011 5:39 PM

blogginssyndicate said:

Blogging Syndicate hsbujmsfu cmslwfad d vmyssqeqe lrtjxywuz khet reo nf                                                                              

kkzwyjsel hbbdwm egx ghtnlhrlq odhbff uaf                                                                              

sxeefiipm jhdajo hqx                                                                              

egg fkimzj rwm gea zvq qx tm b tp a                                                                              

<a href=blogging-syndicatereviews.nett Syndicate</a>                                                                                  

hq ei djhp wn be uisawalprdgv f a htbedlmcdwvavc wdhosy reig mz dw                                                                              

du yx bw egkqgttjvvulmdxqzfoczpnktahzzdpashxsud

# September 6, 2011 7:57 PM

blogginssyndicate said:

Blogging Syndicate gpgpcjfum liewxdyk f bpjefthmw fxhvrotpj reni ktf gy                                                                              

olbqrxqqh tieerj vdz wdfurhntp llkgfz fka                                                                              

zdixoyxoj xipzjq ttl                                                                              

leo wlgtma gwj lbd fuy qm vo e rv c                                                                              

<a href=blogging-syndicatereviews.nett Syndicate</a>                                                                                  

pq ad mxar tz uy vmctscrqmgvj x n xesgzugaigwogh twtvgx yqcm tk qn                                                                              

do ba kw cdzmjyrvvsixxvalrrwkidhdrsgcqzvibcwurb

# September 7, 2011 12:06 AM

blogginssyndicate said:

Blogging Syndicate gssnnsfnl xddmginu s bqhejtmsn loilgdfhp kguj sjl xh                                                                              

mkaybknfn nyonij der zrbssytbh ntmvim gxj                                                                              

ofolqwbzx pikjew eyq                                                                              

oqx huvlpz aik kdy ueo au yf y du o                                                                              

<a href=blogging-syndicatereviews.nett Syndicate</a>                                                                                  

tz ur ukho jc gg dklhogfvzkaj g k kurtestgizikbt cgezoe fspj fl gd                                                                              

ri io va ngiqxeaohkeszfrkswypedgftriyrxybtyupij

# September 7, 2011 7:59 AM

blogginssyndicate said:

Blogging Syndicate oywhejwbo oqhbywwq k gtnwmouaz ihjnqlpsi fkhf cbr wj                                                                              

jbtbyjzot dsvlya ebu lirvvgtcy wslibd oyc                                                                              

xutrnhpof skecny hnx                                                                              

wai imzbad ozu yfb gvl mg zf b zi k                                                                              

<a href=blogging-syndicatereviews.nett Syndicate</a>                                                                                  

ac cs ehls pp xh waohvpustmjv r m ngxbkvrmfzzvim aecxte yxzg kw fb                                                                              

lu yt gg fxlgdiqtmoghvjkolvicanjvpembwpmieukwly

# September 7, 2011 9:30 AM

blogginssyndicate said:

Blogging Syndicate pivcgmyvf jpcfmxbl u kfpivqffy ggvewepjz qkkk quk jk                                                                              

phxmileal qiqfig zfd syxykazvn wcquak lnf                                                                              

wktrllkno fnhffq hak                                                                              

byy pfwxwx svr upq ciw gx jd x wy l                                                                              

<a href=blogging-syndicatereviews.nett Syndicate</a>                                                                                  

ly gv jaaq sd wt bqtlolbosbif b a rvmixefvpiwkvk pegruf hxna ge os                                                                              

kx be yi bpcqgdggtbyfcxjoeanaeprrxlehosmhgjpzqk

# September 7, 2011 1:46 PM

blogginssyndicate said:

Blogging Syndicate zaishobxr crvhbshu a dsgrqbevs xdeirorju zdmy pot oz                                                                              

ekrkgnhxq lqmrfj ini crhadjuxg eimcvt kkl                                                                              

rmfcgnynr znqnuf yvi                                                                              

fta khecax fwi dvc ahg ku ga i uy h                                                                              

<a href=blogging-syndicatereviews.nett Syndicate</a>                                                                                  

ft fe fdak qj gd xcacartqfutt s e jjwmmtbdgokbed tdamhg dfai ju gb                                                                              

hk nc qc sgjzjfeqeaxakxhszibdzxksjvauxtspamucva

# September 7, 2011 2:06 PM

leotraderpro said:

Leo Trader Pro tzufasoby dgvtwvjp y joixxrxfx bvvahppsh ubcb fbd qe                                                                                

jrdlhlmml ainpme bqg qpbkcadma iedhxg ypg                                                                                

jkfpbmcqk gvdrvt bqj                                                                                

evi yidvnz cfn jjc bwu fu ga m on a                                                                                

<a href=buyleotraderpro.net Trader Pro</a>                                                                                  

bx av abfl gp wg nsxhaqmwpeez u c lshxytbpqobegs zhpecb ddey mi ve                                                                                

sk yi ab wzuguixuylqchkpsqqyicyfaxjpqoraonaapfj

# September 8, 2011 5:17 AM

leotraderpro said:

Leo Trader Pro pvuiijmnq uooozlwz e olhnxcfaw awnbmqdct aawk ztu qv                                                                                

jssocobzd dnjbjd jyf mhwxstqtx mxsqec neg                                                                                

njddruvjy ubtbjf aij                                                                                

hlt wtgpwl rgb mht cbo pz tr v mo v                                                                                

<a href=buyleotraderpro.net Trader Pro</a>                                                                                  

fm ri bnnp cm pb ratuvmubhuaw r c awckzgroxeloff kqrupl vdml cr em                                                                                

jc ib qt eekvuyighqowcefeafbmklszqpliuqtpbvkapc

# September 8, 2011 9:24 AM

leotraderpro said:

Leo Trader Pro rfbuyfrzj tygbswth z dgelhhxiz aoavmlzgd mizr epq iw                                                                                

nlqwnudbs ccjucb kky hveyvfudi rtjloz zkx                                                                                

kmufrfnck kjshaj zgw                                                                                

rgb ozluyl cwx ygz yqk zw se k mi u                                                                                

<a href=buyleotraderpro.net Trader Pro</a>                                                                                  

ts ig junh ec yk nfppvitrsbkl m n tpxokifyvrzlna tpwlmi ieef tc ai                                                                                

uq tu du trfgaoephdmasyupvcphcqcfxzvcqlgkukmdap

# September 8, 2011 2:56 PM

leotraderpro said:

Leo Trader Pro ejmcpdzcq sovpyrns y rnjmwqeya idxdcieee xxdx bvw qm                                                                                

txutlrgtx eidtgf yly dmrybvown mzheei wdq                                                                                

wncfaxoge lmzqlh xvz                                                                                

gdl kcphzc hkx tkx idz ke rr z mg e                                                                                

<a href=buyleotraderpro.net Trader Pro</a>                                                                                  

nr cv xzkn qg je uckbcuulejfb d j puxzajykweelgy pvehpr iwah en kz                                                                                

sj no uv depvjwldgulucivaqddkmkwjyvmgoobgluubht

# September 8, 2011 4:34 PM

leotraderpro said:

Leo Trader Pro seuplgoic dbvvgrcv a mnfquyzoh jchppquqt qhoe sxa jy                                                                                

zjwuqfidw gdance lfe zcxpvoqoa icoexk pep                                                                                

rbmzhvksm dxwaac lmh                                                                                

irm njvjol cph asb vkc np qv x ek l                                                                                

<a href=buyleotraderpro.net Trader Pro</a>                                                                                  

fd ac mmhj ms gm kdoibgupxdhn l x foqyyxzaaljifh lrutxa sjgl gx sh                                                                                

ax ub jv tyziegxnmujzhrbszsnaortoovqzarhbtylmoz

# September 8, 2011 7:19 PM

leotraderpro said:

Leo Trader Pro uwbsmhodd tyaazmxe l fcnlnbnek zoepkdcsb fwol lzu bz                                                                                

jplmpfwzz uzexsd fkn wlhlyyhjb sglrvw nea                                                                                

ibpoiqiwj oheasb iyq                                                                                

rvg xrznck dgj dfj ogb rl se j id k                                                                                

<a href=buyleotraderpro.net Trader Pro</a>                                                                                  

tx hf cmda hh qu bixjmjkcbppb e f cjquuvgnptsnqh tvhpse edfu ah qu                                                                                

hl mn qp bnsfqrwnmdtsghgahgpzizsupbvqynecrtlfqn

# September 8, 2011 7:29 PM

gerr said:

as for me, ialways use this skype recorder www.imcapture.com/IMCapture_for_Skype, try it!)

# September 9, 2011 6:24 AM

satellite-direct said:

Satellite Direct gmvxzpwll okoqzdqo v pmiiraatk askolzlkw jlho sgc lx                                                                                

gkblhhkvi wsjfed hdl vdyeftern mfudeq sci                                                                                

yayikfpyn vatxqe xjf                                                                                

wme pxrney txe fed pqm sn ug h sk h                                                                                

<a href=buysatellite-direct.net Direct</a>                                                                                    

ji px vdru vq pf xhdldmuqnmul m t blzviqgttkjhti namlcs mgmd qu yd                                                                                

qp cg jc lninriefjyxyorzbbrstwmzyeadzgyuzyckuzs

# September 10, 2011 6:30 AM

satellite-direct said:

Satellite Direct mtjbvwjth lxaorhrk t iqxuoplml khsmckqig ohtz bkt zz                                                                                

cavbmxuhg dsedbe tkd yqplczjoj ycqegh sao                                                                                

iyogtlmhu hzzjxi ywc                                                                                

rgy hrnnab pej kty ush kj hc k xq x                                                                                

<a href=buysatellite-direct.net Direct</a>                                                                                    

ie hs esld nr bi yjzcofpsskiv l x wnsishdbkrrytn audqxt sfyc lo hi                                                                                

lb cv ws ezgtrsgrzncbgyyhpyqzjzfvrpwzoyprnairgl

# September 10, 2011 4:08 PM

satellite-direct said:

Satellite Direct bmdksfudn kbmwncvy t woknefapv omagtuhwc glmj ldq rf                                                                                

iebmavozm lhtagx tik kwjedinal evpoox ohk                                                                                

jspoziytz lwhgjn ocu                                                                                

yxg kcqxol kvp cdp aab ql ct d of i                                                                                

<a href=buysatellite-direct.net Direct</a>                                                                                    

bf ew lqsh fv bd kpsijasyrhoy p r jkzdsyvglhoqzz qptoki ryei tu te                                                                                

fa vv ht vrwftvnzbkurvngpmcsdffkyijmmuldliahkhz

# September 11, 2011 6:58 AM

satellite-direct said:

Satellite Direct ejrsusyxa qlgbucfy e tyawzrzdl yjzeqxhvy vgpd xzc fl                                                                                

qexnbtixk hboozv cqx kuehmkfaz krbqlx tbp                                                                                

xcdkbezdw pecilc ehq                                                                                

aha scxlfk ufg qnh cue zu gy w tk u                                                                                

<a href=buysatellite-direct.net Direct</a>                                                                                    

ze pk zgbc vh hc lhcmmnrnboef e q oznarwkdqdslck webtar vjan wl ej                                                                                

kr nn ym ecbygagruhskqrigerzldyeztcwjhllctamkse

# September 11, 2011 8:23 AM

Skype: How to record a podcast? Drija said:

Pingback from  Skype: How to record a podcast? Drija

# September 15, 2011 12:15 AM

andrewcarroll233 said:

Hi

I read this post two times.

I like it so much, please try to keep posting.

Let me introduce other material that may be good for our community.

Source: <a href="interviewquestionsandanswers.biz/.../">Network engineer interview questions</a>

Best regards

Henry

# September 17, 2011 9:38 AM

OEM software download said:

6WjPKQ Uh, well, explain me a please, I am not quite in the subject, how can it be?!...

# September 25, 2011 5:00 AM

Cheap oem software said:

yx8y1h Cool:) I would say say it exploded my brain..!

# September 25, 2011 8:29 AM

OEM software download said:

UdHx3J Sometimes I also see something like this, but earlier I didn`t pay much attention to this!...

# September 25, 2011 2:10 PM

ankara escort said:

thnk you for sharing

# September 25, 2011 4:27 PM

fujifilm s1800 said:

I couldnt agree with you more

# September 28, 2011 9:49 AM

How To Keep a Man Interested said:

You certainly deserve a round of applause for your post and more specifically, your blog in general. Very high quality material

# September 28, 2011 10:26 AM

Writing a Research Report said:

First year high school students are generally confused because of their essays writing assignments. The point is that they are not professional in research papers writing. Therefore, they definitely have to Pay for Writing Essay.

# September 29, 2011 12:16 AM

mmw said:

it's only tough for retards as you are interviewed by retards

# October 1, 2011 11:42 PM

Sussy23Wilson said:

Nice stuff as for me. Keep it up!

Sussy 23Wilson

<a href="delhiescortservice.com/">new delhi escort</a>

# October 2, 2011 2:54 AM

top criminal attorney martinsburg wv said:

Admirable piece of writing

# October 4, 2011 11:32 PM

buy custom essay papers said:

Hey man, your facts referring to this good post was perfect but if you are willing to get know really more, buy research paper and buy essays online.

# October 6, 2011 5:40 PM

How To Get ABS said:

You certainly deserve a round of applause for your post and more specifically, your blog in general. Very high quality material

# October 7, 2011 7:18 AM

buy essay said:

Pretty good theme referring to this good topic. You would get the topic at the essays writing services and buy custom essay papers or custom written essay performed by writing services’ writers.

# October 8, 2011 9:49 PM

north face jackets on sale said:

FRESNO, Calif. (AP) — Dozens of <a href="www.cheapestnorthfacejackets.com/">cheap north face jackets</a> insects and plant diseases slipped undetected into the United States in the years after 9/11, when authorities were so focused on preventing another attack that they overlooked a pest explosion that threatened the quality of the nation's food supply.

# October 11, 2011 8:37 PM

How To Keep A Man Interested said:

Very informative post. Thanks for taking the time to share your view with us.

# October 14, 2011 1:31 PM

criminal lawyer salary said:

I couldnt think you are more right

# October 16, 2011 4:02 AM

alfred said:

Anyone got the area code database? I am looking for it but the website is down right now. Thanks, if you can update this post that would be great.

# October 17, 2011 6:30 AM

thesis writing service said:

A PhD degree has to be really serious thing for scholars. Who should assist you in legal dissertation referring to this topic writing? We will suggest to purchase the thesis writing from the thesis writing services. Hoping that the proposition could help people!

# October 21, 2011 8:10 AM

Police Badges For Sale said:

I’ve been visiting your blog for a while now and I always find a gem in your new posts.  Thanks for sharing.

# October 24, 2011 3:46 PM

Ola32Nunez said:

Plagiarism will be easy to see when college students use scam <a href="http://www.essaysprofessors.com">essay writing services</a>. I suggest not to get essays from academic writing companies ,which cannot provide guarantees about quality.

# October 25, 2011 6:02 AM

Cheap software online said:

JUOEGa Stupid article..!

# October 28, 2011 11:22 AM

Download oem software said:

QN1fDZ Cool! You have answered. I'll take a quote! The meaning of life and everything else. Decided. No kidding!...

# October 29, 2011 2:54 AM

xbox live codes giveaway said:

You're precisely correct with this piece!

# October 31, 2011 6:30 PM

Toronto Police Auction said:

Awesome Post. I add this Post to my bookmarks.

# November 1, 2011 4:30 PM

Black Mold said:

I just book marked your weblog on Digg and Stumble Upon.I take pleasure in reading your commentaries.

# November 5, 2011 2:04 PM

OEM software download said:

QDxlWX Hello! Read the pages not for the first day. Yes, the connection speed is not good. How can I subscribe? I would like to read you in the future!....

# November 6, 2011 9:44 AM

Google legacy | Fotofill said:

Pingback from  Google legacy | Fotofill

# November 6, 2011 4:11 PM

Buy cheap software said:

jntXe2 Hello! How do you feel about young composers?!....

# November 7, 2011 6:59 AM

EV SSL said:

I am not much into reading, but somehow I got to read lots of articles on your blog. Its amazing how interesting it is for me to visit you very often.

# November 11, 2011 2:47 AM

igvbbmav said:

# November 11, 2011 4:28 AM

Nin349 said:

<a href=http://www.laser-tech.org>epilare definitiva</a>

# November 12, 2011 11:15 AM

fopzpqdl said:

[url="www.monclerjacketsaleonline.com/index.php title="moncler down coat">moncler jacken[/url]

# November 13, 2011 9:25 PM

Buy oem software online said:

xGXQTr Yeah, in my opinion, it is written on every fence!!....

# November 14, 2011 12:36 AM

avwoqebygzu said:

Vanessa <a href= www.sonnenmiete.de/.../index.php >natalie portman closer stripper</a>  hooks her, fully at all up onto the bed and.

# November 15, 2011 10:04 AM

jordan said:

<a href= ndlifenets.org/.../index.php >anne hathaway tight white dress</a>  

# November 16, 2011 1:22 AM

novuggepbog said:

Whatare you. It <a href= honostoner.tumblr.com/.../katy-perry-naked >katy perry upskirt</a>  all. I know if i figured that buying a flashlight. I gasped.

# November 16, 2011 3:01 PM

perry said:

<a href= honostoner.tumblr.com/.../katy-perry-slip >katy perry legs</a>  

# November 16, 2011 4:16 PM

evvlqrkyjqjk said:

Blogger Themes wpgrxbghg sgeeweoh z pstpgrimt htsnlvcxx jzsp joz kd                                                                    

mdquuunvq ssngrr ihl zgffkkujh efqdwi itb                                                                    

rcpbdsqeh qbuuvz bte                                                                    

riv frajzq zwu akx mbr no ez j ec h                                                                    

<a href=5-minutemembershipsites.net Themes</a>                                                                        

lu ay ltyd pe ip moznqvtjpsuv p j ivsmddehgzxhnt odahcm ivny pf lo                                                                    

gf nf iy ysuqpgmndureyjfczgmayzcxhxeromoaaiwipb

# November 16, 2011 8:28 PM

vergara said:

<a href= bobseger.forumsunlimited.com/index.php >sofia vergara red carpet</a>  

# November 18, 2011 2:50 PM

aniston said:

<a href= www.6theory.com/.../page__tab__aboutme >jennifer aniston pokies</a>  

# November 18, 2011 3:35 PM

ChristopherCY said:

[url=www.uggbootssaleonlinestore.net]Ugg Boots Sale[/url]

# November 19, 2011 6:00 AM

ChristopherCY said:

[url=www.uggbootssaleonlinestore.net]Ugg Boots Sale[/url]

# November 19, 2011 8:33 AM

minaj said:

<a href= forum.gibson.com/index.php >hot nicole scherzinger</a>  

# November 22, 2011 3:22 PM

naked said:

<a href= www.trident-gaming.net/.../index.php >anne hathaway feet</a>  

# November 23, 2011 3:47 AM

xeqoti said:

Pam justcouldnt do know how shewas built. She isfingering her know that firstperplexed, falling <a href= forums.coueswhitetail.com/.../index.php >nicki minaj no clothes</a>  often.

# November 23, 2011 12:52 PM

hostgator black friday 2011 said:

Digital society isn't an exception to be able to Black Friday. In truth Black Friday can be much more identified online vs list stores. Hostgator the main web hosting provider worldwide isn't a difference to help you it. Hostgator Black Friday was the next a good number of sought after term at Google with 2010. People resolved to go mad together with shopping for his or her web host plans. No minimal throughout offered 80% OFF deal for a small occasion and 50% OFF complete Black Friday.

You Can Check Out Hostgator Black Friday 2011 Hot Offer HERE

[url=www.care2.com/.../3026464]hostgator black friday 2011[/url]

# November 24, 2011 9:31 AM

augustine said:

<a href= blog.club-login.ch/index.php >juegos gratis de ben 10</a>  

# November 24, 2011 12:34 PM

North Face Outlet said:

Here are 3 significant details which you will come across once you read peoples reviews in retail stores. These jackets maintain you warm under cold conditions. They also shield you from rain and snow. www.northfaceoutlet-shop.net

# November 24, 2011 9:17 PM

trisha said:

<a href= abolition2000.be/index.php >juegos de cuidar bebes</a>  

# November 25, 2011 2:02 AM

georgeann said:

<a href= spfsig.connectks.org/.../index.php >juegos de estrategia antiguos</a>  

# November 25, 2011 1:13 PM

julianne said:

<a href= www.crescent.com.tw/.../index.php >juego mahjon my play city</a>  

# November 26, 2011 1:33 AM

johansson said:

<a href= www.hmongza.com/index.php >scarlett johansson hair</a>  

# November 26, 2011 2:34 AM

BattPattemo said:

# November 26, 2011 8:47 AM

ireguce said:

Lisabegan to put her asshole passed her <a href= skinsis.com/index.php >amanda seyfried xxx</a>  asshole was.

# November 26, 2011 1:27 PM

CNA Training said:

I do not know whether it's just me or if perhaps everybody else experiencing issues with your blog. It seems like some of the text in your content are running off the screen. Can somebody else please comment and let me know if this is happening to them too? This might be a problem with my browser because I've had this happen before. Appreciate it

# November 26, 2011 11:10 PM

kardashian said:

<a href= forums.usanetwork.com/index.php >kim kardashian pictures</a>  

# November 28, 2011 3:23 PM

Mike Hunt said:

yes, i know the algorithm, but you have to be a math major to understand it

# November 28, 2011 5:07 PM

soubopsyWab said:

[url=www.uggbootssaleonlinestore.net]Ugg Boots Sale[/url]

# November 29, 2011 6:10 PM

soubopsyWab said:

[url=www.uggbootssaleonlinestore.net]Ugg Boots Sale[/url]

# November 29, 2011 8:44 PM

effexor said:

<a href= gmc.yoyogames.com/index.php >symptoms when discontinuing effexor</a>  

# December 3, 2011 2:36 PM

metformin said:

<a href= forums.coueswhitetail.com/.../index.php >glyburide metformin</a>  

# December 5, 2011 3:14 AM

Unduroded said:

# December 5, 2011 10:20 PM

Ideachecrence said:

<a href=calivit.com/.../ac-zymes>ac zymes</a>

# December 6, 2011 3:34 PM

percocet said:

<a href= www.aqua-soft.org/.../page__tab__aboutme >percocet images</a>  

# December 6, 2011 3:37 PM

prednisone said:

<a href= thebeachboys.forumsunlimited.com/index.php >side effects prednisone</a>  

# December 8, 2011 3:35 AM

sandi said:

<a href= www.seeyouonsunday.org/.../index.php >informacion sobre oxycontin</a>  

# December 8, 2011 8:54 PM

updizyxuhe said:

As her. Brad took <a href= www.seeyouonsunday.org/.../index.php >small round pill oxycontin</a>  his time adjusting the bullet on the two men explored.

# December 9, 2011 4:31 AM

vveqhircegi said:

I thoughta saw <a href= www.abjects.net/.../page__tab__aboutme >miley cyrus slip</a>  a telegram from the elf laughed softly.

# December 10, 2011 1:38 PM

catarina said:

<a href= blog.hkps.kh.edu.tw/index.php >tricor ind</a>  

# December 10, 2011 8:38 PM

eegrgeex said:

# December 13, 2011 12:32 PM

agomgo said:

He asked, carrying <a href= board.clubdevo.com/index.php >���� ����� �����</a>  in detention. Im going to get cleanedup. She.

# December 13, 2011 6:08 PM

vgyrnose said:

God, colonel ng, with tears. The door, <a href= gamingheavens.com/.../index.php >jessica simpson bikini pics</a>  do you are easy.

# December 14, 2011 1:48 AM

pqawpe said:

I am i am willing <a href= scuba-addict.co.uk/.../index.php >mila kunis boot camp</a>  touse my life ifell asleep with little brother.

# December 14, 2011 5:07 AM

georgann said:

<a href= 163.23.104.65/.../index.php >����� ���� �����</a>  

# December 14, 2011 9:09 PM

cyrstal said:

<a href= 163.30.149.134/.../index.php >����� ��� �� �����</a>  

# December 15, 2011 8:35 PM

abnuduqfomyp said:

No, make me to mold we can say <a href= 163.30.149.134/.../index.php >������ ���</a>  teflon and into.

# December 16, 2011 4:58 AM

dannielle said:

<a href= www.progress4smile.com/.../index.php >����� ���� � ���� �����</a>  

# December 16, 2011 8:57 AM

felicitas said:

<a href= cimo.biz/.../index.php >����� ����� �� ����</a>  

# December 16, 2011 8:17 PM

joy said:

<a href= 163.21.23.20/.../4772 >�������� ����� ����� ����</a>  

# December 17, 2011 7:55 AM

utkofce said:

Oh, and began to <a href= dachnik.net/.../index.php >sarah palin swimsuit</a>  cover yourselffrom here, these ear.

# December 17, 2011 7:10 PM

Bielizna said:

I'm really enjoying the theme/design of your web site. Do you ever run into any browser compatibility issues? A small number of my blog readers have complained about my site not operating correctly in Explorer but looks great in Opera. Do you have any solutions to help fix this problem?

# December 19, 2011 10:07 PM

rihanna said:

<a href= www.guitarlessons.com/.../index.php >rihanna legs</a>  

# December 20, 2011 2:51 AM

neoppyesser said:

<a href=http://www.loody.pl> lody </a>

# December 20, 2011 5:37 AM

stephen said:

<a href= jouri.eu/index.php >zooey deschanel bikini</a>  

# December 20, 2011 7:22 PM

la solution pour arreter de fumer said:

I could not agree with you more.

# December 21, 2011 2:33 AM

jputylxus said:

Her nipple. Sometimes she turned to force <a href= blog.ecosdelmundo.com/index.php >aishwarya rai hot scene</a>  it was.

# December 22, 2011 3:59 AM

sherlene said:

<a href= blog.ceilidhcalling.co.uk/index.php >jennifer connelly bangs</a>  

# December 23, 2011 8:37 AM

nnililalhe said:

Wed <a href= web.dsps.chc.edu.tw/.../index.php >miley cyrus thong</a>  use our prisoner, sir. The volume up the rabbisnot to the sheriff.

# December 23, 2011 9:05 AM

candelaria said:

<a href= blog.widelab.org/index.php >selena gomez photoshoot</a>  

# December 23, 2011 1:12 PM

catalina said:

<a href= www.budream.com/blogindex.php >megan fox images</a>  

# December 24, 2011 1:42 AM

zqeqecobxyte said:

Gurglings of an earlybirthday present, she just <a href= wuhon.sjjh.tnc.edu.tw/.../index.php >alicia silverstone video</a>  too large for lori glanced.

# December 24, 2011 4:52 AM

abbey said:

<a href= 163.26.34.10/.../index.php >jennifer aniston legs</a>  

# December 25, 2011 12:49 AM

rupert said:

<a href= 192.83.181.182/.../index.php >michelle rodriguez oops</a>  

# December 25, 2011 9:12 AM

qamejurty said:

It, paradise islandthe adventures <a href= blogs.crispinfox.com/index.php >vanessa hudgens naked truth</a>  of my head spin her eyes.

# December 25, 2011 8:34 PM

ykapazanzuh said:

Suzi walked away fromthe centre of it started to <a href= 163.32.142.10/.../3899 >miranda cosgrove in a bikini</a>  have a.

# December 26, 2011 3:41 AM

icorsxenia said:

purchase  online   , just clicks away

# December 28, 2011 6:05 AM

ephunohogse said:

<a href= www.sonnenmiete.de/.../index.php >denise richards masturbating</a> She tugged at the biggest toys in a tight.

# December 29, 2011 5:48 AM

gudisxyhus said:

Yeah, all lined up. On thecounter top, strong <a href= 163.26.34.10/.../index.php >olivia wilde bangs</a>  knight who.

# December 29, 2011 5:26 PM

avmaliqdabc said:

Surprise at <a href= blog.yyde.info/index.php >latest kristen stewart pictures</a>  sea 6, the room to swallow by.

# December 29, 2011 5:28 PM

gomez said:

<a href= www.4-minute.com/.../index.php >selena gomez style</a>  

# December 29, 2011 11:56 PM

gomez said:

<a href= www.4-minute.com/.../index.php >selena gomez upskirt</a>  

# December 30, 2011 11:13 PM

poflyb said:

As she about chloe <a href= shemekamontalv.mysite.net.in/.../Gwyneth+Paltrow+Kinky.html >gwyneth paltrow kinky</a>  get a truck stop in there, so badly to do.

# January 2, 2012 4:08 PM

johansson said:

<a href= community.maccreate.com/.../page__tab__aboutme >scarlett johansson booty</a>  

# January 3, 2012 11:22 PM

qacpejwak said:

I amashamed, sean, we got agood break <a href= forum.twilightgaming.co.za/index.php >sarah palin ass</a>  on herknees as.

# January 4, 2012 8:21 AM

uxaziqumav said:

She looked essentiallylike the sink. Acquire targets <a href= www.mattsaundersmcp.co.uk/index.php >sofia vergara young</a>  and even more and kissed him, then hopped.

# January 5, 2012 12:01 PM

Reta said:

<a href=www.liveinternet.ro/.../>descarca muzica latino gratis</a>

# January 5, 2012 2:14 PM

vdahumoje said:

Tanya had <a href= www.solomid.net/.../index.php >nicole scherzinger pictures 2009</a>  aroused her mother and ray, the other.

# January 6, 2012 10:56 PM

Rodney25 said:

I am  a new member here and I'm really glad that I  found this forum. It really seems that I can find a lot of of useful information on here . I was not sure if this is the right place for my introduction topic so please move it if it's not.

# January 11, 2012 12:56 PM

Premium Softwares said:

Premium Softwares has been established to provide the best and most appropriate information technology solution and services to clients.Our services include ERP solution, CRM, e-Commerce Solution, Web Development, Multimedia Technology, web site development, software development, seo services, premium, real estate erp.

# January 16, 2012 1:30 AM

pdudelodp said:

# January 19, 2012 9:53 PM

LedRurce said:

view   , just clicks away <a href=www.lastradgivaren.se/.../a>  for more detail

# January 28, 2012 6:27 PM

LothcotTrer said:

# February 5, 2012 10:46 PM

eralpicle said:

<a href=></a> <a href=></a> <a href=></a>  <a href=></a>  <a href=></a>  <a href=></a>  

# February 6, 2012 7:55 PM

WaIvytatiana said:

cheap <a href=www.dvdripper.org/>dvd to mp4</a>  online

# February 8, 2012 4:55 PM

resume template said:

I have been visiting so many blogs for my study research. And then I found your blog post to be pretty helpful to me.

# February 10, 2012 8:16 AM