• TechNet Guru June Roundup & Commentary

    Peter Laker will be back later with the list of winners, but we have quite a few contributions for June for the judges to go through! See TechNet Guru Contributions - June 2013.

    Which articles do you think the judges should pick? Leave a comment below!

     

    BizTalk

    The TechNet Guru June competition is announced in this BizTalk forum thread.
    Here are the June contributions:

    New category for June! BizTalk contributors came in late, but we have three different contributors this month with a solid showing!

     

    SharePoint 2010

    The TechNet Guru June competition is announced in this SharePoint General forum thread and in this SharePoint Development forum thread.

    Here are the June contributions:

    SharePoint takes the cake this month for the most contributions! Matthew Yarlett (our winner from June) is going to try to get a second medal in a row (two contributions this month), but the competition is steep! We also have two contributions from Sunny and Ashish, 3 from Mohammad, and 6 from our fellow Wiki Ninja author (and SharePoint Europe award winner), Gokan Ozcifci! That's some steep competition!

     

    Small Basic

    The TechNet Guru June competition is announced in this Small Basic forum thread.
    Here are the June contributions:

    Small Basic is another new category this month. Nonki almost dominated with 6 contributions (tied with Gokan), but then Jibba Jabba jumped in to give Nonki a little competition!  

      

    SQL Server Analysis Services

    The TechNet Guru June competition is announced in this SSAS forum thread.
    Here are the June contributions:

    It looks like Yogish is the contributor to this new category and will take the gold. But the judges will still need to decide which article.

     

    SQL Server Integration Services

    The TechNet Guru June competition is announced in this SSIS forum thread.
    No June contributions:

    • none

    So unfortunately, the community doesn't seem interested in this competition. We'll need to retire this category for July (unless an SSIS expert commits to authoring an article in July).

     

    SQL Server Reporting Services/Power View

    The TechNet Guru June competition is announced in this SSRS forum thread.
    Here are the contributions:

    SSRS is a new category for June. It looks like Tim is going to run the table for June with a lot of articles for the judges to pick from! Tim also contributed 6 articles for June (the same number as Gokan and Nonki).

     

    Transact-SQL

    The TechNet Guru June competition is announced in this T-SQL forum thread.
    Here are the June contributions:

    Naomi, our gold medal winner for June (with an impressive tie with two articles in first place), is back with four more contributions! But she has some solid competition with Kalman, Sathyanarrayanan (2 articles), and Johnny Bell (2 articles)!

       

    Visual Basic

    The TechNet Guru June competition is announced in this Visual Basic forum thread.
    Here are the June contributions:

    Our VB winner for May, Reed Kimble, looks to win the gold two months in a row! But one of our competitors is guaranteed the silver! =^)

     

    Visual C#

    The TechNet Guru June competition is announced in this Visual C# forum thread.
    Here are the June contributions:

    C# was the most-contributed-to category in May (with 8 contributions). But for June, Dan jumps in to (likely) win the competition! Well played, Dan! 

     

    Windows Phone

    The TechNet Guru June competition is announced in this Windows Phone Development forum thread.
    Here are the June contributions:

    Isenthil, our winner for May, has his competition cut out for him, going against Tiziano, Ken, and Lohith! 

     

    Windows Store Apps

    The TechNet Guru June competition is announced in this Windows Store app development forum thread.
    Here are the June contributions:

    Sachin dominates in this new category and looks to get his second gold medal (the first was for C# in May)! We'll need to decide if we want to remove the category for July and ask the contributors to post in C# or VB again (like we did in May). What do you think? 

      

    WPF

    The TechNet Guru June competition is announced in this WPF forum thread.
    Here are the June contributions:

    And finally, some WPF contributors jumped in toward the end of the month! I encouraged XAML guy to enter this competition (even though the competition is his idea). We'll get others to judge the contributions for this category. There's some nice choices that the judges will need to pick from! 

     

    Overall

    The Category with the most contributions:

    1. SharePoint 2010 - 20
    2. Transact-SQL - 9
    3. Small Basic - 7

    The individuals with the most contributions (6 each):

      

     

    So a hearty thank you goes out to all the contributors! You're helping make it far easier for people to find your fantastic content that you (likely) originally came up with while helping people in the forums! Thank you to all and good luck in the competition!

     

    And to the readers, what do you think?  Which articles do you think the judges should pick? Leave a comment below!

     

    Wiki, oh dear wiki, thou art oh so sticky.

       - Ninja Ed

  • May C# Guru - Spell Checking WinRT Component

    Congratulations to Sachin S, our C# Guru winner for May 2013! To find all the competitors for May (and more information about this monthly contest), see the Wiki article: TechNet Guru Awards, May 2013.

      

    Sachin S took the gold, with this contribution:

    Spell Checking WinRT Component (C#, VB, HTML5/JavaScript) 

       

    Here are our three winners for May:

    Visual C# Technical Guru - May
    2013

    Gold Award Winner

     

    Sachin
    Spelling Check in Windows Store App
    • "This provides a good article layout. With a simple description about what it is, screenshot, and also a working sample for WinRT."

    Silver Award Winner

     

    Carsten
    Siemens
    How to Query Trees Using LINQ
    • "It is very concise and clear what is going on. There are not extra words or asides."
    • "The motivation really helps sell the context and set expectations."
    • "He took the time to call out possible shortcomings of this approach.  This is very useful to people trying to use this code."

    Bronze Award Winner

     

    chriga
    Creating a simple plugin mechanism
    • "Excellent example of copying content in from MSDN Forums."
    • "A very useful subject and great article."

     

    Here are excerpts from the article:

     

    Description

    It implements the component wrapper over Win32 SpellChecker library. A wrapper that it can be easily used by caller of Windows Store App irrespective of Application Language and without worrying about C++ and COM intricacies.

     
    Spell checking client sample (C++) 
     

    Also it needs to have spell checker provider installed. See the below link for more details

    Spell checking provider sample

    Internals

    The functionality to check spellings is exposed by the ISpellCheckerFactory and ISpellChecker interface.

    ISpellCheckerFactory interface
    ISpellCheckerFactory : public IUnknown
    {
    public:
    virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_SupportedLanguages(
    /* [retval][out] */ __RPC__deref_out_opt IEnumString **value) = 0;

    virtual HRESULT STDMETHODCALLTYPE IsSupported(
    /* [in] */ __RPC__in LPCWSTR languageTag,
    /* [retval][out] */ __RPC__out BOOL *value) = 0;

    virtual HRESULT STDMETHODCALLTYPE CreateSpellChecker(
    /* [in] */ __RPC__in LPCWSTR languageTag,
    /* [retval][out] */ __RPC__deref_out_opt ISpellChecker **value) = 0;

    };

      

    ---------------------------------------

     

    Read the entire article here:

    Spell Checking WinRT Component (C#, VB, HTML5/JavaScript)

     

    Thanks again to Sachin S for a great contribution! You can read about all the May winners here: TechNet Guru Awards - May 2013

    See the June contributions here: TechNet Guru Contributions - June 2013

     

    Come on in, the Wiki is fantasmic!

       - Ninja Ed

  • Top Contributors Awards!! New cloud goodies! Unix/Linux & Tape Libraries for System Center! Wiki code formatting, Hybrid IT Infrastructure stuff!

    Welcome back for another analysis of contributions to TechNet Wiki over the last week (Fri-Sat)

    Firstly, the usual weekly leader board snapshot...

     

    Ed taking top spot for a second week! Hello Abhishek.Sur, leading most new articles for the last month!

     

    As always, here are the results of another weekly crawl over the updated articles feed.

     

     Most Revisions Award  
    Who has made the most individual revisions

     

     is the top dog again, with 169 revisions over 60 articles!

    Richard Mueller remains in second, with  113 revisions over 96 articles!

    Kris Bash arrives to the leader board in third, with 89 revisions over 17 articles.

     

     Most Articles Updated Award  
    Who has updated the most articles

     

    Slightly different this week from above:

      

    #1 Richard Mueller with 96 articles!

    #2  with 60 articles!

    #3 Fernando Lugão Veltem  with 42 articles.

     

     

     Most Updated Article Award  
    Largest amount of updated content in a single article

     

    The article to have the most change this week was a new contribution called Hybrid IT Infrastructure Design Considerations for Enterprise IT by Thomas W Shinder - MSFT. This is an excellent and detailed introduction to the world of cloud computing. In fact I spent so long reading through the articles indexed here that I was too tired last night to finish this blog, sorry about that :/

      

     Longest Article Award  
    Biggest article updated this week

     

    This week's largest document to get some attention is another new arrival, SCOM 2012: UNIX/Linux Authoring Library MP Reference - Unit Monitor Types by Kris Bash. This is one of a series of new articles Kris has added this week, detailing how to integrate common UNIX and Linux monitoring scenarios for System Center 2012 - Operations Manager, indexed here. Great work Kris!

     

     Most Revised Article Award  
    Article with the most revisions in a week

     

    This week's most fiddled with article is as above, Hybrid IT Infrastructure Design Considerations for Enterprise IT by Thomas W Shinder - MSFT. These sensational new "cloud" arrivals had me riveted to my seat for several hours last night. Deeply love this work, thank you to everyone involved.

     

    As it was previously mentioned, I'll also highlight second most fiddled with: Compatible Tape Libraries for System Center 2012 DPM by Rayne Wiselman [MSFT], more System Center documentation, gratefully received. If any of you follow trends, System Center really seems to be one we need to stay up with.

     

     Smallest Significant Edit Award  
    Size isn't everything! Every edit counts.

     

    Ignoring the addition of tags, this week's smallest but valuable tweak was to Wiki: How to Insert a Formatted Code Snippet and Code Block on TechNet Wiki by Our old friend  simply corrected a few typos, but this is a valuable job that shows people really care, and we thank you yottun8 for your continued support.

     

     

    Thanks again for another VERY busy week at TechNet Wiki

     

    Best regards,
    Pete Laker

     

  • May VB Guru - How to Create Video Games in VB.Net (Windows Forms)

    Congratulations to Reed Kimble, our VB Guru winner for May 2013! To find all the competitors for May (and more information about this monthly contest), see the Wiki article: TechNet Guru Awards, May 2013.

    Reed Kimble's avatar 

    About Reed: [Adult Swim] fan, EQII player, and has broad interests in computers, electronics, and programming. Enjoys outdoors in forest, mountain, and/or secluded lake settings. Fascinated by social and spiritual aspects of humanity.

     

    Reed won with this fantastic contribution:

    How to Create Video Games in VB.Net (Windows Forms)

     

    Here are our three winners:

    Visual Basic Technical Guru - May 2013

    Gold Award Winner

     

    Reed
    Kimble
    How to Create Video Games in VB.Net (Windows Forms)
    • "This article starts out super well."
    • "The how to create a video game article was a subject that is often asked about in places like the forums. It addressed the subject with well written text and code examples to match."
    • "It was pitched at just the right level for hobbyist/early learners that are often the ones trying to achieve this."
    • "It covers very well the concept of a game loop and how to make one somewhat performant (best made-up word ever)."

     

    Silver Award Winner

     

    Paul
    Ishak
    How to convert a 32bit integer into a color
    • "I like how this article walked me through each aspect of the code, showing snippets of each section. It felt more professional." 
    • "It does address an important item about breaking values into their constituent byte values. The code examples are simple and straightforward and easy to understand without even a need to have VB running."
    • "Well-written; it explains another concept that mature developers might take for granted."

    Bronze Award Winner

     

    Paul
    Ishak
    Virtual memory in Visual Basic.Net
    • "Nice code sample."
    • "Was actually the most informative in some ways, particularly for the professional developer."

     

    Here is an excerpt from the article:

     

    How to Create Video Games in VB.Net (Windows Forms)

    I realize that this is a very popular subject, especially amongst budding developers. The drive to create games may be the reason you started working with Visual Basic in the first place. After stepping through a few samples and getting the hang of working with user controls on a form, it may be very tempting to start to throw some PictureBoxes and a Timer on a Form and start to implement some game logic. Seems easy enough, right?

    To some extent, this is a true statement. You could start to do this and it would be easy enough… at first. But when you begin to try to calculate collision and animate or rotate your “sprites”, you may start to run into some difficulty. And attempts to circumvent the problems often lead to even worse issues. This can cause an endless spiral of misery which could leave you thinking VB just isn’t meant to make games! ;)

    The initial problem that most people face is the desire to use a PictureBox (or any other control) as the logical “Sprite” container for the elements in the game. It makes sense since the control appears to provide a lot of the required functionality already and it’s easy to extend it with more properties as needed.

    ... 

     

    Read the entire article here:

    How to Create Video Games in VB.Net (Windows Forms)

     

    Thanks again to Reed Kimble for a great contribution! You can read about all the May winners here: TechNet Guru Awards - May 2013

     

    Are you ready for a new group of winners for June! We're almost there! See all the June contributors here: TechNet Guru June Roundup & Commentary

     

    Wiki while you work! (or whilst on break)

       - Ninja Ed

  • Friday with International Community Update – Contributors Wiki Brazil

    Hello Community, Luiz Henrique Lima Campos  here today to update you on the latest news in the TechNet Wiki international community from Brazil.

    Today I congratulate three major community contributors Wiki in Brazil, which together are the sum of 351 articles.

    They are...

     

    Marcelo Strippoli

    198 - Articles

     

     

     

    Hezequias Vasconcelos

    106 – Articles

     

     

    Vinicius Mozart

    47 – Articles

     

    Great work!

    Congratulations for all your work on the wiki community.

     You are collaborators featured here on Wiki.

    Big hugs go to the TechNet Wiki community, keep up the contribution, have a great Friday and don’t forget to tweet #TNWIKI and follow us:

    @WikiNinjas

    @WikiNinjas_BR

    TNWiki, TechNet Wiki, community, Friday - International Spotlight, Luiz Henrique Lima Campos, Brasil