Skip to main content

Join us for Hack Together: Microsoft Graph and .NET

Join us for Hack Together, our virtual hackathon to learn how to build powerful apps with Microsoft Graph and .NET and win exciting prizes. If you’re a beginning coder, a student, or an expert looking for an opportunity to learn a new skill, don’t miss this opportunity!

Hack Together is a virtual hackathon to get started building apps with Microsoft Graph and .NET. In this hackathon, you will kick-start learning how to build apps with Microsoft Graph – the API to access data and insights from Microsoft 365, and develop apps based on some of the most popular Microsoft Graph scenarios. You’ll also have a chance to win exciting prizes and meet Microsoft Graph and .NET Product Group Leaders, Cloud Advocates, MVPs and Student Ambassadors.

Image of Hack Together activities

Hack Together will run online from March 1-15, 2023. Hear from our speakers – why you should join us. Register today!

🙋 Why join Hack Together and add Microsoft Graph to your skillset?

Millions of people across the globe use Microsoft apps in their personal lives, at school, and at work. Did you know that you can also access data behind the popular Microsoft apps such as Microsoft Teams, Calendar, Outlook, To-Do, Planner, and more?

Microsoft Graph is the gateway to access data and intelligence across Microsoft 365. It exposes hundreds of datasets to developers. Not only can you access the data, but also you can build your own apps on top of Microsoft 365 by accessing the available data with the power of Microsoft Graph. Here are a few examples of apps that you could build with Microsoft Graph:

  • See what your colleagues are working on
  • Organize your day with a quick overview of upcoming meetings
  • Get your tasks every morning at 9 am
  • Find meeting time and schedule a meeting for multiple attendees
  • Stay up to date with what’s going on around you through a personalized dashboard
  • Get a summary of unread messages

Imagine all the other scenarios you can build on the Microsoft ecosystem to boost productivity, collaboration, education, people, workplace intelligence, and more!

Learning how to build apps with Microsoft Graph is a critical skill to work across Microsoft technologies. Throughout Hack Together, we will help you upskill with Microsoft technologies and ecosystem by learning and building apps with Microsoft Graph.

🦒 Prerequisites to participate in Hack Together

During Hack Together, you’ll learn hands-on how to build .NET apps connected to Microsoft Graph. Here’s the list of a few things you’ll need to get started.

⚙ How does Hack Together work?

Hack Together includes self-paced learning, connecting with experts and other participants on GitHub Discussions, and attending live sessions.

Live sessions 📺

We’ll open the virtual hackathon on March 1, 2023, with a keynote by Yina Arenas, Head of Product for Microsoft Graph and Scott Hanselman, Partner Program Manager in Developer Division. Join us live to learn why .NET and Microsoft Graph are a great combination for building apps for work and school.

Throughout Hack Together, we’ll stream more sessions by Microsoft experts and MVPs to show you what you can achieve with Microsoft Graph and .NET. We’ll close by announcing the winners of the hackathon.

For the schedule and more information about the sessions, check out our GitHub repo.

Self-paced learning 📚

If you’re just starting, Microsoft Graph and .NET might feel overwhelming. We hear you! Use our self-paced learning materials to learn about Microsoft Graph and .NET.

Connect with experts on GitHub Discussions 💬

An answer is just one question away. When you need help, don’t hesitate to ask questions in the GitHub Discussion for this hack. Our experts will always be there to help you and answer your questions.

🦾 What’s the hack?

During the hackathon you’ll be working on your own .NET app connected to Microsoft Graph. Any type of app qualifies as long as it’s built on .NET and connected to Microsoft Graph. If you need inspiration, check out the list of top Microsoft Graph scenarios.

When you’re ready, submit your app in the hackathon’s repo before March 15, 2023, so we can check it out. All hackathon participants who submit an app will receive a digital badge. On addition, the winners selected will receive the following exciting prizes (up to 4 individuals if submitting as a team, prizes for each person on the team):

  1. 🥇 First prize winner:
    • an Xbox,
    • $200 gift card
    • $100 Azure credit
    • a digital Credly badge
  2. 🥈 Second prize winner:
    • $200 gift card
    • $100 Azure credit
    • a digital Credly badge
  3. 🥉 Third prize winner:
    • $100 Azure credit
    • a digital Credly badge

You can participate by yourself or as a team with your colleagues!

We’re so excited for you to Hack Together with us and build cool .NET apps with Microsoft Graph. Share your journey throughout the hack on social with the #HackTogether hashtag. Let us know if you have any questions. Our team is always here to help you! Follow us on Twitter to stay up to date on our latest news and announcements.

Register today and we look forward to meeting you at #HackTogether!

The post Join us for Hack Together: Microsoft Graph and .NET appeared first on .NET Blog.



source https://devblogs.microsoft.com/dotnet/hack-together-microsoft-graph-dotnet/

Comments

Popular posts from this blog

Fake CVR Generator Denmark

What Is Danish CVR The Central Business Register (CVR) is the central register of the state with information on all Danish companies. Since 1999, the Central Business Register has been the authoritative register for current and historical basic data on all registered companies in Denmark. Data comes from the companies' own registrations on Virk Report. There is also information on associations and public authorities in the CVR. As of 2018, CVR also contains information on Greenlandic companies, associations and authorities. In CVR at Virk you can do single lookups, filtered searches, create extracts and subscriptions, and retrieve a wide range of company documents and transcripts. Generate Danish CVR For Test (Fake) Click the button below to generate the valid CVR number for Denmark. You can click multiple times to generate several numbers. These numbers can be used to Test your sofware application that uses CVR, or Testing CVR APIs that Danish Govt provide. Generate

How To Iterate Dictionary Object

Dictionary is a object that can store values in Key-Value pair. its just like a list, the only difference is: List can be iterate using index(0-n) but not the Dictionary . Generally when we try to iterate the dictionary we get below error: " Collection was modified; enumeration operation may not execute. " So How to parse a dictionary and modify its values?? To iterate dictionary we must loop through it's keys or key - value pair. Using keys

How To Append Data to HTML5 localStorage or sessionStorage?

The localStorage property allows you to access a local Storage object. localStorage is similar to sessionStorage. The only difference is that, while data stored in localStorage has no expiration time untill unless user deletes his cache, data stored in sessionStorage gets cleared when the originating window or tab get closed. These are new HTML5 objects and provide these methods to deal with it: The following snippet accesses the current domain's local Storage object and adds a data item to it using Storage.setItem() . localStorage.setItem('myFav', 'Taylor Swift'); or you can use the keyname directly as : localStorage.myFav = 'Taylor Swift'; To grab the value set in localStorage or sessionStorage, we can use localStorage.getItem("myFav"); or localStorage.myFav There's no append function for localStorage or sessionStorage objects. It's not hard to write one though.The simplest solution goes here: But we can kee