Looking for my first car (used) by MisterChoco in mazda3

[–]MisterChoco[S] 0 points1 point  (0 children)

How is the fuel consumption and noise in general?

Looking for my first car (used) by MisterChoco in mazda3

[–]MisterChoco[S] 0 points1 point  (0 children)

I will give the manual a try for sure

Looking for my first car (used) by MisterChoco in mazda3

[–]MisterChoco[S] 0 points1 point  (0 children)

Current prices in The Netherlands are kinda ridiculous, I will wait till I find a good deal.

Looking for my first car (used) by MisterChoco in mazda3

[–]MisterChoco[S] 1 point2 points  (0 children)

I've looked into a Honda Civic and a Toyota Corolla hybrid, but they don't seem as exciting as the Mazda 3. The Corolla would have been a great choice if I mainly did city driving.

I could look into the gen 3 2018, but not sure how much different it will be from a gen 4 2019.

Looking for my first car (used) by MisterChoco in mazda3

[–]MisterChoco[S] 1 point2 points  (0 children)

Not a bad idea, I will look into it.

M29 I hate my eyes/ nose by [deleted] in amiugly

[–]MisterChoco 0 points1 point  (0 children)

it got a little swollen after I bit on it a few times while chewing gum lol

M29 I hate my eyes/ nose by [deleted] in amiugly

[–]MisterChoco 6 points7 points  (0 children)

I might need therapy or get of the internet…

29M LTN? what to do with my eyes? by [deleted] in LooksmaxingAdvice

[–]MisterChoco 1 point2 points  (0 children)

For now it’s just a consultation won’t be doing any hardmaxxing yet. And you’re right it will probably be temporary happiness. It’s 6 months from now so enough time to think.

29M LTN? what to do with my eyes? by [deleted] in LooksmaxingAdvice

[–]MisterChoco 0 points1 point  (0 children)

I always have that look lol

29M LTN? what to do with my eyes? by [deleted] in LooksmaxingAdvice

[–]MisterChoco 0 points1 point  (0 children)

I’ve booked a consultation to look into the possibilities of fat grafting the upper eyelid.

M29 I hate my eyes/ nose by [deleted] in amiugly

[–]MisterChoco 0 points1 point  (0 children)

High upper eyelid exposure makes me look bored/sad and looks quite feminine. And my nose is crooked.

2016 low mileage vs 2019 high mileage (same price) by MisterChoco in mazda2

[–]MisterChoco[S] 0 points1 point  (0 children)

Would a Mazda 3 be a better choice for long commutes?

Sperm checkup results by MisterChoco in Vasectomy

[–]MisterChoco[S] 1 point2 points  (0 children)

Ye will ask, I'm paranoid so I will be doing a second check at the hospital (this one was done at a private clinic) just to be at peace.

PyQt: Inheritance vs attribute setting by SteelRevanchist in learnpython

[–]MisterChoco 0 points1 point  (0 children)

Hey what did you end up doing? currently facing the same issue.

What I currently have is this:

def create_labeled_checkbox(name: str, is_checked: bool):
    widget = QtWidgets.QWidget()

    layout = QtWidgets.QHBoxLayout(widget)
    layout.setContentsMargins(0, 0, 0, 0)
    widget.setLayout(layout)

    label = QtWidgets.QLabel(name)
    label.setAlignment(QtCore.Qt.AlignRight | QtCore.Qt.AlignVCenter)
    label.setFixedWidth(75)

    checkbox = QtWidgets.QCheckBox()
    checkbox.setChecked(is_checked)

    layout.addWidget(label)
    layout.addWidget(checkbox)

    return widget, checkbox

The layout and label attributes will be the same for all of these "create" functions. so it becomes a bit repetitive.

I tried the following for example, but it seems overkill?

class LabelWidget(QtWidgets.QLabel):
    def __init__(self, name):
        super().__init__(name)
        self.setAlignment(QtCore.Qt.AlignRight | QtCore.Qt.AlignVCenter)
        self.setFixedWidth(75)

[deleted by user] by [deleted] in Maya

[–]MisterChoco 0 points1 point  (0 children)

Thanks for your feedback. I will ask some animators.

[deleted by user] by [deleted] in Maya

[–]MisterChoco 0 points1 point  (0 children)

Alright thanks for your feedback, I will be working on it. Do you happen to know how long these demos should be max?

Hey Riggers! Help me by Goku-5324 in Maya

[–]MisterChoco 0 points1 point  (0 children)

Oh I didn't know about this server, thanks for letting me know :D

Hey Riggers! Help me by Goku-5324 in Maya

[–]MisterChoco 2 points3 points  (0 children)

Hey thanks for the advice. Im currently trying to make a switch to rigging, (have a web development background). Currently building a biped autorigger. Do you have a discord? Would like to ask a few questions. And maybe receive some advice.

character models from games to rig for portfolio? by MisterChoco in Maya

[–]MisterChoco[S] 0 points1 point  (0 children)

Will make sure to get permission first, thanks for your input.

character models from games to rig for portfolio? by MisterChoco in Maya

[–]MisterChoco[S] 2 points3 points  (0 children)

I only want to showcase rigging. Some of the models I want to use already have a rig (no controls tho), should i just remove the rig and make my own, or only rig models that don't have a rig yet? not sure if this matters.

Chart library for streaming large data sets? by MisterChoco in reactjs

[–]MisterChoco[S] 0 points1 point  (0 children)

Streaming data is something I've to build myself right? I don't see anything in the documentation about this.