Amazon Alexa Skill Development | Hints for rookies (like me)

First of all: HUGE THANKS TO https://github.com/jeffblankenburg for https://github.com/alexa/skill-sample-nodejs-audio-player AND https://github.com/jkelvie for https://github.com/bespoken/streamer I did all the way these great dudes had recommended but i run in some problems i will describe now: 1. Creating an AWS Lambda function i could not select “Alexa Skills Kit” as the “Trigger” cs it does not appear in […]

git | creating a repository from the command line

Be sure you’ve pushed your public key to github.com Create a repository on github.com. $ git init $ git add . $ git commit -m “first move” $ git remote add origin git@github.com:/USER/REPO.git origin is the local alias for your remote repository url. It’s possible to connect your local repo to multiple remote URL’s (hosts) […]