Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)DR
Posts
18
Comments
182
Joined
4 yr. ago
  • If you watch closely how most of them are standing and holding the platform above them I doubt they are holding any weight. Most of them have hands crossed, elbows unlocked, or bear the wiight woth neck (heads down) so they are holding nothing. Also some levels are clearly not holding anything from the floor above. So since It can't stand floating, some kind of platform is involved.

    My conclusion is they are just standing in an aseathic way over a platform and not carrying any wight.

  • I guess it is better to spend some little time cleaning up your existing install than doing a fresh one. From what you describe, you just have some leftover configuration files you can delete.

    Fresh installs is needed when you messed up your current install with broken packages or missing ones or missing configuration and you just don't know how to clean it up.

    So as long as you can clean up your install, just clean it.

  • The only two important columns are "Local address: port" and "process". The later is what process is listening whille the former is the interface that process is listening on and the port.

    So you see that I don't have any process listening on any port other than 80 and 443 iin the host and the regular ones.

    That said, you containers will still listen on the ports you want but only on a virtual network interface.

    Basically you only need to publish ports 80 amd 443 on the container or pod you have your reverse proxy on. Other containers need to only be attached to the same network as you already did.

  • For spending, calculate your daily spend limit (monthly income divided by 31) and try not to spend anything more than that any given day. If you need to spend more then you have to save that money from thee day before. Do not lend money from future days. Only accumulate from money not spent in the past. For example your monthly income 3100, then your daily spend limit is 100. You cannot spend 150 and hope that tomorrow you will only spend 50. Do it I. Reverse. Today spend 50. If you manage it, tomorrow spend 100. Only if necessary that you can spend 100 + the 50 you saved the day before.

    Also try getting rid of the pets. I can't believe you pay insurance for the pet. We do have people that have no insurance even for themselves. I know you love them, but it times are hard. Maybe be give them to someone you know so you can get them back once you are doing better.

    You haven't spoken much about food but you have cook your own food and snacks. Do not eat out. Do not but snacks. Your health and pocket will thank you. You can have snacks for really cheap. Just find inspiration in the internet or your relatives.

  • It is good you have solved you initial issue. However, as you say, your rules are too permissive. You should not publish ports from containers to the host. Your container ports should only be accessible over reverse-proxy network. Said otherwise

    <my domain>

    :3000 should not resolve to anything.

    This can be simply acheive by not publishing any port on your service containers.

    Here is an example of my VPS:

    Exposed ports:

     undefined
        
    $ ss -ntlp
    State                Recv-Q               Send-Q                             Local Address:Port                             Peer Address:Port              Process                                                  
    LISTEN               0                    128                                      0.0.0.0:22                                    0.0.0.0:*                  users:(("sshd",pid=4084094,fd=3))                       
    LISTEN               0                    4096                                     0.0.0.0:443                                   0.0.0.0:*                  users:(("conmon",pid=3436659,fd=6))                     
    LISTEN               0                    4096                                     0.0.0.0:5355                                  0.0.0.0:*                  users:(("systemd-resolve",pid=723,fd=11))               
    LISTEN               0                    4096                                     0.0.0.0:80                                    0.0.0.0:*                  users:(("conmon",pid=3436659,fd=5))                     
    LISTEN               0                    4096                                  127.0.0.54:53                                    0.0.0.0:*                  users:(("systemd-resolve",pid=723,fd=19))               
    LISTEN               0                    4096                               127.0.0.53%lo:53                                    0.0.0.0:*                  users:(("systemd-resolve",pid=723,fd=17))  
    
    
      

    Redacted list of containers:

     undefined
        
    $ podman container ls
    CONTAINER ID  IMAGE                                        COMMAND               CREATED        STATUS                 PORTS                                     NAMES
    [...]
    docker.io/tootsuite/mastodon-streaming:v4.3  node ./streaming      2 months ago   Up 2 months (healthy)                                            social_streaming
    docker.io/eqalpha/keydb:alpine               keydb-server /etc...  2 months ago   Up 2 months (healthy)                                            cloud_cache
    localhost/podman-pause:4.4.1-1111111111                            2 months ago   Up 2 months            0.0.0.0:80->80/tcp, 0.0.0.0:443->443/tcp  1111111111-infra
    docker.io/library/traefik:3.2                traefik               2 months ago   Up 2 months            0.0.0.0:80->80/tcp, 0.0.0.0:443->443/tcp  traefik
    docker.io/library/nginx:1.27-alpine          nginx -g daemon o...  3 weeks ago    Up 3 weeks                                                       cloud_web
    docker.io/library/nginx:1.27-alpine          nginx -g daemon o...  3 weeks ago    Up 3 weeks                                                       social_front
    [...]
    
      
  • You can use a black theme. Look at gnome-look.org

    You can also reverse engineer them to look how they make the theme blank and apply it to adwaita. This is not complicated as themes are mostly CSS.

    Edit to add that you can chat with people from open deskttop (gnome look) to ask your question: https://chat.opendesktop.org/#/welcome

  • Why should the drives be sneakily deposited. If he trusts his relative or friend he may just tell them to keep it safe until new gets out.

    However the bigger challenge would be to read the files using newer technology since those drive connectors might get obsolete. Maybe you need to store technology you can read it with. For example an external disk drive with USB 3 cables and Somme USB C adapters. If using internal drives this gets a bit complicated since you would need also some cables and motherboards. So external hard drives would be easier.

  • Maybe you could delete Reddit. But you can self-host your own lemmy instance in addition to you website. It does not hurt to have your own website in addition to social media.

    However, you cannot host a lemmy on github pages.

  • They have potential. They always endup being used. Sometimes, to make better use of space I might swap bigger jars with smaller ones depending on the content. In the storage cabinet, bigger jars can contain smaller ones.

  • Seems like you have a permissions issue. I just tested it on Fedora workstation gnome, run it from regular menu, then it asked me for password. You, you have a permission denied isssue, so you need to figure out how to run it as root.

  • JavaScript @programming.dev
    dragnucs @lemmy.ml

    Creating a tool to rewrite jQuery to vanilla Javascript? Something like rector from PHP.

    In PHP ecosystem there is a tool called Rector. It helps a lot in automated refactoring. It helps a lot in updating from a bad design pattern to another, update code to match a given framework updates, etc.

    Maybe we could create a similar tool for client side Javascript to migrate away from jQuery to vanilla Javascript. Websites youmightnotneedjquery.com have a good collections of vanilla JS alternatives to jQuery.

    While one could do it manually, on larger code bases, it is extremely tedious.

    Maybe such tool exists and I am unaware of it?

    At first, I thought about having such transformation as an optimization step in the bundler, but this is unnecessarily redundant and might cause a lot of troubles.

    Deno - A secure runtime for JavaScript and TypeScript. @lemmy.ml
    dragnucs @lemmy.ml
    deno.com Announcing Deno 2

    Our next major version of Deno combines the simplicity, security, and performance of Deno 1 with full Node and npm backwards compatibility, and much more.

    Announcing Deno 2
    Selfhosted @lemmy.world
    dragnucs @lemmy.ml

    Full open source and private camera monitoring system

    I want to setup a camera monitoring for my house and some rooms. I need to bee able to view the cameras remotely and and also do recording if possible. I could find some camera brands like dahua cams but having briefly tested them they. Seem to rely on acwmtralized cloud and proprietary visualization software.

    What are you recommendation? This is not a professional setup I would at max have 3 cameras.

    Android @lemdro.id
    dragnucs @lemmy.ml

    A good android distribution to use as a VM other than android-x86?

    For all my needs of temporary android devices, I use a temporary VM instead. where I install android-x86. Now I am looking for alternatives to this distro. It is a bit slow to use and now dated. Still on android 9.

    Any recommendation that are FLOSS? A guide how to install Lineage OS on QEmu or KVM is also a good alternative.

    Technology @lemmy.world
    dragnucs @lemmy.ml

    can we please keep this community about technology and not Twitter/X and elon news?

    Memes @lemmy.ml
    dragnucs @lemmy.ml

    Introvert tip #42

    Mildly Infuriating @lemmy.world
    dragnucs @lemmy.ml

    That pattern

    Antiwork @lemmy.ml
    dragnucs @lemmy.ml

    To not give a raise

    Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ @lemmy.dbzer0.com
    dragnucs @lemmy.ml

    Where to download audiobook "Surrounded By Bad Bosses"

    I searched for this audiobook on most known siutes, but could not find it. Does any body have a torrent or magnet to get this audiobook?

    GIT - Github, Gitea, Gitlabs. Everything git @lemmy.ml
    dragnucs @lemmy.ml

    How to maintain a fork of an evolving project while local changes are minimal and mostly related to making project work in personal platform

    So I have this exact need:

    There is an upstream project doing their own thing over git and I want to build container images locally and commit them to my image repository all while following the same version system as upstream.

    To be more precise (perhaps abstract) about my need, what is the best way to apply the same patch when upstream release a new version.

    Any input and best practices or lessons learned are welcome.

    lemmur @lemmy.ml
    dragnucs @lemmy.ml

    Feature request: compact mode

    I am not sure this is the best place for a feature request but a discussion before the actual feature request is most welcome.

    On mobile, lemmure has a card display design. This is nice to show images and other details. However, some people like me want a compact mode a bit like redreader for reddit. Short strips or list of posts and we gat the full detail when we click on the post.

    This is useful to see more content on screen at once while allowing some quick gestures like swipe left or right to upvode or downvote.

    Self Hosted - Self-hosting your services. @lemmy.ml
    dragnucs @lemmy.ml

    Any FOSS Subscription manager. Alternatives to Zuora and Chargebee.

    Is there any FOSS to manage subscriptions? My particular need is to trigger an API call upon subscription to start the service, and then bill subscribers based on their usage. The service would report the usage to the subscription manager.

    It would be awesome if the manager also provides a user area for subscribers to manage their subscription, pay bills and change a few settings, create support tickets, etc.

    Duplicate of https://lemmy.ml/post/92688 since I am not sure this kind crossposts are allowed.

    Free (libre) software replacements for proprietary software @lemmy.ml
    dragnucs @lemmy.ml

    Any FOSS Subscription manager. Alternatives to Zuora and Chargebee.

    Is there any FOSS to manage subscriptions? My particular need is to trigger an API call upon subscription to start the service, and then bill subscribers based on their usage. The service would report the usage to the subscription manager.

    It would be awesome if the manager also provides a user area for subscribers to manage their subscription, pay bills and change a few settings, create support tickets, etc.

    Moroccan community @lemmy.ml
    dragnucs @lemmy.ml

    Moroccan breakfast

    Asklemmy @lemmy.ml
    dragnucs @lemmy.ml

    What funny or memes oriented or generally interesting sublemmy community would you recommend?

    I am looking for sublemmies I could follow that have no other target than entertainment, like eyebleach, PIC, hummm, dank memes, advice animals, battle station, amateurroomporn, natureismetal, pics of unusual birds, etc. Just nice, interesting and funny thinks to look at or read.

    Having a feed fool of !privacy posts is quit depressing.