hands-on azure digital twins read onlineHacker Newsnew | past | comments | ask | show | jobs | submitlogin

Co-founder of brain.fm here. Thanks for the love!

Here's an exclusive deal on the lifetime membership for the next 24 hours.

It's a $29 deal (or 80% off) for the lifetime membership. Our best offer :)

Link: http://brain.fm/HN


hands-on azure digital twins read online
Very cool of you, I was debating the $149 price tag, but at $30 I just paid before I could think of a reason not to.

Quick question: is there a way to use an audio player (e.g., Audacious, RhythmBox, VLC) to stream the music without using a web browser? The animated light curves in the background make the browser use 100% of a whole CPU core, which isn't ideal, especially when using a laptop on battery.

hands-on azure digital twins read online
Eeeek we getting fixing this asap. Until then iOS app is best bet.

hands-on azure digital twins read online
how about approximating those sine-wave curves with bezier curves?

ps: I'm getting my salary on Nov. 11th so could you extend your offer until then?

hands-on azure digital twins read online
Plug of my own. I'm a maintainer on an OSX toolbar plugin called BeardedSpice. Simple mapping of play/pause/etc/ keys to website audio players.

I was really happy to see we already had a controller strategy for brain.fm. You guys are making great stuff.

hands-on azure digital twins read online
Hey, I'm really digging the Focus music. I was wondering to what headphones are you guys tuning it. It sounds awesome on my studio monitors, but it sounds like crap on my ATH-M50 cans due to the bass going over its limit unless I keep it to a rather low volume.

hands-on azure digital twins read online
I use Bose Q25s. The noise cancellation + constant noise of brain.fm are perfect for putting me in a bubble

hands-on azure digital twins read online
Hey you coming out w/ an android app any time soon? Would love to try the relax while I sleep. Just bought the pro deal.

hands-on azure digital twins read online
Yup! 80% done, sprinting to release it.

hands-on azure digital twins read online
Whenever I hear a programmer say "80% done" I think of the contractor's version: "two weeks", from the old '80s movie Money Pit:

https://www.youtube.com/watch?v=70xGgWIw5tU

hands-on azure digital twins read online
The joke at my old work was 'basically done'. Meaning they spent a weekend equivalent on a prototype. Management heard 'done' the rest of us heard 'not production ready'.

hands-on azure digital twins read online
Here is, 'done, just needs testing'.

hands-on azure digital twins read online
Great, that means you only have 80% left to do!

hands-on azure digital twins read online
well generally I think however long the first 80% takes, the last 20% will take 1-2 times that.. but cool that they're working on an android version, I'm patient and can wait. Loving brain.fm it actually works to keep me focused.

hands-on azure digital twins read online
So it's a paid service, but it won't tell me the price (or the limits on free accounts) until I give it my email... No thanks.

hands-on azure digital twins read online
That's a great offer! I'm chiming in to say that it made it a no-brainer for me as well and I signed up. I'm also interested in an Android app. :)

hands-on azure digital twins read online
Just checked out your site and it is great. The sound is superb and it really helps focusing. Also, your offer is super generous.

However, you only accept credit card payments. I would never give my credit card info to a random site just to read a month from now that they've been hacked.

Is there a reason you are not accepting PayPal or BitCoins? It seems that you are not using one of those big payment processors either.

hands-on azure digital twins read online
According to the FAQs they use Stripe.

hands-on azure digital twins read online
My fault. Indeed they submit to stripe. Sorry for the mistake.

hands-on azure digital twins read online
The form was pointing to their own website.

hands-on azure digital twins read online
That coupon code shows a negative price for the lower level memberships, not sure if that means you will be paying us for it :)

hands-on azure digital twins read online
that would be a revolutionary business model

it's a tiny bug, fixing now!

hands-on azure digital twins read online
I just tried it for an hour or so and it does seem great. Bummed on the lack of an Android app though... would've helped me immediately.

Anyway, I read your comments that it is nearly 80% done so I'll give it a shot and signup. The mobile version on Chrome browser works decently well so I think I'll manage with that till then.

