Monthly Archives: April 2011

Basics of MongoDB with .Net

Basics of MongoDB with .Net Watch the “Introduction to MongoDB” http://www.youtube.com/watch?v=iRDOGkFKBRw&feature=player_embedded#at=95 Download MongoDB for Windows 64bit: http://www.mongodb.org/downloads Unzip to C:Mongo Follow these instructions for installation: http://www.mongodb.org/display/DOCS/Quickstart+Windows Run these two applications (can be setup as a Windows Service) Mongod.exe first (which … Continue reading

Posted in Uncategorized | Tagged , , | Leave a comment

jQuery to Web Service AJAX

jQuery to Web Service AJAX This is a bit wacky, but in the end it all makes perfect sense. jQuery has two functions you could use: get and put, but the function you’ll end up using is.ajax. Example: Let’s say … Continue reading

Posted in Uncategorized | Tagged , , | 1 Comment

Twitterizer & .Net: Adding a feed to your website

Create a Twitter user: http://twitter.com/ Register your application: https://dev.twitter.com/apps/new This gives you:     <add key=”AccessToken” value=”blahblahblah”/>     <add key=”AccessTokenSecret” value=”blahblahblah”/>     <add key=”ConsumerKey” value=”blahblahblah”/>     <add key=”ConsumerSecret” value=”blahblahblah”/> Add it to your web.config Go to: http://www.twitterizer.net/downloads/ Download the Twitterizer package: … Continue reading

Posted in Uncategorized | Tagged , , | 8 Comments