• 2 Posts
  • 13 Comments
Joined 1 year ago
cake
Cake day: July 17th, 2023

help-circle

  • Which then wouldn’t be a legally full verification of your age, thus the legislation would probably require some other means. We currently have a similar discussion in the EU regarding porn sites. Verification methods could be showing your id card and your face to a webcam, or showing up at a verification office in person (at least in germany we have this with our national postal service). Of course the porn sites don’t want to implement this. And I cannot really blame them. Nobody would give a random porn site their real identity and it would still be very easy to get porn without verification.

    Age verification on social media is very similar.


  • I don’t know about Mikrotik, but it might also be interesting to buy something, that is running on OpenWRT, an open source router OS. That way you would have maximal configurability. I recently purchases a GL.iNet AXT1800 for my own home lab (though I’m currently only using it for the isolated homelab, not for the rest of the house). You can even host stuff directly on the router with OpenWRT. I currently have Centos 9 repos hosted there and DHCP/TFTP for network installation of VMs via PXE boot.





  • Currently I’m not focussing on media stuff, more on experimenting with different technologies, that I use for work (like Openshift, Docker, Puppet, Ansible). Having dedicated hardware, that gets me further than some small VMs on my PC will be great for that.

    Though I might move to media stuff in the future. Heard a lot about jellyfin, for example. Though then I need to upgrade my home network too. It still is limited to 100mbit. But I already have wired connections through most of the house.

    Thanks for your fast answer



  • Ok, that sounds like a solid recommendation for the NUC. I think I can live without IPMI, especially since this is the start of my homelab (besides my RaspberryPis)

    I’ve heard a lot about proxmox and I will definitely try it out before any other solution. Running VMs and containers side by side is a great plus.

    At this point I haven’t really looked at the router-with-custom-firmware game. I heard about openWRT and OPNsense, but I definitely need to do some research on that. Interesting site, though it looks terrible on mobile.

    Thanks for your recommendations





  • Thanks for your answer!

    Actually I already have the entries in a proper JSON format. I build my django API endpoints to get a batch of entries with all their details, including URLs for the actual media. Only the visualization is not how I would like it to be. I already have a visualization, that is list-like and looks good, but is not suitable for the mass of entries the endproduct will have to hold. Thus a zoomable timeline.

    I know about TImelineJS’s events, but that didn’t really help me. One of the problems I encountered was with stacking or not stacking the elements, when zooming out. Maybe I need to dig more in CSS to dynamically size each entry based on … what exactly? Zoom position? Collision with other entries? Somehow calculated density of entries? You see, I’m very much confused and overwhelmed. I don’t want to invest much time in a direction, that will not lead to the right place.

    I will have a look at the tutorial and vueuse. Previously I followed a 4h tutorial on youtube, which was about vue and django in conjunction. Maybe after that tutorial I understand, how I might build the timeline myself.

    EDIT: Ok, I did go through the tutorial now. Almost all concepts where not new to me, but I definitely learned a bit about reactivity (used it unknowning of the concept through the data function of a component). Though I still don’t know how I would start building a Timeline. I can create and use components in Vue (already using that in my app), but I have problems handling the low level visual part, which is not just some HTML objects nested, like my list of entries.