Welcome to MSDN Blogs Sign in | Join | Help

Here are the events listed in Community Megaphone for the next week (or so) for the Mid-Atlantic area, as well as webcasts of interest…this list includes events imported from the UGSS event calendar, and all events entered in Community Megaphone are also automatically synced to the UGSS event calendar:

  • PGHDOTNET February Meeting - Improving Your ASP.NET Application's Performance, and Creating Web UI Unit Tests
    Tuesday, February 09, 2010 5:30 PM, Pittsburgh, PA
    Join us on February 9th for two sessions as David Hoerster first describes how you can quickly create web UI unit tests using Visual Studio 2010's new CodedUI Tests feature. Afterwards, we'll talk about how to improve the overall performance of your ASP.NET web sites by going over a few tips and tricks. This is a session that will be beneficial to developers, testers and architects alike!
    [ Event Details | Map & Directions | Add To Calendar ]

  • Hampton Roads .NET Users Group - Feburary Meeting
    Tuesday, February 09, 2010 6:00 PM, Chesapeake, VA
    Introduction to Data Warehousing
    Speaker: Jessica Moss
    Learn about data warehousing in this introductory presentation. We will discuss the benefits of using a data warehouse, the dimensional modeling principles needed to design a data warehouse, and the tools that will help design, load, and aggregate data in a data warehouse. The presentation will show all pieces of a working data warehouse to illustrate these points.
    [ Event Details | Map & Directions | Add To Calendar ]

  • RockNUG Release 3.8
    Wednesday, February 10, 2010 6:30 PM, Rockville, MD
    Sliverlight 4.0 Highlights from PDC
    by David Makogon
    David will take us through some of the exciting new features for Silverlight 4.0 that were announced at the PDC, including improved out of browser functionality, drag and drop and Visual Studio enhancements. He'll also demonstrate the Silverlight Toolkit. If time allows, he'll demonstrate how to host Silverlight in Azure.
    David is a Senior Consultant at RDA (www.rdacorp.com), and the technical lead on RDA's Architectural Guidance evangelist team (blog at rdaarchitecture.blogspot.com). He's also on the mid-Atlantic architecture rountable, sponsored by Dr. Z @ Microsoft in Reston. You can also follow him on twitter: http://www.twitter.com/dmakogon .
    [ Event Details | Map & Directions | Add To Calendar ]
  • Want your events listed? You can add them here.

    You can also add your events via the Community Megaphone web service API, which is now live. You can get more information on the API, and how to sign up, at http://www.communitymegaphone.com/API.aspx. You can also email me for more information.

    Here are the events listed in Community Megaphone for the next week (or so) for the Mid-Atlantic area, as well as webcasts of interest…this list includes events imported from the UGSS event calendar, and all events entered in Community Megaphone are also automatically synced to the UGSS event calendar:

  • Ft Lauderdale - Online: Test-Driven Database Development with Data Dude - Cory Foy - CoryFoy.com
    Tuesday, February 02, 2010 6:30 PM, , Online
    02/02/2010 - 6:30 PM Online - A little known tool in the Visual Studio Team Editions is Visual Studio Team Edition for Database Professionals, also known as Data Dude.
    This tool is a very powerful tool for anyone who works with databases - especially developers. In this session we'll show how you can use Data Dude to do Test-Driven Development on your Schema ad Data, and how you can use Data Dude to Refactor your database in incremental steps without losing your data - or your mind.
    [ Event Details | Add To Calendar ]

  • PGHDOTNET February Meeting - Improving Your ASP.NET Application's Performance, and Creating Web UI Unit Tests
    Tuesday, February 09, 2010 5:30 PM, Pittsburgh, PA
    Join us on February 9th for two sessions as David Hoerster first describes how you can quickly create web UI unit tests using Visual Studio 2010's new CodedUI Tests feature. Afterwards, we'll talk about how to improve the overall performance of your ASP.NET web sites by going over a few tips and tricks. This is a session that will be beneficial to developers, testers and architects alike!
    [ Event Details | Map & Directions | Add To Calendar ]

  • Hampton Roads .NET Users Group - February Meeting
    Tuesday, February 09, 2010 6:00 PM, Chesapeake, VA
    Introduction to Data Warehousing
    Speaker: Jessica Moss
    Learn about data warehousing in this introductory presentation. We will discuss the benefits of using a data warehouse, the dimensional modeling principles needed to design a data warehouse, and the tools that will help design, load, and aggregate data in a data warehouse. The presentation will show all pieces of a working data warehouse to illustrate these points.
    [ Event Details | Map & Directions | Add To Calendar ]
  • Want your events listed? You can add them here.

    You can also add your events via the Community Megaphone web service API, which is now live. You can get more information on the API, and how to sign up, at http://www.communitymegaphone.com/API.aspx. You can also email me for more information.

    Given some of the recent discussions and debates over the value of ASP.NET Web Forms (with which I have deep experience) and ASP.NET MVC, I thought I would immerse myself more deeply into MVC. To that end, I’m doing some prototyping with the ASP.NET MVC 2 release that shipped with Visual Studio 2010 Beta 2.

    Following along with the demos in the first installment of Rob Conery’s “Mastering ASP.NET MVC 2” video series on Tekpub.com, I created a simple database with a couple of tables, modeled the DB using LINQ to SQL, and created a Controller and some strongly-typed views for the Index, Details, Edit, and Create actions.

    One issue that I ran into early on was that I was getting the following error when attempting to create a new record:

    Cannot insert explicit value for identity column in table 'Events' when IDENTITY_INSERT is set to OFF

    Whether I failed to follow precisely the steps in the demos, or whether there’s some other issue involved, I’m not sure, but the crux of the issue is that my database was set up with the ID columns as Identity values, which automatically provide a value for the column based on the increment you supply (usually 1). Meanwhile, my LINQ to SQL model was also set to provide values for these columns if no value was provided. So when I submitted a new record (I had already removed the ID markup from the Create view), and LINQ to SQL attempted to insert a value into the Identity column…BOOM…error.

    The solution, in my case, was to update my LINQ to SQL model. For example, one of the model entities, Venue, looks like this:

    image

    I selected the VenueId property, which maps to the column of the same name in the DB, which has Is Identity set to True, and set the property’s Auto Generated Value property to True, as shown below:

    image

    This tells LINQ to SQL that I’ve already taken care of incrementing the Identity column, so my model doesn’t need to. Problem solved, now I can create records without the errors. Hopefully, this will help some folks if they run into this error when working with ASP.NET MVC and LINQ to SQL.

    I’ve been giving some thought to how I can better leverage various communications and social media to help promote the great work that folks in the Microsoft Developer Community (and beyond) are doing, and one of the channels I’ve been using is Twitter.

    For those of you who might not be aware, I’m on Twitter as devhammer, and I also have another account, CommMegaphone, which I use primarily for new event notifications when events are added to Community Megaphone.

    Recently, I decided to try to increase the utility of the CommMegaphone twitter account in a couple of ways:

    1. I added a “News” section to the Community Megaphone home page which draws from the RSS feed associated with the CommMegaphone twitter account. That way, if something I think may be of interest to Community Megaphone visitors comes up, I can simply tweet it, and it’ll automatically show up on the home page.
    2. I’ve been discussing with some folks adding Call for Speakers listings to Community Megaphone, using the twitter stream, and using a standard hashtag to identify those tweets. In this way, those who want to see just the Calls for Speakers could subscribe to the RSS feed, and add a filter for the specific hashtag, either in an RSS reader that supports filtering by keyword, or by using something like Yahoo Pipes to build a filtered version of the feed.

    Today, I decided to take things a step further, by adding a Twitter list to the CommMegaphone twitter account specifically for User Groups that focus on Microsoft technologies. I’m hoping that by building out this list, folks who are looking for Microsoft user groups can more easily locate groups in their area. If I get enough groups going, I may even start partitioning into additional lists based on state and/or technology.

    So if you run a user group that focuses on Microsoft Technologies, and you’d like to participate, and your group is on Twitter (if not, you can sign up at Twitter.com), please go follow CommMegaphone, and send an @ reply to that account with your twitter ID, and I’ll add you to the list.

    Alternately, feel free to drop me a line via the contact form on my blog and give me your info that way.

    And please let me know in the comments below what you think of the ideas above…do you think they have the potential to be useful to the community? Anything I’m not thinking of? Tell me.

    I’ve run into this, and just helped a fellow Microsoftie with the same issue…apparently there’s an issue with Visual Studio 2010 Beta 2 that can cause it to crash on startup if a particular setting is in place from your last session…I’ll dig deeper to see if I can find information on which specific setting or settings are the culprit, so hopefully folks can avoid the issue in the first place, but if you find yourself staring at an error message saying that VS 2010 cannot start, try this at the command prompt:

    devenv.exe /resetsettings

    If you have the same issue I had, this should sort it out for you.

    I’ll follow up with an update to this post if/when I figure out which setting is involved.

    UPDATE:

    Turns out this one’s been around for a while…the Visual Studio Team Blog posted their recommended fixes last October. Their solution looks to be slightly less intrusive (only resets user settings, rather than all settings), so I’d recommend following their advice first. The VS team post also provides details on what causes the error, and notes that it’s already been addressed for subsequent releases.

    CMPI’m pleased to announce the availability Show 2 of the Community Megaphone podcast, featuring our special guest Joel Cochran from Staunton, VA.

    Joel talks about WPF, Expression Blend, and his involvement in the Mid-Atlantic community. Take a listen!

    Kevin Griffin, our guest for Show 1, shares his experience with Joel here.

    Do you know a local tech personality who we should have on the podcast? Drop us a line and nominate them today!

    Unless you’ve been living under a rock for the last couple of years, you’ve probably heard that there’s a new kid on the ASP.NET block, called ASP.NET MVC. Likewise, you may have heard some folks suggest that the release of ASP.NET MVC (and the coming release of ASP.NET MVC 2) heralds the death of Web Forms. There have been passionate debates on the topic, which is one reason that none other than Scott Guthrie decided to post some thoughts on the subject of technical debates, and on Web Forms and MVC specifically.

    Another contribution to the discussion came from Shaun Walker of DotNetNuke fame, about why DNN will not migrate to ASP.NET MVC from Web Forms (a wise decision IMO, not because there’s anything wrong with MVC, but because DNN has a huge investment in Web Forms that needn’t be thrown away), as well as some other thoughts on the topic.

    In response, Rob Conery, formerly with the ASP.NET team, and now one of the folks behind TekPub, has offered free access to their Mastering MVC series on TekPub for 50 folks from the DNN community. Details can be found here.

    Having used DNN for a number of sites (including my local homeowner’s association), I definitely appreciate the reasoning behind their decision to stick with Web Forms. At the same time, ASP.NET MVC is another great option for building applications on the ASP.NET platform, so I think it’s great that Rob is reaching out to the community to encourage more folks to learn about MVC.

    To put it more succinctly…Community Rocks!

    Here are the events listed in Community Megaphone for the next week (or so) for the Mid-Atlantic area, as well as webcasts of interest…this list includes events imported from the UGSS event calendar, and all events entered in Community Megaphone are also automatically synced to the UGSS event calendar:

  • DC ALT.NET - Clojure with Craig Andera
    Wednesday, January 27, 2010 7:00 PM, Alexandria, VA, VA
    The next meeting of DC ALT.NET will be held on Wednesday, 1/27 from 7-9PM. This month we have Craig Andera to talk about Clojure.
    So, what is Clojure?
    C# has been adding exciting new features with every release, but many of these have been available in other languages for years or even decades. By examining some of the features of these other languages, we can hope to glean what's in store for the future of C#. Clojure is a JVM-based Lisp with an integral and interesting approach to concurrency. In this talk, we'll examine those features, after a brief introduction to Clojure syntax.
    [ Event Details | Map & Directions | Add To Calendar ]

  • Richmond SharePoint User Group
    Thursday, January 28, 2010 5:30 PM, Glen Allen, VA
    Reducing the Friction of SharePoint Development with SharePoint 2010
    Josh Carlisle, B&R Business Solutions
    [ Event Details | Map & Directions | Add To Calendar ]

  • SQLSaturday #30 Richmond, VA
    Saturday, January 30, 2010 8:00 AM, Glen Allen, VA
    Join the Richmond developer community for a free, one-day training for SQL Server professionals, developers, DBAs, and even people who don't know how to spell SQL.
    When: January 30, 2010
    Where: ECPI College of Technology
    4305 Cox Rd
    Glen Allen, VA 23060
    Admittance to this event is free; all costs are covered by donations and sponsorships. Please Register soon as seating is limited, and let friends and colleagues know about the event. For more information, visit http://www.sqlsaturday.com and select “SQLSaturday #30 - Richmond 2010”
    [ Event Details | Map & Directions | Add To Calendar ]

  • Ft Lauderdale - Online: Test-Driven Database Development with Data Dude - Cory Foy - CoryFoy.com
    Tuesday, February 02, 2010 6:30 PM, , Online
    02/02/2010 - 6:30 PM Online - A little known tool in the Visual Studio Team Editions is Visual Studio Team Edition for Database Professionals, also known as Data Dude.
    This tool is a very powerful tool for anyone who works with databases - especially developers. In this session we'll show how you can use Data Dude to do Test-Driven Development on your Schema ad Data, and how you can use Data Dude to Refactor your database in incremental steps without losing your data - or your mind.
    [ Event Details | Add To Calendar ]
  • Want your events listed? You can add them here.

    You can also add your events via the Community Megaphone web service API, which is now live. You can get more information on the API, and how to sign up, at http://www.communitymegaphone.com/API.aspx. You can also email me for more information.

    Here’s a link to my editorial for the current MSDN Flash newsletter:

    http://msdn.microsoft.com/en-us/ee940727.aspx

    It includes information on the launch of the Community Megaphone Podcast, as well as info on local events coming up.

    You can subscribe to the MSDN Flash here:

    http://msdn.microsoft.com/en-us/aa570311.aspx

    My northern counterpart, David Isbitski, beat me to the punch on announcing the latest series of MSDN Roadshow events, this series featuring Windows Azure, so I figured I’d just snag his blog post, since he covered it so well…hope to see you all at one of the events:

    MSDNMidAtlanticRoadshow

    MSDN Events presents: Take Your Applications Sky High with Cloud Computing and the Windows Azure Platform

    Andrew, Dani, Rachel and I will be taking a deep dive into cloud computing and the Windows Azure Platform. We’ll start with a developer-focused overview of this new platform and the cloud computing services that can be used either together or independently to build highly scalable applications. As the day unfolds, we’ll explore data storage, SQL Azure, and the basics of deployment with Windows Azure.

    All events start promptly at 1pm (check-in at 12:30) and end at 5pm.  Refreshments (and plenty of caffeine!) will be served.

    Here are the dates and registration links:

    City Date Register
    Richmond, VA March 3, 2010 Register
    Baltimore, MD March 10, 2010 Register
    Pittsburgh, PA March 16, 2010 Register
    Allentown, PA March 18, 2010 Register
    Washington, DC March 23, 2010 Register

    If you register and attend this event, you will be placed in a raffle to win a chance to bring home one (1) free copy of Windows 7 – you could be the lucky winner!

    Hands on with the Cloud

    SESSION 1: Overview of Cloud Computing and Windows Azure

    The Windows Azure platform is a set of high-performance cloud computing services that can be used together or independently and enable developers to leverage existing skills and familiar tools to develop cloud applications. In this session, we’ll provide a developer-focused overview of this new online service computing platform. We’ll explore the components, key features and real day-to-day benefits of Windows Azure.

    Highlights include:

    • What is cloud computing?
    • Running web and web service applications in the cloud
    • Using the Windows Azure and local developer cloud fabric
    • Getting started – tools, SDKs and accounts
    • Writing applications for Windows Azure

    SESSION 2: Survey of Windows Azure Platform Storage Options

    Durable data storage is a key component of any cloud computing offering. The Windows Azure Platform offers many options, which can be used alone or in combination. Windows Azure itself offers ready-to-use and lightweight storage in the form of tables, blobs, and queues. Another choice for storage is SQL Azure, a true relational database in the cloud. In this session, we’ll explore the highlights of these implementations and how to both create and use storage in each form. We’ll give you guidance on choosing the right forms of storage for your application scenarios.

    Highlights include:

    • Understanding table & blob storage
    • Programming against table & blob storage
    • Working with queue storage
    • Managing credentials and connection strings
    • Scaling and configuration
    • Understanding SQL Azure databases versus local SQL Server databases
    • SQL Azure firewall, logins and passwords
    • Database creation, deployments and migrations
    • Database management using SQL Management Studio
    • Programming against SQL Azure databases

    SESSION 3: Going Live with your Azure Solution

    Windows Azure features a powerful, yet simple deployment model. By focusing on your application and abstracting away the infrastructure details, you can deploy almost any app with minimal fuss. In this session, we’ll walk you through the basics of Windows Azure deployment, including site monitoring, diagnostics and performance issues.

    Highlights include:

    • Start-to-Finish Visual Studio demonstration of a realistic XML data driven business web site from the desktop to the cloud.
    • Windows Azure Deployments
    • Start-to-Finish Visual Studio demonstration of a realistic SQL Server data driven business web site from the desktop to the cloud.
    • Configuration of your application in the cloud
    • Guidance and Suggestions to ensure your success

    via DaveDev

    Here are the events listed in Community Megaphone for the next week (or so) for the Mid-Atlantic area, as well as webcasts of interest…this list includes events imported from the UGSS event calendar, and all events entered in Community Megaphone are also automatically synced to the UGSS event calendar:

  • Fireside Chat: SharePoint features for user group leaders
    Tuesday, January 19, 2010 5:00 PM, Online
    Have you been provided with a free hosted SharePoint site? (http://gitca.org/hostedsites)
    Wondering what to do next?
    Join Viral and find out some of the great things that SharePoint can help you with in managing and promoting your user group
    [ Event Details | Add To Calendar ]

  • Frederick .NET User Group Monthly Meeting
    Tuesday, January 19, 2010 6:30 PM, Frederick, MD
    FredNUG is pleased to announce that we have a great presenter lined up to start out 2010. On January 19th, we’ll enjoy some pizza and beverages while hearing what the Microsoft New Efficiency is all about. Then, starting at 7 PM, David Makogon will present an overview of Silverlight 4 with a sprinkle of RIA Services. It will be great to hear what’s being added to the Silverlight bag of tricks.
    Scheduled agenda:
    6:30 PM - 7:00 PM – Pizza and New Efficiency Launch
    7:00 PM - 8:30 PM - Main Topic: Overview of Silverlight 4 plus RIA Services with David Makogon
    8:30 PM - 8:45 PM – RAFFLE!
    Please join us and get involved in our .NET developers community!
    [ Event Details | Map & Directions | Add To Calendar ]

  • Microsoft Developer Dinner Series for Partners: More Than Pretty Colors: Building Business Apps with Silverlight 4 & WCF RIA Services
    Wednesday, January 20, 2010 6:00 PM, Reston, VA
    Join Marc Schweigert and James Chittenden in this session over dinner for a comprehensive, developer/code focused overview of:
    • What’s new in the Silverlight 4 beta and the latest release of WCF RIA Services (formerly .NET RIA Services).
    • How to incorporate prototyping into your design process using Expression Blend and SketchFlow. You will see how the design can be moved forward into a real application using both Expression Blend and Visual Studio.
    • The Model View ViewModel (MVVM) design pattern and how to effectively implement it in common scenarios.
    • The new Bing Maps Silverlight control and how to incorporate location based information into your applications.
    [ Event Details | Map & Directions | Add To Calendar ]

  • Building & Utilizing Advanced Forms
    Wednesday, January 20, 2010 7:00 PM, Vienna, VA
    We’ve discussed the modules and utilities out there for making forms now let us put them to work! We’ve compiled a few real world uses for getting value out of your website and will dive into how to accomplish each with a detailed walk-through.
    We will be demonstrating how to build simple-to-medium level e-commerce using Paypal and Authorize.net which can be used for anything from: paying invoices, purchasing products, registering for paid events. But that’s not all! We will feature: gathering email addresses and other information for sending to 3rd party mailer systems, multi-page forms and extended information requests, and building content for other modules.
    Finally we realize that presentation can be as important as utility so we will walk through steps you can take to jazz up your forms.
    Speaker:
    Jonathan Sheely, Affinigent
    Jonathan is the Senior Application Developer for Affinigent, a Microsoft Gold Partner deploying web solutions in York, Pennsylvania. Jon is a jack of all trades developer who focuses on content delivery applications and how to make managing that content easier for end users. When not working, Jon enjoys working… And will someday discover the outside world.
    [ Event Details | Map & Directions | Add To Calendar ]

  • Fireside Chat: Welcome to Office Live Meeting
    Thursday, January 21, 2010 8:00 AM, Online
    Join us to discover how to increase productivity using Office Live Meeting. In this 60-minute presentation, you will learn best practices for successful presenting through live demonstrations, as well as your questions!
    Topics discussed include:
    • How to access the Office Live Meeting Service and configure your account to get started today!
    • Scheduling Live Meetings using the Conferencing Add-in for Outlook and using Meet Now to collaborate instantly with anyone.
    • Best practices for keeping attendees engaged with interactive meeting features.
    • References to additional Office Live Meeting support and resources will also be provided.
    Natasha Palandri has been a trainer with the Office Live Meeting Adoption Services group for over 4 years. With previous experience as a classroom technology trainer, she brings a particular understanding of the strategies new Live Meeting users may find helpful when transitioning from face-to-face to virtual communication and collaboration. In particular, Natasha enjoys exploring best practices for effectively working across cultures, and within the virtual team model.
    [ Event Details | Add To Calendar ]

  • Fireside Chat: Welcome to Office Live Meeting
    Thursday, January 21, 2010 5:00 PM, Online
    Join us to discover how to increase productivity using Office Live Meeting. In this 60-minute presentation, you will learn best practices for successful presenting through live demonstrations, as well as your questions!
    Topics discussed include:
    • How to access the Office Live Meeting Service and configure your account to get started today!
    • Scheduling Live Meetings using the Conferencing Add-in for Outlook and using Meet Now to collaborate instantly with anyone.
    • Best practices for keeping attendees engaged with interactive meeting features.
    • References to additional Office Live Meeting support and resources will also be provided.
    Natasha Palandri has been a trainer with the Office Live Meeting Adoption Services group for over 4 years. With previous experience as a classroom technology trainer, she brings a particular understanding of the strategies new Live Meeting users may find helpful when transitioning from face-to-face to virtual communication and collaboration. In particular, Natasha enjoys exploring best practices for effectively working across cultures, and within the virtual team model.
    [ Event Details | Add To Calendar ]

  • NOVA SQL User Group Meeting
    Monday, January 25, 2010 7:00 PM, Vienna, VA
    Our sponsor Fusion-io is giving away a solid state storage PCI-e card
    Title: Essential Database Management – Top Ten Recommendations
    Abstract: In this session, Paul and Kimberly will run you through their top-ten database maintenance recommendations, with a lot of tips and tricks along the way. These are distilled from almost 30 years combined experience working with SQL Server customers and are geared towards making your databases more performant, more available, and more easily managed (to save you time!). Everything in this session will be practical and applicable to a wide variety of databases. Topics covered and myths debunked include: backups, shrinks, fragmentation, statistics, and much more! Focus will be on 2005 but we'll explain some of the key differences for 2000 and 2008 as well.
    Speaker: Paul Randal and Kimberly Tripp
    [ Event Details | Map & Directions | Add To Calendar ]

  • DC ALT.NET - Clojure with Craig Andera
    Wednesday, January 27, 2010 7:00 PM, Alexandria, VA, VA
    The next meeting of DC ALT.NET will be held on Wednesday, 1/27 from 7-9PM. This month we have Craig Andera to talk about Clojure.
    So, what is Clojure?
    C# has been adding exciting new features with every release, but many of these have been available in other languages for years or even decades. By examining some of the features of these other languages, we can hope to glean what's in store for the future of C#. Clojure is a JVM-based Lisp with an integral and interesting approach to concurrency. In this talk, we'll examine those features, after a brief introduction to Clojure syntax.
    [ Event Details | Map & Directions | Add To Calendar ]

  • Richmond SharePoint User Group
    Thursday, January 28, 2010 5:30 PM, Glen Allen, VA
    Reducing the Friction of SharePoint Development with SharePoint 2010
    Josh Carlisle, B&R Business Solutions
    [ Event Details | Map & Directions | Add To Calendar ]
  • Also, wanted to get this one in, since volunteers are needed ASAP so the organizers can get logistics in place:

    Southern Maryland Give Camp
    Friday, March 19, 2010 3:30 PM, St. Mary's City, MD
    GiveCamp is a weekend-long event where software developers, designers, and database administrators donate their time to create custom software for non-profit organizations. This custom software could be a new website for the nonprofit organization, or a small data-collection application to keep track of members. The only limitation is that the project should be scoped to be able to be completed in a weekend.
    [ Event Details | Map & Directions | Add To Calendar ]

    Want your events listed? You can add them here.

    You can also add your events via the Community Megaphone web service API, which is now live. You can get more information on the API, and how to sign up, at http://www.communitymegaphone.com/API.aspx. You can also email me for more information.

    UPDATE: I’ve changed the wording to reflect Rob’s post, which specifically mentions launch…so until I can confirm what the actual release date is, I’m sticking with his wording to be clear. Thanks to reader Doug Holland for asking me to clarify.

    Per Rob Caron, the new release launch date for Visual Studio 2010 and the .NET Framework 4 is:

    April 12th, 2010!

    (h/t John Blumenauer on Twitter)

    Also, I’ve updated my Silverlight Countdown widget to reflect the new date…if you’re hosting the widget, please update the TargetDate initParam to “04/12/10”. Updated <object> tag markup below:

       1: <div id="silverlightControlHost">
       2:     <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="190" height="180">
       3:        <param name="initparams" value="TargetDate=04/12/10" />
       4:        <param name="source" value="http://gdtest.members.winisp.net/ClientBin/SilverCountDown.xap"/>
       5:        <param name="onError" value="onSilverlightError" />
       6:        <param name="background" value="black" />
       7:        <param name="minRuntimeVersion" value="3.0.40624.0" />
       8:        <param name="autoUpgrade" value="true" />
       9:        <a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=3.0.40624.0" style="text-decoration:none">
      10:           <img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style:none"/>
      11:       </a>
      12:   </object>
      13:   <iframe id="_sl_historyFrame" style="visibility:hidden;height:0px;width:0px;border:0px"></iframe>
      14: </div>

    Community Megaphone Podcast As some of you may be aware, I run a humble site called Community Megaphone whose purpose is to help promote and discover developer and IT pro events in your local community. Late last year, I was approached by Dane Morgridge, with a proposal for a podcast that would focus on the local developer community, with a goal of helping folks who are thinking about attending local user groups or code camps to get to know the folks who are speaking at these events. His hope (and mine) is that by giving potential attendees a chance to hear from these local experts and community leaders, we can encourage more folks to get out and visit their local user groups and code camps, and spread the wealth of information that gets shared through these communities even further and wider than it is today.

    So it is with great pleasure that I share in Dane’s announcement of the Community Megaphone Podcast!

    I am very excited to announce the Community Megaphone Podcast.  It is a new podcast hosted by myself and G. Andrew Duthie (aka devhammer) that focuses on community as well as technology.  The guests will be developers and speakers that you would find at your local user group or code camp.  Our hope is that this podcast will help you, as a developer, to learn more about speakers in your area and encourage you to visit your local user groups or code camps.  The podcast is part of Community Megaphone and is a site dedicated to making it easier for software developers and IT professionals to promote and discover local community events.  Community events are a huge help to many developers and we want to give you another resource to help you find the community events that will help you the most.

    The podcast audio and rss links can be found at the Community Megaphone site as well as the podcast site: http://www.communitymegaphonepodcast.com.  If you have any questions or comments or would like to recommend a guest, fill out the contact form on the podcast website.

    The guest for our first show is Kevin Griffin.  Kevin is a .NET Developer for Antech Systems, located in Chesapeake, VA. He’s the leader of the Hampton Roads .NET Users Group. Often, he can be found speaking at or attending other local user group meetings or code camps. He enjoys working with new technology, and consistently works on being a better developer and building the best software he can.

    Kevin's blog is http://www.kevgriffin.com and he can be found on twitter @1kevgriff.

    Check it out and make sure you get to your next community event.

    As part of the announcement, I’ve launched a redesigned home page for Community Megaphone, which provides easy access to News (via the Community Megaphone Twitter feed), and the most recent podcast episodes, as well as improving the way we display event information. One note on that last part…as part of the re-design, we’re working on improved filtering for event results, so filtering is not available in the initial release…it’ll be back soon, and better than ever!

    Please let me know what you think of the podcast, and send us names for anyone you’d like to see as a guest on a future show!

    Announcing the Community Megaphone Podcast!

    So here’s the deal:

    • You need (or want) an awesome machine for developing Windows 7 applications, including multitouch support, such as the cool HP tx2z tablet.
    • I want to see developers learn about the cool new features in Windows 7 for developers, including multitouch, sensor support, the new taskbar, and more.

    As it happens, I have a way for us both to get what we want. Just click the link below, and write an article on CodeProject talking about a great app you wrote for Windows 7, and one of 3 HP tx2z laptops (including one fully-loaded monster) can be yours. Full details, rules and conditions can be found at the link:

    Write an article, maybe win a tablet

    C’mon…you know you want that laptop!

    Oh, and please tell your friends…you can feel free to get a head start on your article before you tell them, though…I won’t tell.

    First event listing for 2010! Happy belated New Year to all!

    Here are the events listed in Community Megaphone for the next week (or so) for the Mid-Atlantic area, as well as webcasts of interest…this list includes events imported from the UGSS event calendar, and all events entered in Community Megaphone are also automatically synced to the UGSS event calendar:

  • Fire Side Chat with the Microsoft IT Chief Architect and CTO
    Tuesday, January 12, 2010 8:00 AM, Online
    Barry Briggs is Chief Architect and CTO for Microsoft’s IT organization, serving one of the world’s largest and most influential technology companies. Among other key initiatives, he drives the Enterprise Architecture practice for MSIT as well as numerous advanced technology programs. Previously at Microsoft he led the Master Data Management initiative in MSIT which created the world’s largest Customer Data Integration (CDI) system. Prior to that he served as senior architect in the Business Process and Integration Division at Microsoft, where he helped set the technology strategy for Microsoft’s enterprise integration and business process product line. Barry’s thirty-year career in the software industry includes eleven years at Lotus/IBM where he led the development of the company’s best-selling spreadsheet program and was named the company’s first Lotus Fellow. After Lotus/IBM, Barry held a number of senior executive positions serving as CTO for a number of successful software vendors. Well known in the industry (called “one of the better known CTO’s in the world” by InfoWorld in 2001), Barry speaks frequently at industry events. He is the author of numerous technical articles, two novels, and the popular “Barry Talks!” weblog (http://www.edithere.com/barry).
    [ Event Details | Add To Calendar ]

  • Fire Side Chat with the Microsoft IT Chief Architect and CTO
    Tuesday, January 12, 2010 3:00 PM, Online
    Barry Briggs is Chief Architect and CTO for Microsoft’s IT organization, serving one of the world’s largest and most influential technology companies. Among other key initiatives, he drives the Enterprise Architecture practice for MSIT as well as numerous advanced technology programs. Previously at Microsoft he led the Master Data Management initiative in MSIT which created the world’s largest Customer Data Integration (CDI) system. Prior to that he served as senior architect in the Business Process and Integration Division at Microsoft, where he helped set the technology strategy for Microsoft’s enterprise integration and business process product line. Barry’s thirty-year career in the software industry includes eleven years at Lotus/IBM where he led the development of the company’s best-selling spreadsheet program and was named the company’s first Lotus Fellow. After Lotus/IBM, Barry held a number of senior executive positions serving as CTO for a number of successful software vendors. Well known in the industry (called “one of the better known CTO’s in the world” by InfoWorld in 2001), Barry speaks frequently at industry events. He is the author of numerous technical articles, two novels, and the popular “Barry Talks!” weblog (http://www.edithere.com/barry).
    [ Event Details | Add To Calendar ]

  • Hampton Roads .NET Users Group - 1 Year Anniversary!
    Tuesday, January 12, 2010 6:00 PM, Chesapeake, VA
    Silverlight 4 - Ready for Business

    Abstract: Silverlight 4 is a major milestone in the progression
    of this exciting platform. New features include
    Elevated Trust, Printing Support, Right-click support,
    Full Screen Mode, Keyboard support, Mouse Wheel support,
    a Clipboard API, and more!
    Silverlight 4 an increasingly compelling technology, and
    with the enhancements in this latest update, Silverlight 4
    will definitely be "ready for Business."
    [ Event Details | Map & Directions | Add To Calendar ]

  • Fireside Chat: Exchange 2010: Migration and Deployment Best Practices
    Wednesday, January 13, 2010 9:00 AM, Online
    You've no doubt heard about the new features that Exchange 2010 has in store to lower your messaging costs, delight your users, and protect your communications: reduced deployment costs, simplified high availability and disaster recovery, easier administration and decreased dependence on the help desk, new self-service capabilities, greater mobility and flexible access, increased user productivity, transformed voice mail, simplified compliance, new safeguards for sensitive information, and reduced risk of malware and spam - just to name a few. Knowing the benefits, you might be wondering what the upgrade or migration picture really looks like: what will it take to get your organization ready for the move to Exchange Server 2010? What are the "gotchas" and things to watch for?
    Join Ankur Kothari to talk about the path to Exchange Server 2010. Ankur is a Senior Technical Product Manager for Unified Messaging on the Exchange team. Ankur brings more than a decade’s experience as a Certified Master/Exchange Ranger and consulting architect to his current role guiding and shaping the Exchange product. Some of the more unique positions he has held include working at America Online designing their network infrastructure and at Evans and Sutherland developing flight simulator equipment for NASA and United Airlines.
    In his spare time he enjoys playing and watching team sports, attempting photography, and dreaming of exotic cars. You’ll find him as @ankbomb on Twitter.
    Before the chat, be sure to view his session, "Exchange 2010 Upgrade and Deployment" http://vepexp.microsoft.com/thenewefficiency/?s=5614
    [ Event Details | Add To Calendar ]

  • Fireside Chat: Exchange 2010: Migration and Deployment Best Practices
    Wednesday, January 13, 2010 5:00 PM, Online
    You've no doubt heard about the new features that Exchange 2010 has in store to lower your messaging costs, delight your users, and protect your communications: reduced deployment costs, simplified high availability and disaster recovery, easier administration and decreased dependence on the help desk, new self-service capabilities, greater mobility and flexible access, increased user productivity, transformed voice mail, simplified compliance, new safeguards for sensitive information, and reduced risk of malware and spam - just to name a few. Knowing the benefits, you might be wondering what the upgrade or migration picture really looks like: what will it take to get your organization ready for the move to Exchange Server 2010? What are the "gotchas" and things to watch for?
    Join Ankur Kothari to talk about the path to Exchange Server 2010. Ankur is a Senior Technical Product Manager for Unified Messaging on the Exchange team. Ankur brings more than a decade’s experience as a Certified Master/Exchange Ranger and consulting architect to his current role guiding and shaping the Exchange product. Some of the more unique positions he has held include working at America Online designing their network infrastructure and at Evans and Sutherland developing flight simulator equipment for NASA and United Airlines.
    In his spare time he enjoys playing and watching team sports, attempting photography, and dreaming of exotic cars. You’ll find him as @ankbomb on Twitter.
    Before the chat, be sure to view his session, "Exchange 2010 Upgrade and Deployment" http://vepexp.microsoft.com/thenewefficiency/?s=5614
    [ Event Details | Add To Calendar ]

  • January Meeting Innsbrook .NET UG
    Wednesday, January 13, 2010 6:00 PM, Glen Allen, VA
    Topic: Introduction to Data Warehousing
    Abstract: Learn about building a data warehouse in this introductory presentation. We will discuss dimensional modeling, star schemas, Kimball methodology, and slowly changing dimensions. We will provide best practices for building a data warehouse and show all pieces of a working data warehouse.
    Speaker: Jessica M. Moss
    Speaker Bio: Jessica M. Moss, an architect with Ironworks Consulting and a Microsoft SQL Server MVP, is a well-known practitioner, author, and speaker in Microsoft SQL Server business intelligence. Jessica has created numerous data warehousing solutions for companies in the retail, internet, health services, finance, and energy industries and authored technical content for multiple magazines, websites, and the book "Microsoft SQL Server 2008 Integration Services Problem-Design-Solution". Jessica enjoys working with the central Virginia community and speaks regularly at user groups, code camps, and conferences. You can read about her work on her blog, http://www.jessicammoss.com.
    To Register, Please Use Click To Attend: https://www.clicktoattend.com/invitation.aspx?code=144217
    [ Event Details | Map & Directions | Add To Calendar ]

  • Fireside Chat: SharePoint features for user group leaders
    Tuesday, January 19, 2010 5:00 PM, Online
    Have you been provided with a free hosted SharePoint site? (http://gitca.org/hostedsites)
    Wondering what to do next?
    Join Viral and find out some of the great things that SharePoint can help you with in managing and promoting your user group
    [ Event Details | Add To Calendar ]

  • Microsoft Developer Dinner Series for Partners: More Than Pretty Colors: Building Business Apps with Silverlight 4 & WCF RIA Services
    Wednesday, January 20, 2010 6:00 PM, Reston, VA
    Join Marc Schweigert and James Chittenden in this session over dinner for a comprehensive, developer/code focused overview of:
    • What’s new in the Silverlight 4 beta and the latest release of WCF RIA Services (formerly .NET RIA Services).
    • How to incorporate prototyping into your design process using Expression Blend and SketchFlow. You will see how the design can be moved forward into a real application using both Expression Blend and Visual Studio.
    • The Model View ViewModel (MVVM) design pattern and how to effectively implement it in common scenarios.
    • The new Bing Maps Silverlight control and how to incorporate location based information into your applications.
    [ Event Details | Map & Directions | Add To Calendar ]

  • Fireside Chat: Welcome to Office Live Meeting
    Thursday, January 21, 2010 8:00 AM, Online
    Join us to discover how to increase productivity using Office Live Meeting. In this 60-minute presentation, you will learn best practices for successful presenting through live demonstrations, as well as your questions!
    Topics discussed include:
    • How to access the Office Live Meeting Service and configure your account to get started today!
    • Scheduling Live Meetings using the Conferencing Add-in for Outlook and using Meet Now to collaborate instantly with anyone.
    • Best practices for keeping attendees engaged with interactive meeting features.
    • References to additional Office Live Meeting support and resources will also be provided.
    Natasha Palandri has been a trainer with the Office Live Meeting Adoption Services group for over 4 years. With previous experience as a classroom technology trainer, she brings a particular understanding of the strategies new Live Meeting users may find helpful when transitioning from face-to-face to virtual communication and collaboration. In particular, Natasha enjoys exploring best practices for effectively working across cultures, and within the virtual team model.
    [ Event Details | Add To Calendar ]
  • Fireside Chat: Welcome to Office Live Meeting
    Thursday, January 21, 2010 5:00 PM, Online
    Join us to discover how to increase productivity using Office Live Meeting. In this 60-minute presentation, you will learn best practices for successful presenting through live demonstrations, as well as your questions!
    Topics discussed include:
    • How to access the Office Live Meeting Service and configure your account to get started today!
    • Scheduling Live Meetings using the Conferencing Add-in for Outlook and using Meet Now to collaborate instantly with anyone.
    • Best practices for keeping attendees engaged with interactive meeting features.
    • References to additional Office Live Meeting support and resources will also be provided.
    Natasha Palandri has been a trainer with the Office Live Meeting Adoption Services group for over 4 years. With previous experience as a classroom technology trainer, she brings a particular understanding of the strategies new Live Meeting users may find helpful when transitioning from face-to-face to virtual communication and collaboration. In particular, Natasha enjoys exploring best practices for effectively working across cultures, and within the virtual team model.
    [ Event Details | Add To Calendar ]
  • Want your events listed? You can add them here.

    You can also add your events via the Community Megaphone web service API, which is now live. You can get more information on the API, and how to sign up, at http://www.communitymegaphone.com/API.aspx. You can also email me for more information.

    More Posts Next page »
     
    Page view tracker