home.social

Search

1000 results for “alexa_pavlova”

  1. Alexa, please lower the lighting, there, you see, Paula, it was just Alexa all this time

    (Ok, it's a movie)

    #PersonalAssistantASongOrPoem
    #HashTagGames

  2. Alexa, Cortana, Google Assistant. When isn't watching you, 's there to take over 👀

  3. Alexa Lizotte is on a mission to reconnect with her culture.
    A #Métis woman whose father is from #NorthVermilion Settlement #Alta , she has taken up #beadwork & #sewing as a way of feeling closer to her #family & #culture . Ms. Lizotte, 26, #specializes in beading #RibbonSkirt earrings as well as sewing the garment itself. Recently, she’s taken on a new challenge: creating a ribbon skirt using only #NaturalMaterials .

    theglobeandmail.com/amp/canada

    #Indigenous #FirstNations #reclaiming #NativeCulture

  4. I asked #Alexa for a #Minnesota joke. She said, "I found a half eaten hotdog and thought, 'This must belong to the Minnesota #Vikings, because they never finish the second half.'"

    Clearly, this is last year's joke.

    #Skol #SkolVikings #MnVikings #GoVikings

  5. Grief sells … you remember this episode of Black Mirror with the AI's undead husband ?

    « In the scenario presented at the event, the voice of a deceased loved one (a grandmother, in this case), is used to read a grandson a bedtime story. Prasad notes that, using the new technology, the company is able to accomplish some very impressive audio output using just one minute of speech. »

    techcrunch.com/2022/06/22/alex

  6. Luminary launches its subscription-based podcast network on Alexa devices - Luminary, a startup building a “Netflix for podcasts,” is now trying a new tack to gain subscribers ... more: feedproxy.google.com/~r/Techcr #smartspeakers #podcasting #luminary #podcasts #media #alexa

  7. Alexa and Airplay 2 find $800, airship-shaped home in Bowers & Wilkins smart speaker - Enlarge / Bowers & Wilkins Zeppelin in midnight gray. (credit: Bowe... - arstechnica.com/?p=1804184 #bluetoothspeaker #wirelessspeakers #smartspeaker #amazonalexa #bluetooth #airplay2 #tech

  8. Alexa Skills - get custom slot names using Flask-Ask

    shkspr.mobi/blog/2019/06/alexa

    Amazon encourages developers to use Flask-Ask - the handy Python library for working with Alexa. Sadly, the project has been abandoned. They no longer take pull requests, you can't raise bugs against it, and the documentation is incomplete.

    So this is how I solved an annoying problem - how to get the name of a custom slot.

    Here's the code, with a fuller explanation afterwards.

    from flask import Flask, render_template, requestfrom flask_ask import Ask, statement, question, sessionapp = Flask(__name__)ask = Ask(app, '/')@ask.intent("YourIntentName")def your_intent_name():    content = request.get_json()    name = content['request']['intent']['slots']['YOUR_SLOT_NAME']['resolutions']['resolutionsPerAuthority'][0]['values'][0]['value']['name']

    Yeuch! What's going on?

    Alexa lets us define custom slot names - these can be associated with any spoken text. For example, I might want the slot name "car" to be sent whether the user says "car" or "automobile" or "vehicle" or any other synonym.

    In my case, I want to send my API the ID Code of a hospital.

    If the user says "John Radcliff" or "Oxford" or "John Radcliff Hospital" - then my API should receive the ID RTH08. It can then use that ID in a separate API call.

    Here's the JSON that Alexa sends our API (I've truncated it for ease of reading).

    {    "request": {        "type": "IntentRequest",        "requestId": "amzn1.echo-api.request.1234",        "timestamp": "2019-06-17T06:54:52Z",        "locale": "en-GB",        "intent": {            "name": "CarPark",            "confirmationStatus": "NONE",            "slots": {                "hospital": {                    "name": "hospital",                    "value": "John radcliff",                    "resolutions": {                        "resolutionsPerAuthority": [                            {                                "authority": "amzn1.er-authority.echo-sdk.amzn1.ask.skill.1234.hospitals",                                "status": {                                    "code": "ER_SUCCESS_MATCH"                                },                                "values": [                                    {                                        "value": {                                            "name": "RTH08",                                            "id": "abc123"                                        }                                    }                                ]                            }                        ]                    },                }            }        }    }}

    A bit verbose, but easy enough to parse.

    I've moaned before about Alexa skill development - but it is getting worse. As you can see from the above screenshot, the development website's contrast isn't great - which makes building a skill physically painful.

    Add to that the outdated tutorials, the weird terminology, the multiple sites to use, broken links, and abandoned libraries... It's hard to feel enthusiastic about building more skills.

    Amazon have gone down the classic route of paying developers to build for their platform. But I don't think that's enough.

    The Alexa team need to work on the developer experience. A GUI like NODE-RED could be used to help build skills in one place. Why is it so complicated to deploy and test skills? Where are the official libraries which "just work"?

    I honestly believe that one of the things holding back voice assistants from their full potential is the poor developer experience.

    #alexa #developer #hackday #nhshd #python

  9. Alexa von Tobel: Eliminating risk is the key to building a startup during an economic downturn - Launching a company, even in the best of times, is one of the most challenging exercises a person ca... - feedproxy.google.com/~r/Techcr #harvardbusinessschool #northwesternmutual #entrepreneurship #fintechstartup #lehmanbrothers #alexavontobel #businessplan #roelofbotha #learnvest #startups #advisors #finance #economy #harvard #diver #tc

  10. Wat doe je als je vrouw van huis is en het koffiezet apparaat stuk? Je koopt een nieuwe en integreert hem met je huis. #homeassistant #hassio #jura #E8 #coffee #alexa

  11. Alexa suggests I try “Alexa, find donuts nearby” as a prompt. When I do it suggests a donut shop two towns away although there is a bag of donuts next to it on the kitchen top. #capitalism #ShitRobot
    I like it anyway, and often find it useful.

  12. Automating Your Car With a Spare Fob and an ESP8266 - Despite the name, home automation doesn’t have to be limited to only the devices within your home. B... - hackaday.com/2021/01/06/automa #homeautomation #remotestart #homehacks #carhacks #esp8266 #keyfob #alexa

  13. Amazons Fire TV Cube ist ein Allrounder-Würfel, der die Aufgaben eines Streaming-Sticks und eines Echo-Lautsprechers vereint. www.heise.de/newsticker/meldun… #Alexa #FireTV #FireTVCube
  14. 🧐 Alexa, warum bist du immer noch so doof?
    Wer sie regelmäßig nutzt, merkt schnell: Eine echte Entwicklung gab es bei Sprachassistentinnen seit ihrer Einführung nicht.
    t3n.de/news/t3n-catch-up-alexa
    #alexa #amazon #sprachassistenten #voice

  15. These panels support #Alexa - now you can fi them to the wall, turn them into hubs and enjoy your home from the future - more about @tuyasmart smart panels in my piece
    #net_n #smarthome
    notenoughtech.com/home-automat

  16. These panels support #Alexa - now you can fi them to the wall, turn them into hubs and enjoy your home from the future - more about @tuyasmart smart panels in my piece
    #net_n #smarthome
    notenoughtech.com/home-automat

  17. Alexa developers can now personalize their skills by recognizing the user’s voice - Amazon Alexa is already capable of identifying different voices to give personalized responses to d... more: feedproxy.google.com/~r/Techcr #amazonhardwareevent2019 #alexaskills #gadgets #amazon #alexa #skils #voice

  18. Amazon makes it easier for smart home devices to alert customers to low supply levels - Alongside all the new Alexa-powered consumer devices Amazon introduced yesterday, the company also u... more: feedproxy.google.com/~r/Techcr #amazonhardwareevent2019 #amazonalexaevent2019 #dashreplenishment #smarthomeskills #alexaskills #ecommerce #smarthome #amazon #alexa

  19. That moment you realize that connecting your #FireStick to your #AmazonEcho so your audio pumps through your dope speaker that's connected through aux but still hear stuff through #Alexa means that the volume controls on the #Roku smart TV by #Insignia that your #FireStick is connected to don't work on the #EchoDot lol
  20. "Alexa, avanti"
    "Non posso eseguire l'avanzamento veloce su questa riproduzione in streaming"
    "Alexa, cambia canzone"
    "Ecco una canzone che potrebbe piacerti"

    Cara Alexa, tu sarai anche una AI avanzata, ma io sono una intelligenza umana di sesso femminile, e come tale so sempre come ottenere quello che voglio.
    #humanpower

  21. Today was a busy day for Amazon product announcements. In addition to a new Fire HD 10 tablet and new Fire TV Stick 4K and 4K Max devices, the company announced an updated smart display, a new smart home hub, a bunch of new AI-enabled features coming to Alexa and Fire TV, and the most powerful (and expensive) eero mesh router system to date.

    Here’s a roundup of […]

    https://liliputing.com/lilbits-eero-max-7-is-a-mesh-wifi-7-router-with-10-gbe-ethernet-for-a-steep-price/

  22. Alexa’s voice apps for kids can now offer purchases that parents approve - Amazon will now allow developers to offer premium content for purchase in Alexa skills aimed at chi... more: feedproxy.google.com/~r/Techcr #voiceassistance #voicecomputing #voiceapps #parents #privacy #amazon #skills #alexa #coppa #voice #apps #kids