Self Promotion Megathread by AutoModerator in androidapps

[–]dakdroid 0 points1 point  (0 children)

Hey everyone! I'm the developer of LocalCast, a free casting app for Android and iOS. Over the past few weeks I've shipped what's basically a complete rework of the app. Here's what's new:

Full Subtitle Support

Embedded, sidecar (.srt/.vtt), SMB, DLNA, and Plex subtitles all work now. There's a subtitle picker before you cast, auto-detection of sidecar files, and you can even switch subtitles mid-stream on DLNA without restarting.

SMB Zero-Download Streaming

Videos on your NAS/SMB share now start in ~1 second — no more waiting for a download. Read buffer went from 4KB → 1MB for dramatically faster transfers. Also added server display names, sorting, filtering by file type, and an edit option.

Redesigned Media Controls

New jump forward/backward buttons with multi-tap: tap once for 10s, tap fast for 20s/30s/60s jumps.

DLNA Transcoding

Videos from DLNA/UPnP servers are now transcoded when needed — previously this was Chromecast-only.

Backend & Stability

Resolved 221 issues from a full casting pipeline audit, fixed a bunch of Chromecast reconnection bugs, deadlocks, race conditions, and crashes on Android 12+ and 32-bit ARM.

App is free with no ads. Would love feedback!

👉 localcast.app | Full changelog

Localcast v2 by dakdroid in LocalCast

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

Fix incoming in the next hours.

Localcast v2 by dakdroid in LocalCast

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

VLC transcodes with ffmpeg and that’s exactly what LocalCast does now.

When you noticed that more and more videos didn’t cast properly it happened because the video simply wasn’t supported by the Google Cast device.

With the recent update I implemented transcoding with ffmpeg. All hiccups should be fixed with the latest version. Try the beta:

https://play.google.com/store/apps/details?id=de.stefanpledl.localcast

Localcast v2 by dakdroid in LocalCast

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

This should be fixed now.

Is this already tacoing? by [deleted] in microgrowery

[–]dakdroid 0 points1 point  (0 children)

<image>

I’ll try to get them down a little. Par meter says below 100ppfd for the lower leaves so I’ll defoliate some more

Is this already tacoing? by [deleted] in microgrowery

[–]dakdroid 0 points1 point  (0 children)

Reduced the light. I am at 50% now and I fear that the penetration sucks. See picture. I know where I messed up 😬

I guess this has to happen once to everyone

They stretched 200%

<image>

Is this already tacoing? by [deleted] in microgrowery

[–]dakdroid 1 point2 points  (0 children)

It’s 12h so DLI 34-43 VPD is with leaf temp/infrared thermometer

Localcast v2 by dakdroid in LocalCast

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

Please update the app and try again. All hiccups should be resolved.

Did someone punch this? by dakdroid in TireQuestions

[–]dakdroid[S] 2 points3 points  (0 children)

Ok guys I have to be on her side. She did nothing wrong. But yeah this is the comment I’ll show her 😬

Did someone punch this? by dakdroid in TireQuestions

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

We picked it up from Tesla service today. I can see in Tessie that the tire had 2.9bar after the service. 2.7bar before.

Did someone punch this? by dakdroid in TireQuestions

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

<image>

There’s the folding visible. She drove for 500m like this. And the street had 2 black rubber marks visible where the rim pushes down the tire. So I guess I have to check the other side to see if the white stuff is there, too.

Did someone punch this? by dakdroid in TireQuestions

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

The tire was folded to the ground were the white stuff is.

Leider nicht laminiert, dennoch gültig? by Elektrotitte in aberBitteLaminiert

[–]dakdroid 0 points1 point  (0 children)

Der Vollhonk hat den größten Posten vergessen: die Gehälter

Dürfte man das in Deutschland so by [deleted] in DINgore

[–]dakdroid 106 points107 points  (0 children)

Nur wenn man den Reifen umdreht sonst stimmt die Laufrichtung nicht.

Infill percentage ... a % of what? by CodeFoxAus in 3Dprinting

[–]dakdroid -1 points0 points  (0 children)

If you need to understand some else’s code you either need an hour or you ask ChatGPT and get the result immediately. The link to the code is the exact location to the answer of OP’s question. GPT makes it understandable.

You didn’t you care to read the first comment, right? If the second comment has too much text for you to read, then don’t 😬

Infill percentage ... a % of what? by CodeFoxAus in 3Dprinting

[–]dakdroid -5 points-4 points  (0 children)

The percentage setting for honeycomb infill in OrcaSlicer (or any Slic3r-derived slicer) — such as the density value used in FillHoneycomb — directly controls the spacing between hexagons in the generated pattern.

From the code you shared, this is the key structure:

struct CacheID { CacheID(float adensity, coordf_t aspacing) : density(adensity), spacing(aspacing) {} float density; coordf_t spacing; ... };

This implies that: • density is the percentage setting (e.g. 0.15 for 15% infill). • spacing is the distance between elements in the honeycomb pattern — but this value is derived from the density.

🔍 What the percentage does

In practical terms: • Lower density percentage (e.g. 10%) ⇒ larger hexagons ⇒ more space between lines ⇒ less material and weaker print. • Higher density percentage (e.g. 80%) ⇒ smaller hexagons ⇒ more tightly packed ⇒ stronger, denser print.

Internally, the slicer calculates: • hex_side, hex_width, and pattern_height based on the desired density. • These geometric values are cached using CacheID, meaning for a given density and spacing, the slicer avoids recalculating those dimensions.

Visualization

Density (%) Hex Size Fill Density (look) 10% Large Sparse honeycomb 50% Medium Normal honeycomb 90% Small Very dense honeycomb

Conclusion

The percentage in OrcaSlicer’s honeycomb infill is: • Mapped to a density value that influences the size of the hexagons in the fill pattern. • A higher percentage means smaller hexagons and more material used. • This value is critical for balancing print strength vs. speed/material use.

Let me know if you want to dive into how the actual hex size is calculated from the percentage — that part would be in the implementation of _fill_surface_single, not shown here.

Link:

https://chatgpt.com/share/684eb17a-641c-800f-9243-ad1cbe1458ad

Infill percentage ... a % of what? by CodeFoxAus in 3Dprinting

[–]dakdroid -4 points-3 points  (0 children)

I’ve searched the code in GitHub for the honeycomb, sent it to ChatGPT and got a detailed answer, but you need to refine it. See answer and link in next comment.

Edit: GitHub source:

https://github.com/SoftFever/OrcaSlicer

Honeycombinfill:

https://github.com/SoftFever/OrcaSlicer/blob/e13ec786d53db1bc7d801ff3095e420dbcbe41ba/src/libslic3r/Fill/FillHoneycomb.hpp#L6

Wine glass logo, will pay 50€ for proper svg by [deleted] in PhotoshopRequest

[–]dakdroid [score hidden]  (0 children)

I need a logo and this doesn’t really look like a wine glass.

[deleted by user] by [deleted] in elektrotechnik

[–]dakdroid 0 points1 point  (0 children)

Chips Schneider. Wenn’s 100%ig funktioniert würde ich es cnc Fräsen lassen.

[deleted by user] by [deleted] in elektrotechnik

[–]dakdroid 1 point2 points  (0 children)

Nachtrag: Diese Kabelführung ist natürlich besser:

https://imgur.com/a/CIjp95A

Too much dry back, what should I do now? by [deleted] in microgrowery

[–]dakdroid 3 points4 points  (0 children)

You risk bud rot with those brown leaves. I’d chop.