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/)T
Posts
149
Comments
72
Joined
3 yr. ago

  • If the AgoraDesk source code is released? Maybe? It can help anyone who wants to create a P2P trading platform. I think Haveno is written in Java and I have a hunch that AgoraDesk back end is not in Java.

  • Monero @monero.town

    AgoraDesk/LocalMonero is shutting down. Please release all of the source code for AgoraDesk/LocalMonero!

    github.com /AgoraDesk-LocalMonero/agoradesk-app-foss/issues/296
  • Why could a build take 5 minutes? Is it due to the size of your project or the language the bundler is written in (JavaScript being a slower option over Rust)?

  • Web Development @programming.dev

    Do we need Live Reload (Watch) in bundlers?

    marketplace.visualstudio.com /items
  • I fiddle around with podman some more and found that changing these two things will make debugging work with podman. However this will force the container to use the host network and therefore the container will not get its own network space.

    Not sure if this is a good way to go about it for a PHP development environment or if there is a better way to achieve this. The problem with docker setup in the original post compared to podman is when using those steps for podman, the debugger cannot connect to the IDE (VSCode) since the podman container network is isolated as its own network.

    If anyone else knows of a better way to go about this, please do share

    Terminal command to create container

     
        
    podman container create --name my-container -v ./app/:/usr/src/app/ -v .:/usr/local/etc/php/ -w /usr/src/app/ --network=host -it my-php-image
    
      

    php.ini

     
        
    xdebug.client_host = "host.containers.internal"
    
      

  • Podman @programming.dev

    php with xdebug: Unable to debug console PHP in Visual Studio Code when using podman (Works in Docker)

  • The explore feature for the local instance has been made!!!

    Please add the explore feature to explore the entire fediverse!

  • linux4noobs @programming.dev

    vlock timeout inactivity

  • JavaScript @programming.dev

    How do I structure a library for NPM (With modules)

  • Changing Type=oneshot and adding RemainAfterExit=yes underneath does not allow me to boot into my system. I get this as the last terminal message

     
        
    [ OK ] Reached target Cloud-init target.
    
      

    No biggie to fix since I did this in a Virtual machine and could restore to an older snapshot.

  • linux4noobs @programming.dev

    Server/Headless Linux: enable automatic login to a user on boot but when the user logs out, it will not re-login back into the user?

  • I do use dropbear-initramfs. However the issue if I power off or the power goes out while I am unlocking the computer, I will be unable to reboot the computer using WOL. Is there something like dropbear-initramfs but instead of it being a SSH server for the LUKS lockscreen, it is a WOL enabler?

  • Web Development @programming.dev

    Content Licensing and Attribution Section?

  • linux4noobs @programming.dev

    Enable Wake On LAN (WOL) On Full Disk Encryption Boot To Ensure WOL Is Enabled If System Is Rebooted On Full Disk Encryption Unlock Menu

  • Not a bad idea as long all nodes will allow any wallet to recover all funds, not all transaction history, just balance.

  • Please add the crypto addresses to the site sidebar under donations. You also may want to consider accepting BTC, BCH and LTC. Glad your accepting XMR though for private donations.

  • I think all cryptocurrency blockchains that function as money or store of value should do this. However I think 1 years worth is better than 10 years worth of data, or perhaps even less than a years worth of data.

    As long as the blockchain size remains small enough for the adverage Joe to store the entire chain onto their mining computer for when or if Monero reaches mainstream mass adoption usage. By mainstream mass adoption I mean Monero is used as much as Visa or Mastcard is globally which I would assume will mean that Monero will need to handle 1 million transactions per second.

  • The customizable post metadata is amazing! Would like to see customizeable comment metadata if possible.

    Thank you devs for allowing us to customize the upvote downvote display on comments and posts!

  • When I change the path to this...

    docker container create --name nginx -v $(pwd)/nginx.conf:/etc/nginx/conf.d/nginx.conf -v $(pwd):/app/ -p 80:80 docker.io/nginx

    It does not seem to make a difference since when I go to localhost in my browser, I am still greeted with the "Welcome to nginx!" page.

  • Docker @programming.dev

    A working volume on a single file, not a directory?

  • Discord is the worst. Requires a phone number, does not allow email aliases and logs your chats.

    Matrix and SimpleX is way better

  • I may not have a domain name, and therefore no HTTPS, just HTTP only and can only connect by knowing the IP address and port number.

  • I may at times only have access to HTTP only (No HTTPS) which is one of the reasons why I want another form of encryption.

    Encryption with most VPNs are more secure than HTTPS. Yes, the connection between the VPN server and the web server is not encrypted with the VPN and only HTTPS. However the encryption between the VPN and personal device is superior, not because it is relayed. My understanding is that HTTPS is "secure" for basic use, just like Windows 11 is secure. But not secure from five eye agencies unlike VPNs and other like systems like Tor and I2P.

    My goal is to have a user connect to a web server and have it not possible for the web server to know what is going on, nor can anyone snooping the packets in transit know what is going on. Not know the HTML structure, form field data, etc.

  • Mega is a good example of what I want to learn to create. Not just to transfer files, but for what text is displayed on the page and the form field values and have it so that the server admins cannot decrypt and is encrypted this data in transit.

  • Web Development @programming.dev

    End-To-End Encrypted (EE2E) Websites?

  • Isnt X being replaced with wayland? I may do that in the future once wayland is more adopted.

    However I would like to achieve this on headless servers with no GUI at all.

    I prefer using Rustdesk if I have to remote into a machine and see the machines GUI.