• 36 Posts
  • 1.35K Comments
Joined 2 years ago
cake
Cake day: March 19th, 2024

help-circle

  • A lot of South Asian food is naturally vegetarian or vegan. I make chana masala and lentil dahl a fair amount. Lots of flavour from the spices—there’s no need for meat.

    I also like scrambled tofu, which you can season any way you like. I tend to put curry seasoning on it.

    Avocado toast too, but that’s infrequent because avocados are expensive.

    If you’ve never made creamy harissa butter beans I highly recommend it. One of the nicest vegan recipes I’ve made. If you’re not keen on spice, make sure to get mild harissa, as the spicy harissa gets quite spicy, speaking as someone who enjoys spice.

    Generally I like any tofu dish. Tofu is often meant to accompany meats (traditionally at least) but I find that a lot of tofu dishes that traditionally have meat, work very well without the meat. My go-to lazy lunch is boiling some water with stock cubes and chucking in noodles, medium-firm tofu, a vegetable of my choice, and chilli crisp.


  • Plenty of people use git hosting to host non-code, like documentation, books written in markdown/LaTeX, etc. I personally use git to maintain a few personal wikis.

    Different git forges will have different rules about what content they allow. GitHub definitely allows non-code. I’ve seen Codeberg repos be used for non-code too. Codeberg’s only requirement is that you only host free (as in freedom) content, so I suppose for non-code that means using an appropriate CC licence for example. I can’t imagine any of the popular git hosting sites taking issue with someone hosting their book, unless you’re hosting, like, the whole of Wikipedia or something.


  • Statistically it’s rare for an adult to be 120cm tall, therefore there exist no adults who are 120cm tall. Statistically it’s rare for someone to be in government, therefore there are no politicians in the world. Statistically it’s rare to be an astronaut, therefore astronauts don’t exist.

    And all the examples I mentioned are far more rare than simply self-taught people working in the field they taught themselves. Majority of the friends I have in programming jobs are self-taught with no formal education beyond high school (if that). It’s of course highly dependent on field, and the market is saturated enough with CS graduates now that getting a programming job without a degree is going to be pretty hard, but my point is that it depends on the labour market. Some labour markets don’t care about a piece of paper declaring you went to school. There’s other ways to fill your CV and prove you have a skill.





  • What happens if someone refuses to do any chores in a shared household? There are already plenty of situations where people do work for free because it’s in your own interests. In groups like households people take turns taking out the bins and cleaning. In a communist society people will take turns doing the necessary work. If someone refuses, maybe something is wrong in their life, and they need help. At the end of the day, there’s no economic coercion in a classless society. If one in a million people don’t work for no understandable reason (disability, depression, personal issues, etc) then let them. What else are you going to do? Work or starve? Incarceration? The point of the universal emancipation that communism brings is to do away with those evils.


  • Donations.

    I don’t find subscriptions too offensive, however any kind of restriction of the flow of information (e.g. by paywalling it) implies its enforcement. What are you going to do about people bypassing the paywall? Even if you only responded by patching whatever allowed them to bypass the paywall, you’re either going to have to let up eventually, or get into a protracted cat-and-mouse game with paywall bypassers. And you don’t want to end up on the side of the people who want to gatekeep information.

    So that leaves us with the possibility of having a subscription that’s not stringently enforced—in which case it is just a recurring donation anyway.

    Of course, this discussion is limited to the scope of “what would a news outlet do without changing anything about society”—but the decent news outlets do also try to change things about society. Within capitalism, things like UBI would make it much easier for free journalism to exist. And of course this problem goes away entirely with capitalism.


  • Yeah tbf I only use Fedora for VMs and to recommend to non-technical people so I’m not the best judge of its quality. But my experiences of it have been smooth + no complaints from the non-technical folks I’ve recommended Fedora to who have gone through and installed it.

    The other OSes that come to mind when I think of well-crafted OSes are Alpine Linux, OpenBSD, and maybe Void Linux, but here “well-crafted” does not mean they appeal to the same audience or fill the same niche as Fedora haha. I guess I can see how Debian is doing these days for next time a non-technical person asks me for a Linux distro rec.




  • communism@lemmy.mltoAsklemmy@lemmy.mlWhy is all of Lemmy politics?
    link
    fedilink
    arrow-up
    15
    arrow-down
    1
    ·
    11 days ago

    Depends on what you define as “politics” but aside from “everything is politics”, my Lemmy feed is mostly tech stuff. Just subscribe to communities that fit your interests. That being said, many interests will be under-represented on Lemmy as I think the user base skews either technical or political or both.


  • I don’t agree. LLMs are by design probabilistic. Chainsaws aren’t designed to be probabilistic, and any functionality that is probabilistic (aside from philosophical questions about what it is possible to be certain about, YKWIM) is aimed to be minimised. You’re supposed to be able to give the same model the same prompt twice and get two different answers. You’re not meant to be able to use a chainsaw the same way on the same object and have it cut significantly differently. You’re inherently leaving much more to chance by using LLMs to generate code, and creating more work for yourself as you have to review LLM code, which is generally lower quality than human-written code.


  • Not comparable at all. Power tools work deterministically. A powered chainsaw is not going to have a 0.1% chance of chopping a completely different tree on the other side of the forest. Of course accidents happen; your hand can slip. But a proper comparison would be if you got a computer to look at a large number of powered chainsaws and then generate its own in CAD based on what it’s seen, and then you use that generated power tool. Which, for something as potentially dangerous as a powered chainsaw, you most likely wouldn’t want to do, and would want to have careful human oversight over every part of design.




  • Notesnook notebook with whatever info I need to be able to administrate the system. e.g. what different ports are used for and why the firewall policies are what they are, sometimes write-ups after a troubleshooting session, etc.

    The Notesnook instance is self-hosted too, but if the server goes down, the notebook will still be available locally.



  • The relevance for me personally is whether or not they can be useful for programming, and if they’re accessible to run locally. I’m not interested in feeding my data to a datacentre. My AMD GPU also doesn’t support ROCm so LLMs run slow as fuck for me. So, generally, I avoid them.

    LLMs consistently produce lower quality, less correct, and less secure code than humans. However, they do seem to be getting better. I might be open to using them to generate unit tests if only they would run faster on my PC. I tried deepseek, llama3.1, and codellama; all take like an hour+ to answer a programming question given that they are just using my CPU, as my GPU doesn’t support ROCm. So really not feasible for anything.

    Depending on what you count as AI, I think some of the long-existing predictive ML like autosuggestions based on learning your input patterns are fine and helpful. And maybe if I get a supported GPU I won’t mind using local LLMs for some things. But generally I’m not dying to use them. I can do things myself.