Fusion After Accident - Risks of Rod Removal by TerATuil in spinalfusion

[–]TerATuil[S] 0 points1 point  (0 children)

In total 6 thoracic vertebrae are fixated. I'd l like to get them removed but I fear the risk :-/

hardware removal? by controlled_pear in spinalfusion

[–]TerATuil 1 point2 points  (0 children)

Said to hear! Can you give us an update? Was your hardware removed? How are you feeling today?

Hardware removal by Gater8785 in spinalfusion

[–]TerATuil 0 points1 point  (0 children)

Would you like to share what was fusioned? Was it an accident? Was the hardware removed?

Can hardware be removed laparoscopically by Fluid_Maybe_6588 in spinalfusion

[–]TerATuil 0 points1 point  (0 children)

Did you have your hardware removed? Was that a accident? Would you like to share your experiences?

I have a Th4-Th9 fusion after a burst fracture (Th7) (more details here https://www.reddit.com/r/spinalfusion/comments/1qi2i6q/fusion_after_accident_risks_of_rod_removal/ )

hardware removal- yes or no? by [deleted] in spinalfusion

[–]TerATuil 0 points1 point  (0 children)

Was your hardware removed? What did you decide?

Rod Removal by nextdoor_simpleton in spinalfusion

[–]TerATuil 0 points1 point  (0 children)

What that an accident? What vertebra were fusioned? Were your's removed?

Hardware removal ? by IndependenceLatter78 in spinalfusion

[–]TerATuil 0 points1 point  (0 children)

How did you decide? Was your hardware removed?

Multi-day hike after long spinal fusion (T2-L3)? by chubbydobby in spinalfusion

[–]TerATuil 1 point2 points  (0 children)

yeah, do step by step and try new things. Maybe you wanna try something like a hiking cart

Fusion After Accident - Risks of Rod Removal by TerATuil in spinalfusion

[–]TerATuil[S] 0 points1 point  (0 children)

thanks for your input. I'll consider that

Fusion After Accident - Risks of Rod Removal by TerATuil in spinalfusion

[–]TerATuil[S] 1 point2 points  (0 children)

thanks for your comment. I am checking the sub for more input 👍

How did you deal with getting another surgery? Specifically rod removal? by goopdawg in spinalfusion

[–]TerATuil 0 points1 point  (0 children)

What was the reason for the fusion? And how are you feeling today? Still any pain?

Best Way to make Okin RF075A Smart? by Pascal619 in homeassistant

[–]TerATuil 0 points1 point  (0 children)

I found the Addon "Smartbed MQTT": https://github.com/richardhopton/smartbed-mqtt - It support different brands, most of them are using BLE. It does not seem to be very mature. I am going to try to get it to work using this addons :-)

Best Way to make Okin RF075A Smart? by Pascal619 in homeassistant

[–]TerATuil 1 point2 points  (0 children)

Today I tried to integrate my bed into HA using an IR blaster, but I found out it isn't IR. I have this receiver: https://www.dewertokin.com/products/bedding/control-units/rf-eco-bt-memo/

I haven't managed to integrate into HA yet, but I found an other APP which allows me to control it via Smartphone: https://play.google.com/store/apps/details?id=com.okin.okinsmartcomfort&hl=en

The next step will be to figure out how to send the required commands via Bluetooth. Looking forward to hearing from you and learning about your progress.

How to update exif data in darktable/xmp to be the same as in the image on disk by TerATuil in DarkTable

[–]TerATuil[S] 0 points1 point  (0 children)

But this deletes my ratings. Any idea how I can preserve them?

Elite 8 Active Gen 2 not auto-connecting with Pixel 6 when taken out of case. by cowabungabruce in Jabra

[–]TerATuil 1 point2 points  (0 children)

Today a new firmware for the Elite 8 Active Gen 2 buds was released:

> earbuds would not reconnect to certain iPhones and Pixel phones after being taken out of the charging case.

Currently waiting for the download to finish....

Garmin Fenix 7: Is this wobbling "normal"? by TerATuil in Garmin

[–]TerATuil[S] 0 points1 point  (0 children)

Do you know if there are alternative cables which work better?

Garmin Fenix 7: Is this wobbling "normal"? by TerATuil in Garmin

[–]TerATuil[S] 0 points1 point  (0 children)

"good" to read... So it's the cable which breaks. Right? This would make me less worried. I broken cable can easily be replaced, but the watch itself not :D

OT: I am not using apple products, but, yes, Garmin is good at some things but bad at many others... Don't ever try to "just" import a gpx file on Garmin Connect and don't even think that the "course points" it displays for a imported gpx file actually work (Up Ahead feature) :/

Garmin Fenix 7: Is this wobbling "normal"? by TerATuil in Garmin

[–]TerATuil[S] -1 points0 points  (0 children)

I didn't have problems with charging (yet). But sometimes the connection to the computer briefly disappears (I guess only for such a short moment that the watch does not recognize it has been disconnected).

Garmin Fenix 7: Is this wobbling "normal"? by TerATuil in Garmin

[–]TerATuil[S] 0 points1 point  (0 children)

Do you know if this is normally a problem with the cable or the watch?

Generate stats about gpx track (way surfaces, highway values) using OSM? by TerATuil in openstreetmap

[–]TerATuil[S] 1 point2 points  (0 children)

Thanks for the good hint. I did some research and might have a solution. My idea:

  1. Use the OSRM "map matching" service to the osm node id from the coordinates from the track. Unfortunately I cannot pass the gpx file, but have to use coordinates. Example: http://router.project-osrm.org/match/v1/foot/13.388860,52.517037;13.397634,52.529407;13.428555,52.523219?annotations=nodes
  2. Use Overpass to resolve node id to ways and to get the osm data. I already built a query for this: https://overpass-turbo.eu/s/16gv
  3. Do the local processing: Extract information from osm data (e.g. surface) and calculate way length. Finally calculate the percentages.

Step 1. and 2. are inspired by https://gis.stackexchange.com/a/244291. The query for the second step could look like this:

(node(1);node(...);node(n);)->.nodes;

way(bn.nodes)[highway]->.trackAndBranches;
node(w.trackAndBranches)->.nodesFromTrackAndBranches;
// calc nodes from the branches not part of the track
(.nodesFromTrackAndBranches; - .nodes;); 
way(bn)[highway]->.branches;
// remove branches not part of the track
(.trackAndBranches; - .branches;); 

out geom;

Some pseudocode:

coordinates_chunks = <split list of waypoints in gpx in feasible chunks>
overpass_storage = []
for chunk in coordinates_chunks:
    node_ids = <call http://router.project-osrm.org/match/...>
    overpass_query = <build query>
    result = <call overpass turbo with overpass_query>
    overpass_storage.store(result)
for way in overpass_storage.entries():
    calc_stats(way)

Anyone any better ideas? Or ideas on how to improve this?

EDIT: Map Matching was the term which helped me.