hands-on azure digital twins read online
Very cool of you guys offering such a big discount. Tried to sign-up, saw the banner (about the discount), chose lifetime subscription (even without trying) but my card still was charged $149.99. ;( Is there a way to fix this? I mean it totally maybe worth it, yet I wasn't ready to spend that much.

hands-on azure digital twins read online
Oh, I just got refunded. Thanks!

hands-on azure digital twins read online
Impulse purchased this last night without really knowing what it was but boy was i impressed! Incredible really what you've done here and the developement team here loved it to! Well Played chaps!

hands-on azure digital twins read online
I just spent 50 bucks for a yearly subscription to one of your competitors a week ago. My biggest complaint about them is that I can't get a list of tracks that I've really enjoyed and there's no upvote, play more like this feature. I don't care about social "likes" but some songs in an otherwise great playlist are just really grating and throw me right out of the focus window. It would be nice to say "don't play this again"

hands-on azure digital twins read online

Hands-on Azure - Digital Twins Read Online |top|

# --- Compute Logic --- # If temp > 30C, find the parent Zone and mark it as "overheated" if new_temp > 30.0: # Query to find parent Zone query = f"SELECT zone FROM digitaltwins zone JOIN sensor RELATED zone.hasSensor WHERE sensor.$dtId = 'sensor_id'" zones = service_client.query_twins(query) for zone in zones: # Add a computed property zone_patch = ["op": "add", "path": "/alert", "value": "Overheating"] service_client.update_digital_twin(zone['$dtId'], zone_patch) logging.info(f"Alert set on zone zone['$dtId']")

"@id": "dtmi:handsOn:Zone;1", "@type": "Interface", "displayName": "Zone", "contents": [ "@type": "Property", "name": "temperature", "schema": "double", "writable": true , "@type": "Relationship", "name": "contains", "target": "dtmi:handsOn:Shelf;1" , "@type": "Relationship", "name": "hasSensor", "target": "dtmi:handsOn:Sensor;1" ] hands-on azure digital twins read online

Now create the actual twins (instances): # --- Compute Logic --- # If temp

Your graph is now alive. Think of it as a mini-Google Knowledge Graph for your warehouse. Unlike SQL (tables) or NoSQL (documents), ADT uses a graph query language similar to SQL but with RELATED and IS_OF_MODEL . Query 1: Find all sensors in the Receiving Zone az dt twin query --adt-name adt-warehouse-<unique> \ --query-command "SELECT sensor FROM digitaltwins zone JOIN sensor RELATED zone.hasSensor WHERE zone.\$dtId = 'ZoneReceiving'" Result: Returns TempSensor-Rcv . Query 2: Traverse two hops (Warehouse → Zone → Sensor) az dt twin query --adt-name adt-warehouse-<unique> \ --query-command "SELECT sensor, zone FROM digitaltwins wh JOIN zone RELATED wh.contains JOIN sensor RELATED zone.hasSensor WHERE wh.\$dtId = 'WarehouseMain'" This is powerful. In a real app, this query would run in milliseconds, even across 100,000+ nodes. Step 6: Simulate Telemetry and Compute Changes Here’s where it gets truly hands-on. Azure Digital Twins itself does not ingest telemetry directly. Instead, you use Azure Functions or IoT Hub to route data in. Query 1: Find all sensors in the Receiving

The Problem: You have a building, a factory, or a logistics center. Sensors are streaming data, but the data is "dumb"—it’s just a timestamp and a number. A temperature of 22°C in isolation means nothing.

# Connect to ADT credential = DefaultAzureCredential() service_client = DigitalTwinsClient(credential, "https://adt-warehouse-<unique>.api.eus.digitaltwins.azure.net")

# Create twins az dt twin create --adt-name adt-warehouse-<unique> \ --dtid "WarehouseMain" \ --dtmi "dtmi:handsOn:Warehouse;1" az dt twin create --adt-name adt-warehouse-<unique> --dtid "ZoneReceiving" --dtmi "dtmi:handsOn:Zone;1"

hands-on azure digital twins read online
I'm a little late to the party. I bought the lifetime license from an earlier link that had it at $40.

My question is, is the tremolo/pulsating nature of the chords (sort of sounds like a helicopter) on most of the music a side-effect to the AI generated sounds, or is this by-design? If by-design, are there settings I could tinker with? If not, feature request. :)

I'm starting to find this a bit unnerving after extended periods, but it could be a personal preference.

hands-on azure digital twins read online
Only some of the tracks have this. It's by design.

hands-on azure digital twins read online
Previously I was cleaning cookies / local storage (to have more free sessions). Then I downloaded MP3 and created playlists. At $29 I have no other option but to buy it... HURRAY! . . . . brain.fm is like matrix, I admit!

hands-on azure digital twins read online
Extremely cool of you to do this. Discovered the service yesterday, tried it, was amazed (hopefully not placebo) and today signed up (lifetime deal).

hands-on azure digital twins read online
Is it possible to have a similar deal again since from the comments seems there are a lot of developers interesting in your service ? Thanks!

hands-on azure digital twins read online
When is an Android app coming?

hands-on azure digital twins read online
Clicked it, tried it, impulse bought. Seems worth it so far :)

hands-on azure digital twins read online
Assuming theres no Android app?

Any ETA?

hands-on azure digital twins read online
I think you can still run it in the browser. Not quite the same, I know (the iOS app is nice), but I think it might do for now.

hands-on azure digital twins read online
Awesome. Subscribed!



hands-on azure digital twins read online

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC |

Search: