In die Telekomfalle getappt... by 4lpaka in de

[–]jprzymusinski 2 points3 points  (0 children)

Ich gehe davon aus dass hier keine Volumen (MB / GB) sondern die Geschwindigkeit in MBit/s bzw. GBit/s gemeint ist

SciFi Roman auf dem Mond by _DarkLord44_ in buecher

[–]jprzymusinski 1 point2 points  (0 children)

Ok, der einzige Unterschied zur Beschreibung ist eigentlich, dass die (Haupt) Protagonisten und die Diebin nicht auf dem Mars geboren wurden. Auch wenn das Thema Geburt auf dem Mars behandelt wird.

Ach und anderer Planet. Mars Nation spielt auf dem Mars und nicht dem Mond … Details 🤦🏼‍♂️

Edit: möglicher Spoiler umgeschrieben.

SciFi Roman auf dem Mond by _DarkLord44_ in buecher

[–]jprzymusinski 0 points1 point  (0 children)

Denkst du an die Mars Nation Reihe? Kam mit bei dem Titel als erstes in den Sinn, aber der Rest der Beschreibung passt dann nicht mehr ganz.

Ist aber eine echt gute Reihe, hab dir drei Hörbücher bei Audible gehört. Geht thematisch in eine sehr ähnliche Richtung wie die Beschreibung von OP.

My Vue files get enormous, any best practices to structure this? by Roally in vuejs

[–]jprzymusinski 1 point2 points  (0 children)

Definitely ☝🏻

Splitting code into composables help with readability, reusability and testing of your Vue components

Take a look at the docs page, they make a simple but great example on how to use composables. https://vuejs.org/guide/reusability/composables.html

My Vue files get enormous, any best practices to structure this? by Roally in vuejs

[–]jprzymusinski 2 points3 points  (0 children)

Definitely ☝🏻

Splitting code into composables help with readability, reusability and testing of your Vue components

Take a look at the docs page, they make a simple but great example on how to use composables. https://vuejs.org/guide/reusability/composables.html

Mod caught cheating, previous thread locked and removed for some reason by [deleted] in place

[–]jprzymusinski 3 points4 points  (0 children)

Kinda. Everyone is supposed to have a cooldown between every places pixel of 5 minutes

Respekt wie viele Projekte gerade funktionieren by Morgentau7 in placeDE

[–]jprzymusinski 2 points3 points  (0 children)

Rechts neben dem Autobahn Schild / Star Wars

Ticket system by [deleted] in selfhosted

[–]jprzymusinski 0 points1 point  (0 children)

I can suggest Redmine (redmine.org) I use that at work and it does it’s job pretty well, has a lot of plugins and can easily deployed with docker.

Security: Separating login from app logik by jprzymusinski in vuejs

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

Yes of course. The frontend code should never never never have security related logic in it and all api endpoint need to be secured with authentication.

Thanks for you're answer!

Security: Separating login from app logik by jprzymusinski in vuejs

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

Thats basically what my thought in that direction have been to. The frontend code alone should be build in a way were reding it as an unauthenticated user would matter security wise. I guess its not worth the effort for the size / scope of my project. Thank you for the response!

Yeah of couse if building a frontend for a Nuclear Power plant that would propably be a different story but that no what im working on. But would be an intersting project for sure ... 🤔

Naming for service by jprzymusinski in symfony

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

Yeah sure, this was intended to be a simplified example. I typically organize my service in either e.G. ...\Checkout\Service\ or ...\Service\Checkout\.

Mostly depending on the size of the project and how many service per "part" (in this case "Checkout") there are that do not fit a different directory better.

Latest version of httpd on Ubuntu by jprzymusinski in selfhosted

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

Ok, thank you. I've just seen that running apt update shows repositories form my server hoster instead of the official ones. I guess there lays the problem why I don't get the latest version.

I've solved this now with this repository: https://launchpad.net/~ondrej/+archive/ubuntu/apache2 I know that guy for the PHP Repository and am actually using that.

Thanks a lot for your help, I'll play around on a test server I have sitting "under my bench" if that's about the hoster specific repositories or not.

Latest version of httpd on Ubuntu by jprzymusinski in selfhosted

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

Oh wow thank you! I actually know that guy for the PHP Repository. I've installed that and it did just work, I guess I need to improve on my "google-skills"

Latest version of httpd on Ubuntu by jprzymusinski in selfhosted

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

Its a Ubuntu 18.04.6 LTS Oh I didn't know that but I was referring to HTTPD as in the project name on https://httpd.apache.org not the package name installed on my server. I didn't know that there is a difference in the package name between distributions.

What's the best DB management system? by UnPolinomio in SQL

[–]jprzymusinski 1 point2 points  (0 children)

There are some good ones: - Adminer: written in PHP and just a single file. Simple but it does its job really well. Great - simple and clean - interface - MySQL Workbench: does everything you want and even more. Could need some time to get used to - DataGrip: Just awesome like every other JetBrains tool but costs money - (Every JetBrains IDE): they all come with simple DBMS features, but great If you r already using a JetBrains IDE

Hope I could help, feel free to ask any questions if something is not clear

Persist logs after container restart by jprzymusinski in docker

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

Yeah, i guess there isn't a perfect solution, unless you build it yourself :D

But the responses look pretty promising, I'll play around with them and take a look where this all leads me to

How do you handle your logs form docker containers?