Hammerheart

joined 1 year ago
[–] Hammerheart@programming.dev 2 points 2 months ago

Duckduckgo has a no javascript mode.

[–] Hammerheart@programming.dev 2 points 2 months ago

I have the tab bar set to expand when I hover over it. But when I split tabs to see two pages at once, I don't seem able to make them take up different proportions of the screen. The split tabs feature was what made me want to give it a spin, so I hope it is possible.

[–] Hammerheart@programming.dev 2 points 2 months ago

Forge joe.

like, "joe sure is tough, he's built like a forge"

[–] Hammerheart@programming.dev 2 points 2 months ago (2 children)

Is it possible to resize tab panes?

[–] Hammerheart@programming.dev 4 points 2 months ago (1 children)

Reminds me of total annihilation, which is a very good thing.

[–] Hammerheart@programming.dev 6 points 2 months ago

Thats actually not a terrible idea.

[–] Hammerheart@programming.dev 4 points 2 months ago

If anything, their tech hours got reduced.

[–] Hammerheart@programming.dev 2 points 3 months ago

You basically get to choose which modifier key you want to use

[–] Hammerheart@programming.dev 2 points 3 months ago

Ive been daily driving debian since dec 25, 2023. I dont regret it at all. I had some experience using ubuntu in like 2007, but other than that had been using windows exclusively.

[–] Hammerheart@programming.dev 6 points 3 months ago* (last edited 3 months ago) (1 children)

Damn, I wanted to mention sqlite.

[–] Hammerheart@programming.dev 5 points 3 months ago (5 children)

how do you avoid using else, and why?

[–] Hammerheart@programming.dev 3 points 3 months ago (1 children)

It is fucking brutal

Your "Typing-Speed-Test" repo? Zero stars—sounds about right. And those "bots" you’ve created? They scream “desperation” louder than a midnight Tinder swipe. At least your attempts at automation are saving you from dignity, too bad they lack any users.

Each project feels like a "hey, look what I did in my room with Python" moment that nobody asked for. Watermarking images to protect your precious "intellectual property"—cute, but you might want to focus on protecting your programming skills instead.
 

I am working on user authentication in Flask. I have my User class, which inherits from db.Model (SQLAlchemy) and UserMixins (flask-login):

class User(db.Model, UserMixin):
    id = db.Column(db.Integer, primary_key=True)
    email = db.Column(db.String(100), unique=True)
    password = db.Column(db.String(100))
    name = db.Column(db.String(1000))

and I create a new User object during registration:

        new_user = User(
            name=request.form["name"],
            password=generate_password_hash(password=request.form.get("password"),
                                            salt_length=8,
                                            method="pbkdf2:sha256"),
            email=request.form["email"])

Since I inherited from UserMixins, I started to get an "unexpected arguments" warning from pycharm when I create new_user. can someone explain to me why that is? If I don't inherit from UserMixins, the warning goes away.

 

So, it used to work just fine. Then jerboa became basically unusable due to some bug. That was a few weeks ago. I saw an update was available, so I thought to give it another try. It's much more stable after the update, and my lemmy.one account works just fine. But when I try to log in with this account on jerboa, I get an incorrect login error. I set the instance to "programming.dev" and I know I used the right credentials because my password manager filled them in, just like it does in the browser.

Any ideas on a cause or fix? It might be a jerboa issue but I don't get why it seems to only impact this instance.

2
submitted 1 year ago* (last edited 1 year ago) by Hammerheart@programming.dev to c/c_lang@programming.dev
 

I was looking over the first kata i did on codewars, and I thought it would be fun to try and solve it in C. The object was to return a string based on a boolean input. it took a lot of trial and error, googling, chat gippity, but I eventually got it to work. I am still focused on learning python, but I've had it in my mind that I should branch out once I've reached a competence plateau in python. I'm nowhere near that plateau yet, but this seemed simple enough to warrant the necessary investment in time to accomplish it.

// C:
#include <stdbool.h>
// FIRST EVER C PROGRAM
const char *bool_to_word (bool value){
// you can return a static/global string or a string literal
  if (value == 1){
  return "Yes";
    }
  else{
    return "No";
  }
}

I realize this is pretty trivial, but still, it's a milestone for me and I wanted to do my part to get the ball rolling on this community.

view more: ‹ prev next ›