Path of Exile Coming Soon to Xbox One

We’re excited to announce that Path of Exile is coming to Xbox One this year! Our game is a modern twist on the traditional isometric Action RPG (ARPG), played on a persistent online realm where players conquer foes and hunt for rare items together. As your wealth grows, you can trade your items to build the ultimate character. We started developing Path of Exile 10 years ago, as a small group of friends who met playing online ARPGs. After seven years of development, we launched Path of Exile on PC to great acclaim, winning Gamespot’s PC Game of the Year… Continue reading Path of Exile Coming Soon to Xbox One

Enjoy Your Stay at The Sexy Brutale; Make Sure It’s Not Permanent

Welcome to The Sexy Brutale! We’re pleased to announce that after three years of hard work across two studios has finally allowed our game to throw open its doors later this year! The Sexy Brutale is the name of the casino mansion where the game (and murders) take place, a looping-time murder mystery adventure where the player takes on the role of an elderly priest, Lafcadio Boone, who is one of the guests at the mansion. You wake up during the annual masked ball thrown by the owner, the enigmatic, Marquis, only to discover two unexpected things: the staff are murdering… Continue reading Enjoy Your Stay at The Sexy Brutale; Make Sure It’s Not Permanent

Forrester’s 2016 Enterprise Collaboration Wave report is out and Microsoft is a Leader!

Forrester released a report evaluating enterprise collaboration providers, and Microsoft is named a Leader. —Read on for details.

The post Forrester’s 2016 Enterprise Collaboration Wave report is out and Microsoft is a Leader! appeared first on Office Blogs.

Continue reading Forrester’s 2016 Enterprise Collaboration Wave report is out and Microsoft is a Leader!

Updates for OneNote Class Notebook, Learning Tools and Office Lens—plus stickers!

The OneNote team continues to listen to teachers to learn about how we can help them be more productive with our software. Today, we are announcing a set of improvements across OneNote Class Notebook, Learning Tools and Office Lens.

The post Updates for OneNote Class Notebook, Learning Tools and Office Lens—plus stickers! appeared first on Office Blogs.

Continue reading Updates for OneNote Class Notebook, Learning Tools and Office Lens—plus stickers!

ASP.Net Web API and Alexa Skills

Late last month we highlighted how Alexa skills can be written with C#, Santa Brought Alexa? Skill it up with C#!.

Today we’ve got another example, this time using the ASP.Net Web API.

Having a merry, geeky Christmas… creating an Alexa skill with ASP.Net Web API

“Thanks to Santa Claus’ generosity and Amazon’s new Alexa voice assistant, our head of .NET development Andy Butland no longer has to wonder what his daughter is having for lunch tomorrow…

Along with, I suspect, a lot of other people, one of the Christmas presents I had most fun with this year was an Amazon Echo Dot.

Out of the box it comes with a number of voice activated features, such as answering questions, providing alarms and timers and even wittily responding when you ask it things like “who is the fairest of them all”. It’s extensible with a wide range of skills, provided by various third parties. And you can write your own, which is what I had a look at doing over Boxing Day.

The skill I built wasn’t one that’ll be useful to many people, so isn’t public, but will be a useful addition to our household. When my daughter eats lunch at school, it’s handy to know what she’s had or having so we can plan what to cook for the evening meal. The school has a four week rolling menu, so even with a copy on paper, it requires a bit of calculation to work out what she’s having on a given day. I wanted to be able to ask questions similar to “Alexa, ask ‘School Menu’ what they are eating tomorrow” and get an answer describing the menu for that day.

Effectively the skill is implemented as a web service — an HTTPS end-point that returns a specifically structured JSON response. The Echo Dot digitises the incoming voice message and passes it on to Amazon’s Alexa service, which parses out the message in order to figure out how to answer the question. If an “invocation name” is provided — in my case “school menu” — it looks for a third party or custom skill associated with the users account to pass the request on to, translating the voice message into an appropriate HTTPS request to the web service. The web service then responds with a text response, that’s translated back into voice and send back through the Echo Dot speaker.

The code for the skill described in this article this is up on Github and uses ASP.Net Web API.

Deploying

Once testing was complete I could shut down the temporary URL generated by Ngrok and push the service up to Azure, using an Api App. The default azure address come with HTTPS support, so for something low traffic like this it’s a cheap and easy place to host the service.

With that in place we’re going live at the start of the new term on 9 January, and hopefully those days of double portions of risotto are over for good!

…” [You’re going to want to click through to read the entire tutorial]

Follow @CH9
Follow @coding4fun
Follow @gduncan411

Continue reading ASP.Net Web API and Alexa Skills