home.social

Search

1000 results for “alexa_pavlova”

  1. I've got a couple of 1st gen Amazon #Alexa #Echo devices performing excessive #DNS lookups again. None of the other Amazon devices in the house exhibit the same behaviour when using #BBCsounds

    They're constantly (every 1.5 seconds or so) looking up "as-hls-uk-live.akamaized.net". It's a CNAME whose A records have a TTL of 20s, and appears to be part of the BBC's streaming infrastructure.

    This accounts for ~400 lookups every ten minutes against my pihole, ~90% of which receive cached responses.

  2. Amazon's devices business lost $25+ billion between 2017 and 2021, largely because people who buy Echo devices at below-cost prices never end up using them to buy things or sign up for subscription services. That's why Amazon is expected to launch a premium version of Alexa soon for customers willing to sign up for a subscription. buff.ly/4fi01dm #Alexa #Amazon #SmartSpeakers #AmazonEcho #AmazonKindle #AmazonFire

  3. Amazon's devices business lost $25+ billion between 2017 and 2021, largely because people who buy Echo devices at below-cost prices never end up using them to buy things or sign up for subscription services. That's why Amazon is expected to launch a premium version of Alexa soon for customers willing to sign up for a subscription. buff.ly/4fi01dm

  4. Amazon's devices business lost $25+ billion between 2017 and 2021, largely because people who buy Echo devices at below-cost prices never end up using them to buy things or sign up for subscription services. That's why Amazon is expected to launch a premium version of Alexa soon for customers willing to sign up for a subscription. buff.ly/4fi01dm #Alexa #Amazon #SmartSpeakers #AmazonEcho #AmazonKindle #AmazonFire

  5. Amazon's devices business lost $25+ billion between 2017 and 2021, largely because people who buy Echo devices at below-cost prices never end up using them to buy things or sign up for subscription services. That's why Amazon is expected to launch a premium version of Alexa soon for customers willing to sign up for a subscription. buff.ly/4fi01dm #Alexa #Amazon #SmartSpeakers #AmazonEcho #AmazonKindle #AmazonFire

  6. "Alexa, cool the car" - while getting ready to go out, and then straight into a nice cold car 👍

    remote aircon is one of my faves of owning an EV

  7. 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

  8. Lilbits: A WiFi 7 router for under $100, sideloading apps on Samsung phones, and Apple’s foldable iPhone is coming (in a two years… maybe)

    The Wi-Fi Alliance finalized the WiFi 7 standard earlier this year, paving the way for faster wireless speeds, lower latency, and improved performance when connecting to multiple devices. But it’s a pretty new standard. And that means upgrading your networking gear can be expensive.
    Most of the WiFi 7 routers available so far sell for around […]

    https://liliputing.com/?p=170663

    #alexa #android #apple #autoBlocker #foldableIphone #foldables #lilbits #oneUi #samsung #sideloading #tpLink #tpLinkBe230 #wifi7 #wifi7Router

  9. 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

  10. 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

  11. 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

  12. 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

  13. Oral-B Hopes You Didn’t Use Your $230 Alexa-Enabled Toothbrush - With companies desperate to keep adding more and more seemingly random features to... - hackaday.com/2024/06/08/oral-b #electrictoothbrush #smartspeaker #hardware #alexa

  14. 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

  15. 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

  16. 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.

  17. 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

  18. 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
  19. "Alexa, is the NSA listening?"

    That's the only thing I've ever said directly to Alexa.

    As I recall, it doesn't say no.

    #privacy #GovernmentSurveillance

  20. Alexa, what’s the ethical cost of your name?

    Amazon’s voice assistant reshaped smart tech — and real lives. Women and girls named Alexa have reported teasing, harassment, and even changing their names.
    Should tech products use real names at all?🤖

    🔗 Full study: mediaengagement.org/research/t

    #MediaEthics

  21. 🧐 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

  22. Read this and weep.

    A published article on the surveillance by Amazon devices, pretending to be reflective and vaguely self-critical, but really showing no sign of any self-awareness.

    Switch the thing off, my friend, and all is well.

    theguardian.com/technology/202

    #Alexa #surveillance #noAI #noAmazon

  23. @farah

    "Alexa, I've fallen, and I can't get up!"

    "Remain calm. The tow truck is on its way."

    [Minutes later, a tiny truck shows up.]

    "Are you supposed to be the tow truck?"

    "Tow truck? God no. I'm the toe truck."

    "Well, can you help me?"

    "No, but I can take your toes and be on my way."

    #Alexa #Amazon #EmergencyAssist #TowTruck #toes

  24. 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

  25. 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