HackerTrans
TopNewTrendsCommentsPastAskShowJobs

premysl

no profile record

comments

premysl
·السنة الماضية·discuss
Talk to R1 for a while, and you'll notice that it's both censored and aligned.

I think the most free-minded large models might be the Groks, but just slightly, as they have different biases. In sum, there's strength in diversity.
premysl
·قبل سنتين·discuss
The reliance on a phone seems terrible, I would never install a banking application unless sufficiently threatened. I prefer our (Czech) more-or-less direct bank transfers, for which I don't need to leave my web browser.
premysl
·قبل سنتين·discuss
It should also be noted that in general, Xlib can do a lot more than XCB with a /lot/ less effort and bugs, and has an actual documentation, tutorials, books.

Xlib certainly is quirky, in particular around error handling, though.
premysl
·قبل 3 سنوات·discuss
People just expect things to be integrated. Even Wi-Fi is, although it's probably typically an M.2 card. I have a <2000 computer that had both integrated audio and video, and it's kind-of become a norm.

Integrated sound cards are way more susceptive to interference, though, and the quality suffers a bit. They're merely good enough.

Also, people generally seem to use USB sound cards, as it removes even more room for interference (though my ASUS Xonar Essence STX sounds great already, unlike the integrated solution that transfers power rail and other noise).
premysl
·قبل 3 سنوات·discuss
Few, if any, other mice are touchpads. The Magic Mouse is more of a touchpad that happens to be capable of being used as a mouse.
premysl
·قبل 3 سنوات·discuss
DLUs solve the wrong problem.

You actually want autolayout, so that different languages only need translations and otherwise don't need almost any extra work.

Linux has, I think, proved, that fixed window sizes are needless.
premysl
·قبل 3 سنوات·discuss
GObject signals and properties are very powerful. The layouting model is sane. In general, the toolkit is very regular.

It's hard to just give you a generic answer. I can only really compare to Win32, Cocoa, and some parts of the web stack.
premysl
·قبل 3 سنوات·discuss
Of course. It has almost no effect at all, as far as I can say. These are also important:

  defaults write com.apple.dock autohide-time-modifier -float 0.1
  defaults write -g NSUseAnimatedFocusRing -bool NO
  defaults write com.apple.dock springboard-show-duration -float 0
  defaults write com.apple.dock springboard-hide-duration -float 0
  defaults write com.apple.dock springboard-page-duration -float 0.1
premysl
·قبل 3 سنوات·discuss
> These damn animations man... they're so fluid and springy and easy to use in SwiftUI, that it lures you into adding them everywhere.

The constant animations are what makes me dread and despise working with Apple software. Each time something moves for no good reason whatsoever, I die inside a little. Every few seconds.

> [...] the same animation was driving me nuts because I was switching spaces so often, that the animation was slowing me down

Exactly. Props to the author for making them possible to turn off. The operating system at large still has _tons_ of them that you can't get rid of, but it's the thought that counts.

> Reacting to keyboard events is still something I do outside of SwiftUI

SwiftUI is a nice idea in principle, what with being reactive, but I found that I cannot achieve anything worthwhile without piercing down into the lower layer of AppKit. And then I asked myself why do this clownery in the first place.

Ultimately, trying to learn Apple frameworks has made me love GTK+, because it's so beautiful and elegant in comparison (disregarding that it's currently deeply broken on macOS).