Rachel Appel

Subscribe via RSS

Email Rachel

Email Rachel

Twitter

LinkedIn

Facebook

Subscribe via email

Downloads

MSDN Magazine
Modern Apps column
by Rachel

  • The Code Camp NYC Retrospective!

    Tags: Events, Community

    Oct 11 2011 8:46 PM
    0 Comments

    Thanks to all the organizers, volunteers, sponsors, and speakers that made the Fall 2011 New York City Code Camp a raging success! The Stats: 500 Attendees 40 Speakers 50 Sessions Tons of … more

  • Common JavaScript mistakes and pitfalls you can avoid

    Tags: JavaScript, jQuery, Software Development

    Oct 4 2011 12:51 PM
    8 Comments

    Having solid JavaScript skills is more important than ever in today's web applications, and will continue to grow in importance as more browsers, IDEs, etc..., boast of HTML5 feature support. New … more

  • You're invited to a Windows PhoneCamp event!

    Tags: Events

    Sep 19 2011 1:35 PM
    0 Comments

    What’s a Windows Phone Camp? For those who went to our "Windows Phone Garage" series last year, it’s one of those. For those new to the scene, it’s a free, full day event chocked full of … more

  • Come to the New York City Code Camp Fall 2011!

    Tags: Events, Community

    Sep 6 2011 9:17 AM
    0 Comments

    The New York City Code Camp is now in October! This is the NYC developer community's sixth Code Camp! When? October 1, 2011. Check in starts at 7:30 AM. Where?Pace UniversityOne Pace Plaza New York, … more

  • Break away from the debugging cycle of doom in ASP.NET MVC with unit tests

    Tags: Patterns, MVC, Unit Testing, Software Development, Patterns & Practices

    Aug 15 2011 12:15 PM
    18 Comments

    The process of using F5 to start a debugging session is a ubiquitous practice in .NET development with Visual Studio. Despite that, developers are noticing and employing other methods of testing and … more

  • Detect HTML5 & CSS 3 features in your ASP.NET Web Forms, MVC, or Razor Pages with Modernizr

    Tags: Modernizr, HTML, HTML5, MVC 3, ASP.NET Web Forms, ASP.NET Web Pages, jQuery

    Aug 8 2011 3:44 PM
    2 Comments

    Over the course of web history, browser detection, rather than feature detection, has been the de facto way to customize the browsing experience. However, this is an antiquated technique which is … more

  • Use HTML5 semantic tags to add new meaning to your MVC views

    Tags: HTML, HTML5, ASP.NET, ASP.NET MVC

    Aug 1 2011 12:06 PM
    2 Comments

    While HTML5 promises to be THE future of the web, there's no need to wait - you can have some of that future now. As the W3C Working Groups finalize the HTML5 standards, many browsers are already … more

  • When to use ViewBag, ViewData, or TempData in ASP.NET MVC 3 applications

    Tags: ASP.NET MVC, ASP.NET, Razor

    Jul 25 2011 2:28 PM
    58 Comments

    "When should I use a ViewBag vs. ViewData vs. TempData objects?" -- a frequent question in online forums, during presentations, and at events. There are enough similarities and differences between … more

  • Use ViewModels to manage data & organize code in ASP.NET MVC applications

    Tags: ASP.NET, MVC 3, ASP.NET MVC, ViewModels

    Jul 18 2011 11:57 AM
    32 Comments

    The concept of the ViewModel isn't just for ASP.NET MVC, as you'll see references to ViewModels throughout the web in articles and blog posts about the MVC, MVP, and MVVM patterns. Those posts and … more

  • Enter the Rock Paper Azure Grand Tournament By July 13, 2011 - $5000 on the line!

    Tags: Azure, Events

    Jul 12 2011 3:07 PM
    0 Comments

    Back in April, my colleagues on the US DPE Cloud team launched the Rock Paper Azure Challenge. The RPA Challenge is a fun way for developers to gain some familiarity with Windows Azure and possibly … more

  • NY Metro User Groups

    Tags: User Groups

    Jul 8 2011 10:03 AM
    0 Comments

    NYC .NET User Groups

    NY Enterprise Windows User Group

    NYPC Visual Basic SIG

    Long Island .NET Users Group

    NYC SharePoint User Group

    NYC Connected Systems Group

    NYC .NET Developers Group

    NY SQL … more

  • Managing data in web applications with HTML5 Web Storage

    Tags: HTML5, Web Storage

    Jul 5 2011 1:08 PM
    0 Comments

    Before the advent of Web Storage, developers have had to juggle between cookies, session, query strings, and HTML forms to manage data across stateless HTTP requests - with cookies being the only … more

  • HTML5 Web Camps Content Downloads!

    Tags: Downloads

    Jun 21 2011 3:56 PM
    0 Comments

    During the recent HTML5 Web Camps in New York City, NY and Waltham, MA, fellow developer evangelist Chris Bowen and I delivered HTML5 training.

    We covered the next wave of web standards including … more

  • HTML5ify your ASP.NET MVC 3 applications

    Tags: HTML, HTML5, ASP.NET, ASP.NET MVC, Visual Studio 2010

    Jun 20 2011 12:28 PM
    19 Comments

    Some newly released tools for Visual Studio 2010 including Service Pack 1, the MVC 3 Tools update, and the Web Standards Update introduce the first wave of HTML5 support for ASP.NET development, so … more

  • CitiBank: It was not a breach of security, but a breach of stupidity

    Tags: Security, Software Development

    Jun 17 2011 10:54 AM
    10 Comments

    In light of the recent news about CitiBank's security breach, here are my personal/professional thoughts on the matter. Disclaimer: The content in this post reflects my own opinions and experience, … more

  • The HTML5 Web Camps come to NYC and Waltham, Mass!

    Tags: Events

    Jun 3 2011 10:07 AM
    0 Comments

    Join Chris Bowen and me at the HTML5 Web Camp to hear all about the next wave of web standards including HTML5, CSS3, SVG, and more!   June 13, 9 AM – 5 PM Microsoft, 201 Jones Road Waltham, … more

  • Build data-driven sites using the MVC 3 Tools Update with MvcScaffolding

    Tags: ASP.NET, ASP.NET MVC, Razor, MVC, MvcScaffolding, Visual Studio 2010

    May 23 2011 3:56 PM
    2 Comments

    Software scaffolding is a technique usually involving code or template generation of CRUD operations, based on a data model. MvcScaffolding is a tool you can use to scaffold your MVC 3 applications … more

  • Ready, set, scaffold! Build ASP.NET MVC 3 applications quickly with MvcScaffolding

    Tags: ASP.NET, ASP.NET MVC, Razor, Entity Framework, MvcScaffolding

    May 11 2011 12:06 PM
    21 Comments

    If you're building ASP.NET MVC 3 applications, you'll want to know about the MvcScaffolding project on CodePlex. Software scaffolding is a way to template software applications so that you can easily … more

  • Building a relational data model in ASP.NET MVC 3 w/EF Code First

    Tags: ASP.NET, ASP.NET MVC, Razor, MVC, Entity Framework

    May 9 2011 1:22 PM
    12 Comments

    Just about every application uses some sort of data model, and .NET developers have been using POCOs (Plain Old CLR Objects) for some time now. You can use either new or existing POCOs in MVC 3 … more

  • MSDN Patterns & Practices introduces Project Silk, a web guidance project

    Tags: Announcements, Projects

    May 5 2011 8:26 AM
    1 Comment

    Project Silk is a sample application that the MSDN patterns & practices Web Guidance Team has been working on that demonstrates modern web application develop techniques on the Microsoft ASP.NET … more

  • <<
  • <
  • 1
  • 2
  • 3
  • 4
  • >
  • >>
Sign In