I’ll be honest, I’m just here for the memes.

  • 0 Posts
  • 39 Comments
Joined 8 months ago
cake
Cake day: October 27th, 2023

help-circle
  • xlash123@sh.itjust.workstoLinux@lemmy.mlLadybird announcement
    link
    fedilink
    arrow-up
    56
    arrow-down
    4
    ·
    1 day ago

    I was wondering why it was written in C++, but the FAQ already beat me to it.

    Why build a new browser in C++ when safer and more modern languages are available?

    Ladybird started as a component of the SerenityOS hobby project, which only allows C++. The choice of language was not so much a technical decision, but more one of personal convenience. Andreas was most comfortable with C++ when creating SerenityOS, and now we have almost half a million lines of modern C++ to maintain.

    However, now that Ladybird has forked and become its own independent project, all constraints previously imposed by SerenityOS are no longer in effect. We are actively evaluating a number of alternatives and will be adding a mature successor language to the project in the near future. This process is already quite far along, and prototypes exist in multiple languages.

    Glad to see they are open to using safer languages. C/C++ was great for its time, but we really need to move on from them.










  • xlash123@sh.itjust.workstoSelfhosted@lemmy.worldBeeper Self Hosting
    link
    fedilink
    English
    arrow-up
    5
    ·
    edit-2
    3 months ago

    I’ve been interested in doing this, but I can’t tell why I need to login to Beeper in order to self host. I noticed their previous self-host solution did not require that.

    Because of that login step, I decided to look into this other repo which uses Ansible to deploy a Matrix homeserver and the same bridges that Beeper uses. I haven’t finished it yet since there’s a lot of config and choices to make, but it seems like it’ll serve the same end goal.

    Edit: lol, maybe if I read the intro, I’ll get my answer.

    You can connect any† standard Matrix application service to your Beeper account without having to self-host a whole Matrix homeserver.

    Still might go with the second option so that I don’t rely on their cloud services.





  • I just started using Backblaze B2, switching from AWS S3. I use it through Rclone to encrypt everything before I upload it. Only $6/TB/mo and it only charges what you use. You can download up to 3x your data stored per month for free, so if you ever decide to move or you need to restore a backup, you don’t have to pay egress costs. It was the cheapest service I could find, but there may be others.

    You can set price limits on your account to ensure you don’t go over too. It will alert you when you approach the limit. There are some minor costs, like pinging the API, but they are free up to a reasonable amount.




  • There are situations where it does make sense to rent or put a property up for rent. For example, if you are relocating temporary for a job or education, it would make a lot of sense to get a short term lease, rather than buy or stay in a hotel (depending on price, of course). An individual who know that a property of theirs won’t be used for some time can then lease it out to this person. It’s a win-win, as tenants don’t deal with the process of closing or the responsibility of ownership, and the landlord makes some extra cash on the underutilized property.

    However, the problem really comes down to when it becomes a business. Companies buy up large quantities of land and property and rent them out, allowing them to shift the costs of mortgage and taxes to the tenant while reaping the benefits of increasing equity. Furthermore, the amount of property for sale decreases, artificially lowering supply for housing to own. This drives up costs. As the company buys up more and more property, they also get to jack up the prices because of their local monopoly. In the individual landlords case, this wouldn’t happen because they have to compete with the rest of the diverse market. So overall, prices go up for housing everywhere.

    I see a few paths to a solution.

    1. Limit the number of properties a corporation/individual can lease and/or increase taxes exponentially. This prevents the ability to lease out tons of property, while still allowing businesses to own multiple properties as needed for actual work.
    2. Remove restrictions on single family only housing and residential zoning. This is mainly a US issue, but it would allow for denser housing options, increasing supply in places where that is currently impossible. It would also create more opportunities for economic growth, as placing residencies in areas with businesses reduces demand on cars and makes it easier to network with people.

  • As mentioned, binary test files makes sense for this utility. In the future though, there should be expected to demonstrate how and why the binary files were constructed in this way, kinda like how encryption algorithms explain how they derived any arbitrary or magic numbers. This would bring more trust and transparency to these files without having to eliminate them.



  • In simple terms, it’s like a VM for an application. You set it up with the right dependencies and your application will “just work” on it, without having to deal with other applications existing alongside it.

    What makes it better than a VM is that it is much faster. It interfaces with kernel features that help isolate the processes and files from the rest of the system. It is not virtualization, rather it is namespacing.

    Docker also provides a bunch of tools that help with creating this environment automatically and allowing for some escaping into the host, such as binding ports and sharing data with the host’s file system.

    Once this environment is created, it can be shared with uses as a single downloadable bundle, called an image. This makes it really easy to download and run an application without having to prepare your system with the right dependencies and files.

    Nothing is free though, and the cost here is more disk space and some performance overhead, although it is close to native speed.