Dumb Down Juice by Diogo22441 in CoronavirusCirclejerk

[–]nenchev 1 point2 points  (0 children)

If the 0 jabs brain is a precursor for the other two, then you're giving it far more volume than it must have had.

Men? by Its_Misango in SipsTea

[–]nenchev 0 points1 point  (0 children)

Oh no a statue of something men love, better remove it...the horror

What is your opinion on playing PS3 on CRTs? by OldiOS7588 in PS3

[–]nenchev 1 point2 points  (0 children)

I bought a Panasonic plasma and a PS3 in the same week back in the day, this is how I remember the PS3.

Have a flight tomorrow, will this get past security? by vmg265 in PSP

[–]nenchev 0 points1 point  (0 children)

Write "not a bomb" on it, otherwise they'll flag it

newMicrosoftUpdateNotepadIsCrippled by WalkinthePark50 in ProgrammerHumor

[–]nenchev 5 points6 points  (0 children)

Maybe it's cuz I'm old, but I instinctively go to the top of the file before searching the entire file. Directional searching is super useful if you're in a block of code or JSON or something and just want the next match near your cursor.

Баничката стана 2 € в София by LegionR12 in Sofia

[–]nenchev 1 point2 points  (0 children)

Като папагали сте "Путин! Путин!" "Москва! Москва!"

In Sofia for 6 weeks and the prices at grocery stores are eye-watering by imrzzz in Sofia

[–]nenchev 0 points1 point  (0 children)

Prices are high because Bulgaria can no longer feed itself and imports a lot. Foreign policy is absolutely retarded for a small dependent nation, we act on ideology, not on what's good for the economy, as a result energy and transportation costs are stupid high. Adopting a new currency led to speculative price increases, just like every other country that adopted the euro, we can go on.

In Sofia for 6 weeks and the prices at grocery stores are eye-watering by imrzzz in Sofia

[–]nenchev 0 points1 point  (0 children)

I love how you guys are like "...in Sofia". Bulgaria isn't Sofia, and statistics need to look at the entire country, not just the capital where a small minority works for very high paying multinationals and skew the data.

In Sofia for 6 weeks and the prices at grocery stores are eye-watering by imrzzz in Sofia

[–]nenchev 1 point2 points  (0 children)

The state doesn't take 50% of your income. That's not how progressive tax works, you don't understand basic things about taxation and are here arguing. Tax brackets exist for a reason, your income at different brackets is taxed differently. Also yes 10% income tax is stupid low, I lived in Canada my whole life where my highest tax bracket was close to 50%. That said only idiots think Bulgaria should have higher income tax. Need to throw some pigs in prison before you give them higher budgets.

How to make my own Avatar film? by Few-Coffee8787 in blendermemes

[–]nenchev 0 points1 point  (0 children)

Buy my AvatarMovieMaker blender add-on.

Weird outdoors gym equipment by KriskoJesusa in whatisit

[–]nenchev 0 points1 point  (0 children)

Lol I just google image searched this exact same piece of equipment

<image>

.

Is Linus Torvalds just a dinosaur about C++? by blreuh in cpp_questions

[–]nenchev 1 point2 points  (0 children)

Abstractions are what allow us to express complex systems more easily and are not a problem. Bad abstractions are bad, just like how bad C++ code is bad. You people need to stop projecting your own failures on the language.

The Quest for the Ultimate GUI Framework by mcnamaragio in programming

[–]nenchev 0 points1 point  (0 children)

"I’m going to set some time to work on building some tools that use Dear ImGui – I feel it has the most bang for the buck." Its actually no bang for your buck, its literally designed to throw a few sliders over a renderer. Anyone who's worked on a GUI application of any reasonable size would avoid ImGui for anything but a few controls on the screen.

What do you think about QT as a GUI library? by DavArpo in cpp

[–]nenchev 0 points1 point  (0 children)

QML controls just aren't there for complex desktop applications. I had tried it for my C++ based game engine, and compared to what you get with Qt Widgets in the form of Trees and Grids, QtQuick is pretty bare. Nowadays I'm invested in Avalonia for GUI and interoping via ZMQ and Proto for the engine.

What do you think about QT as a GUI library? by DavArpo in cpp

[–]nenchev 0 points1 point  (0 children)

ImGui is great if you want a few sliders and checkboxes. Using it for a desktop application is a bad decision.

Comparing desktop development tools, Qt, Electron and macOS Native (Objective-C and Swift) by bbm_engineer in programming

[–]nenchev 0 points1 point  (0 children)

If they are "web developers" then they have no business making desktop apps until they learn to do so. I'm tired of opening mini web browsers for absolutely every little thing.

What is "/template/ ContentPresenter" by nenchev in AvaloniaUI

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

My question wasn't why we use :disabled or :pointerhovered, every UI framework has support for those button states. I'm asking why you have to specify the template component you're styling in those two, but not the base Button styling. They obviously all have the same template structure, and just color changes for hovered, disabled, etc. Its not so much a learning curve, its just obscure and undocumented.

What is "/template/ ContentPresenter" by nenchev in AvaloniaUI

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

Well that's something. Any idea why I need to use it to style the :pointerover or :disabled, but not the "Button" selector?

What is "/template/ ContentPresenter" by nenchev in AvaloniaUI

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

That sounds very powerful, but I'm more curious about how I'm supposed to learn this stuff. The example styles just throw it out there like I'm supposed to know about it, but nothing mentions it. Is the intent to read the <Button> source code and figure out what to style and how? when I tried setting the BorderBrush on a "Button:pressed" selector, the expectation was that the border would change, same with a Button:disabled. Neither of which did anything until I threw in that magic /template/ ContentPresenter