starshipwinepineapple

joined 11 months ago
[–] [email protected] 4 points 2 months ago

Well just speaking for myself, i use git without a forge for personal stuff because i was already familiar with git and it fits my needs. No need to learn another version control system for some basic projects i throw together

[–] [email protected] 10 points 2 months ago (9 children)

Did you read the article? The author shares their perspective.

For me, Git is quite powerful on its own with version control, diffs, branches, merging, etc. Forges just add a UI for some of these things, and add an issue tracker/ discussion/etc. Forges also add a more modem ui for repo access though git does have its own webserver you can use. I use git without a forge for a number of my personal projects that I'm not sharing with others or not yet sharing

[–] [email protected] 4 points 2 months ago

You would think this would be the first test case

[–] [email protected] 1 points 2 months ago (2 children)

Even if it was github, they have mandatory 2fa now which would help. Still some risks for people who reuse passwords on other services or if their 2fa got compromised (sim swaps), etc but wouldn't be full blown catastrophic

[–] [email protected] 1 points 3 months ago* (last edited 3 months ago)

Depends on the programs, but likely statistics if it is a halfway decent program.

  • Statistics is harder to learn on your own than the CS needed for data science. So it's better to go statistics and then you can learn the CS parts on your own before doing a data science program.
  • There's generally a bigger need for statistical foundation than CS foundation in data science, or at least with the angle for any data science needed for data journalism.
[–] [email protected] 1 points 3 months ago* (last edited 3 months ago)

I think you need a polkit authentication agent installed and running to prompt you for your password.

Alternatively you can sudo codium path/to/file (assuming you have aliased codium to use your flatpak)

[–] [email protected] 1 points 3 months ago

I think the biggest thing I've seen are the privacy concerns over them getting such a large % of the internet's https traffic that it's essentially a man-in-the-middle (which includes your tunnel traffic).

[–] [email protected] 3 points 3 months ago

Very cool. And the snippet execution is really neat.

[–] [email protected] 5 points 4 months ago (1 children)

Worth mentioning for those who care- radicle is funded by radworks, basically a crypto organization. (Source: their faq)

[–] [email protected] 2 points 4 months ago* (last edited 4 months ago) (2 children)

It sounds like the error you're seeing is from attempting to restore the root subvol (@) while the booted into the system

To fix you'll want to:

  1. boot from live usb (arch or cacyos).
  2. mount btrfs partition and access your snapshots.
  3. Restore root subvol from live environment

If you are still having issues you may need to chroot into the root partition and do an update to ensure your system images match what your bootloader is expecting.

[–] [email protected] 4 points 4 months ago* (last edited 4 months ago) (1 children)

This is something that doesn't really need to be self hosted unless you're wanting the experience. You just need:

  1. Static website builder. I use hugo but there's a few others like jekyll, astro
  2. Use a git forge (github, gitlab, codeberg).
  3. Use your forges Pages feature, there's also cloudflare pages. Stay away from netlify imo. Each of these you can set up to use your own domain

So for my website i just write new content, push to my forge, and then a pipeline builds and releases the update on my website.

Where self hosting comes into play is that it could make some things with static websites easier, like some comment systems, contact forms, etc. But you can still do all of this without self hosting. Comments can be handled through git issues (utteranc.es) and for a contact form i use 'hero tofu' free tier. In the end i don't have to worry about opening access to my ports and can still have a static website with a contact form. All for free outside of cost of domain.

view more: ‹ prev next ›