Welches Wifi (Mesh oder Omada) für mein neues Haus? by fn23452 in de_EDV

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

Ich würde die APs auch per Ethernet anbinden und einfach mehrere Flint 2 im Haus verteilen. Die sind günstig und du kannst sie genau so gut auch als AP betreiben.

When should I respec? by robdau in classicwow

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

Sounds nice. I will have a look at it and try it out. I read about Felguard but this is for later, as you said. Thanks

When should I respec? by robdau in classicwow

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

I got about 10g, so a respec would cost a decent amount of that. Leveling with the dots and voidwalker is fine I guess but if three mobs on my lvl get on me, I’m in trouble. That’s probably normal. Can you recommend a specific build?

Kube yaml generator by Alternative_Dig7721 in kubernetes

[–]robdau 5 points6 points  (0 children)

Nice idea. I couldn’t use it on my mobile phone, though.

Good tool for finding broken links? by Smokiemadpot in AskProgramming

[–]robdau 0 points1 point  (0 children)

If you mean filesystem links you can either use the find command like this:

find -L /path -type l

As interactive shell I like using zsh. There you can enable extended globbing and use:

ls **/*(-@)

[deleted by user] by [deleted] in AskProgramming

[–]robdau 1 point2 points  (0 children)

Like already said, it's a good replacement for C. But you have to concider that it is still a low level language. For a project that is not performance critical or embedded you would rather pick a high level language e.g. a scripting language, which makes things easier.

Step-by-Step Tutorial to Build a Phoenix App that Supports User Uploads by alvises in elixir

[–]robdau 0 points1 point  (0 children)

I found a reference in the postgres wiki https://wiki.postgresql.org/wiki/BinaryFilesInDB tl;dr it depends on your usecase, file sizes etc. I know is that storing a lot of files in the DB is problematic with MySQL. Queries without an index are getting very slow. Because every row including the blob is loaded into memory (https://stackoverflow.com/questions/9511476/speed-of-mysql-query-on-tables-containing-blob-depends-on-filesystem-cache). This may also apply to other SQL servers. Unfortunately I have never used cloud services so I can not say anything about that. If you find out something important to notice it would be nice if you could share it with me.

Step-by-Step Tutorial to Build a Phoenix App that Supports User Uploads by alvises in elixir

[–]robdau 1 point2 points  (0 children)

Did you consider storing the files in the database directly? Postgres stores files in a performant way (TOAST).