[–] 0 points 2 weeks ago* (last edited 2 weeks ago)

Hey as a European I happily use your money and willing to pay only a cheap claude subscription 😊

But if you keep this industry and find a way to operate it on low cost, then the US wins big in the long-term.

  • source
  • parent
  • context
  • [–] 1 point 3 weeks ago* (last edited 3 weeks ago)

    We are heading into a direction where drinking too much gets more and more accepted. My grandmother has never drunk alcohol. My grandfather has drunk only little. My father and mother had been drunk sometimes. And I was drinking almost every week during university. Please tell me why we kill ourselves, and what can we do about it if not with bans. I would support no alcohol and no cigarettes. I want to believe that we can be happy without them.

    But banning a socially accepted substance, and banning a socially not accepted substance is different. It needs to be different, because black market would flourish if they are fine with it. Now imagine you allow shrooms, it gets socially accepted and now we have another problem that we cannot deal with.

    It's enough to see misbehaving drunk people in subways, it's already too much.

  • source
  • parent
  • context
  • [–] 1 point 3 weeks ago

    Left and right wing here probably means different than for you. Now we don't have any socialist or communist parties, the left is only from social democrats, and they won recently. They support gay people and stuff. I also voted for them. In the US, people are very religious. In contrast, under socialism, it was forbidden here, so we are not that used to that. So we are not that conservatives. There are also many government owned companies working outside of free market, and have free healthcare and stuff.

    So religion, capitalism, what else do you consider right wing?

  • source
  • parent
  • context
  • [+] -7 points 3 weeks ago

    Wow you got heated. Calm down man. You don't know me. I'm not even in the US. But I'm starting to understand why you hate this opinion that much. It's because your enemy tribe used to say this probably. Luckily, I don't get US propaganda so I don't need that much drugs.

  • source
  • parent
  • context
  • [+] -8 points 3 weeks ago (1 child)

    There are some social crises in people life where policing themselves gets lower focus e.g. on a break up. I think the easy access is the problem. And to fix it with opening it up even more is not a good idea.

    I would give people money if they can tell who is a dealer. So the market itself would fix the problem.

  • source
  • parent
  • context
  • [+] -16 points 3 weeks ago (10 children)

    If you're interested I'm 29 and born in a hungarian village where nobody was religious. I ended up on lemmy because I am a developer and free software supporter. I want a nice place to live in, and psychedelics does not fit into that picture.

    Maybe just accept that not everybody has the same opinion. Let me express that I think psychedelics should be banned.

    I have to correct myself, it's not a country, it's a city Portland. https://youtu.be/2GU3TGSWPsw?is=5lJ-PJ44vzzfmCfM

  • source
  • parent
  • context
  •  

    Correct me if I'm wrong.

    Afaik, liberalism ambiguously meant both advocacy for human rights and an economic system. To avoid this confusion, the economic system has been moved out as libertarianism.

    For example, accessibility improvements of government buildings is a liberal movement.

    Minimizing the control over capitalism is a libertarian movement.

    There's also so called "liberals" which is not more than a hate speech. We are not "conservatives" or "liberals" in every topic.

     

    Hey, I'm not a fan of advertising libraries, but otherwise, nobody will know them. I think this package is really spot on and solves many issues with current web technologies.

    I'd like to continue this project. If you found it interesting please give some feedback.

    github.com/fxdave/cuple
    intro: The Missing Type-Safety for Full-Stack

    submitted 2 years ago by to c/rust@lemmy.ml
     

    I have a plugin trait that includes some heavy types that would be almost impossible to wrap into a single API. It looks like this:

    pub struct PluginContext<'a> {
        pub query: &'a mut String,
        pub gl_window: &'a GlutinWindowContext,
        flow: PluginFlowControl,
        pub egui_ctx: &'a Context,
        disable_cursor: bool,
        error: Option<String>,
    }
    pub trait Plugin {
        fn configure(&mut self, builder: ConfigBuilder) -> Result<ConfigBuilder, ConfigError> {
            Ok(builder)
        }
        fn search(&mut self, ui: &mut Ui, ctx: &mut PluginContext<'_>);
        fn before_search(&mut self, _ctx: &mut PluginContext<'_>) {}
    }
    

    Here is what I considered:

    1. Keeping all plugins in-repo. This is what I do now, however I'd like to make a plugin that would just pollute the repository. So I need another option that would keep the plugins' freedom as it is right now, but with the possibility to move the plugin out to a separate repository.
    2. I tried to look into dynamic loading, and since rust doesn't have a stable ABI, I'm okay with restricting the rust versions for the plugin ecosystem. However, I don't think it's possible to compile this complex API into a dynamic lib and load it safely.
    3. I'm also ok with recompiling the app every time I need a new plugin, but I would like to load these plugins automatically, so I don't want to change the code every time I need a new plugin. For example, I imagine loading all plugins from a folder. Unfortunately, I didn't find an easy solution for this neither. I think I will write a build macro that checks the ~/.config/myapp/plugins and include all of them into the repo.

    Do you have any better ideas, suggestions? Thanks in advance.

    (For context, this the app I'm writing about: https://github.com/fxdave/vonal-rust)

     

    Hey everyone,

    Just wanted to share my recent experience with gaming on my laptop. While playing CS:GO was manageable, CS2 was a different story. My laptop kept hitting thermal limits, causing frustrating performance drops. So, I decided to do it myself and repaste it.

    I wrote a simple script to monitor my temperatures and frequencies: thermalog script.

    The results speak for themselves: thermalog results.

    I wasn't even near to thermal limit even when I played in 2K instead of FHD.

    I used Arctic MX-6. (I bought liquid metal also as a backup plan, but luckily I don't need it). I'm more than happy with the results.

    My laptop is four years old, I highly recommend giving it a go if you're facing similar thermal issues.

    Happy gaming!

    view more: next ›