A Line of Code Website Finally up!

My company website is finally up!

http://www.alineofcode.net

Share on Facebook

Speaking at Rebuild Atlanta May 24th!

 

Timeslot: 11: 05 – 11:40
Speaker: Mark Rowe
Session: Cortana: Speech and Natural Language Experience for Windows Phone
Session Abstract:
Welcome to Cortana. The Windows Phone Speech APIs help you integrate your app into Windows Phone’s system-wide speech and natural language user experience. In this session we’ll demonstrate how you can extend the phone’s experience allowing users to launch YOUR APP by voice or text using free-form natural language commands. We will also look at how to enable voice-based conversational dialog interactions with users after your app has been launched, summarizing what’s different in the Windows Phone speech APIs.

Share on Facebook

Call for help with Augmented Living

Watch Demo:

bot2_Painting

Share on Facebook

What is Augmented Living?

What is Augmented Living?

robotface_PaintingWIthLogosmall

Share on Facebook

Nice speech – Basics of Unity by Roger Peters

Joined the Windows 8 group tonight for a basic overview of Unity.
Very interesting stuff. Good speech. You can reach him @ www.AllMobileEverything.com Check out his speeches.

Share on Facebook

Voice Commands in Augmented Living

Voice commands for disabled application 😉

Share on Facebook

Cortana demo work-a-rounds – C#

keywords: cortana windows 8 windows 8.1 windows 9 windows 8.1 phone speech work-around emulator problem
There was a problem starting in-app speech recognition. The details are provided below.
You will need to accept the speech privacy policy

Startup VS as Admin, then :
Hit_WIndows_Key

 

scroll_Right

settings

speech

Check

 

 

Null reference exception, added null handling in:
MainPage.xaml.cs : private async void InitializeRecognizer()

case AsyncStatus.Error:
//Added null handling.
if (operation != null && operation.ErrorCode != null)
{
hResult = operation.ErrorCode.HResult;
message = operation.ErrorCode.Message;
}
MessageBox.Show(String.Format(
AppResources.SpeechRecognitionErrorTemplate,
hResult,
message));

Sources:
http://msdn.microsoft.com/en-us/magazine/jj721592.aspx

Share on Facebook

Initial setup for A line of Code’s Augmented Living on Laptop

You may not need all this, but this is how we will be setting up the new laptop’s for demo.

Kinect, Mount and Leap are all very inexpensive so any route should be fine.

device4

First_Look_ALOCLaptopDark

Share on Facebook

All 4 unsupported Leap DLL’s. .Net 4.5 x86/4.5 x64 – 4.5.1×86/4.5.1×64 – Version -1.0.9.8391 – C#

Until leap is supporting dll’s past 4.0  I’ll be putting out rebuilds of the SDK.

All DLL’s should be located here now.

Share on Facebook

Updated Console Leap Mouse with Leap 4.5.1 DLL C#

This is an updated version of the codeproject project by Meshack Musundi found here : (ConsoleLeapMouse) http://www.codeproject.com/Articles/550336/Leap-Motion-Move-Cursor

Updated version of code with my .net 4.5.1dll’s

Share on Facebook