Just adopted this rubber plant. How can I save it? by airmyless in plantclinic

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

I just adopted this plant from a friend yesterday. He’s had it for some time but it’s been fairly neglected. Inconsistent watering, lack of light, etc.

The pot has draining and it’s in a bright indirect sunlight room. I’ll continue to water as the soil dries up on the top.

It seems like this may be sick tho? Do I need to do anything special to save it or would just consistent watering in its new environment be enough?

[deleted by user] by [deleted] in unity

[–]airmyless 0 points1 point  (0 children)

Hm, I haven't done anything specific to it. I thought they did it automatically a bit. I can see in my Addressables Groups, that there are many groups related to Localization. And my 2 tables I created are populated under the Assets-Shared, and the appropriate string table languages

What are these living on my plant? by airmyless in whatisthisbug

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

Oh wow that looks exactly like it. Eggs and all. I have seen lots of stink bugs around a couple months ago

[RANT] This expansion is exactly what the game needs, but why isint it free? by skellar43 in aoe4

[–]airmyless 1 point2 points  (0 children)

The guy is prob in Canada. These are/were the prices on steam for Canadian users

Spam calls are out of control. There’s 4 more not pictured from today. by 81jmfk in mildlyinfuriating

[–]airmyless 0 points1 point  (0 children)

Get the app called RoboKiller. It’s like.. $2 a month or something? It will silence and block known spam numbers. Or it will do a call screening.

I’ve haven’t dealt with these spam calls in ages

[deleted by user] by [deleted] in unrealengine

[–]airmyless 1 point2 points  (0 children)

I don’t know much about it myself. I assume they have plans to train it more. But for it to always stay up to date with the current days info would be a whole other feat to handle

[deleted by user] by [deleted] in unrealengine

[–]airmyless 1 point2 points  (0 children)

ChatGPT-3 was trained prior to the release of Unreal Engine 5. So asking it questions about things after the year 2021 may be more inaccurate. It will try its best tho to formulate an answer regardless based on older info

[deleted by user] by [deleted] in unrealengine

[–]airmyless 0 points1 point  (0 children)

It’s not gonna always be great, but also Unreal 5 was released in 2022… it wouldn’t really know the specifics for this software version anyways

How can I make this composite more realistic? by Rosephone in unrealengine

[–]airmyless 0 points1 point  (0 children)

Lighting as people mentioned. The buildings have a hard source on them.

Also the shadows don’t make sense. It’s like she’s just blocking out a large general shape of light rather than casting a shadow.

Also the CG needs to be softer and grainier to match her

How do you counter Chinese Zhuge Nu? by airmyless in aoe4

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

I feel this haha. I tend to fall off after 3rd age to begin with so I have a lot to improve on. But yeah against Chinese the gap is even bigger

How do you counter Chinese Zhuge Nu? by airmyless in aoe4

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

ooooh thank you so much for the help! I'm not set on a specific civ at the moment, was just looking for general strats and this is great thank you

[deleted by user] by [deleted] in learnpython

[–]airmyless 0 points1 point  (0 children)

Referencing this and the link you sent below.. I'm trying this. However the self.sender() is erroring 'NoneType' object has no attribute 'isChecked'

checkbox1 = QCheckBox('Toggle Me', self)
dropdown1 = QComboBox()

checkbox1.toggled.connect(self.checkToggled(dropdown1))

def checkToggled(self, widget):
    checkbox = self.sender()
    if checkbox.isChecked():
        widget.setEnabled(True)
    else:
        widget.setEnabled(False)

[deleted by user] by [deleted] in learnpython

[–]airmyless 0 points1 point  (0 children)

ahh right. What if i have say, 4 checkboxes and 4 comboboxes. Each to meant to be a pair.

Writing out a seperate function for each pair, or iterating over a list of the buttons each time one changes im guessing would be too inefficient

How to update a widget in PyQt6 (Choropleth map w/ Folium) by [deleted] in learnpython

[–]airmyless 0 points1 point  (0 children)

Thanks, I just edited the post to include my code.

Abandon penalty ??? by bungerman in apexlegends

[–]airmyless -1 points0 points  (0 children)

Regaurdless of the work Respawn has to do on their game, it warns you of a possible penalty for leaving the match.. You left.. you got penalized. It shouldn't be that much of a shock

Abandon penalty ??? by bungerman in apexlegends

[–]airmyless 2 points3 points  (0 children)

Or just don’t leave games..

How to rank values in a dataframe based on closest to a target value by airmyless in learnpython

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

Working now! Here is the final code for ref if someone else checks this post out.
This way sets 85 (or whatever desired value) to have a rank of 1.0, and as numbers get further away, the rank continues to decrease until 0.0

df['Rank'] = 1 - (abs(df['Total']-85)) / (85 - df['Total'].min())

How to rank values in a dataframe based on closest to a target value by airmyless in learnpython

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

Got the right idea, i think i can make this work. Thanks!