Hacker News new | past | comments | ask | show | jobs | submit | ilikejam's comments login

I've said it before, and I'll never stop saying it.

Zones were awful.

Solaris had all of these great ideas, but the OS was an absolute pain in the ass to admin. And I say that from both sides of the SWAN firewall.


My only Solaris experience is using SmartOS. I find Zones there to be fairly easy to deal with. Is this just because SmartOS is papering-over the awfulness?


All I want (for christmas) is an 'Always on top' opton for windows on macos.

I'd pay real actual money, as I suspect would many others.


Piqued my interest so I just went looking, this relatively recent reddit thread lists a few relevant options: https://www.reddit.com/r/mac/comments/q1pgos/keep_a_window_o...

I hope one works out!


BetterTouchTool works, but it's not pretty - rounded corners end up with blue backgrounds and windows shrink slightly when defocussed.

No joy with the rest.



There's a blast from the past. Dan's Data was excellent - wish he was still blogging.


From the Golden Age of the Web!



Yes.


Thanks.


These...

https://reflectivesupplies.co.uk/products/salzmann-3m-scotch...

are better than plastic plate reflectors in every way.


Somewhere I picked up the idea to place reflective tape on the inside of the rim between the spoke holes. Not really for side visibility, but for front/rear off-angle visibility I like it. You can alternate (say every 3) to produce a flashier pattern when you're moving.


You'd think so, but failing disks in raidz arrays can cause extreme performance problems, and failing disk electronics can cause lockups on SAS/SATA controllers.

Old disks are always risky. Avoid.


2. Why should bash be in /usr/bin? Mine's in /usr/local/bin and I've seen vendored bash binaries in very weird places. Respect the user's PATH.

8. '[' and '[[' are both bash builtins.

9/15. If you're using shellcheck, you'll need to quote (almost) all vars anyway.


> 2. Why should bash be in /usr/bin? Mine's in /usr/local/bin and I've seen vendored bash binaries in very weird places. Respect the user's PATH.

Yup, nix and guix consistently put their binaries in "very weird places" - unless you want to make users of those tools unhappy (among others!) please use env. The user knows where their shell is more than you do.


> 8. '[' and '[[' are both bash builtins.

'[' is a builtin, '[[' is a keyword. Can use bash's builtin 'type' to check.


I'd pay good money for an 'Always on top' window option on mac.


> I'd pay good money for an 'Always on top' window option on mac.

I'd already be happy if maximizing a window on macOS worked reliably.


Use Rectangles. It works better than the traffic light bubbles.


Out of the box macOS doesn't have a button to maximize the way Windows does. The green button in modern macOS is for full-screen and option-clicking that button will bring back the old "zoom" behavior which expands the window to fit the content being displayed. It's a lot less frustrating of an experience when you realize that the button doesn't do what you assume it does.


I'm not talking about macOS's green button. That doesn't maximize windows: it creates a dedicated workspace which might have one or two windows.

I've referred to macOS's "maximize window" feature, which you trigger by double-clicking a window's title bar.


I suspect that'd play absolute hell with either their UX concept or the underlying UI abstractions / implementations.

This would create a situation where an application has one window foreground above the foreground application while it is not the foreground application.

On the UI / implementation side: I don't think it's possible to have any windows of an app foregrounded past the foreground app's frontmost window if that app isn't itself foreground. They'd have to create a new category of window (and probably move a bunch of internal data structures around) to make that possible. I know, "it's just code," but it's code based on some very deep and old assumptions about the way the window manager works that probably have hard-to-predict consequences if violated.

On the UX side: having a window floating foreground when the top-of-desktop menubar says another app's name in the corner is going to trigger a "WAT" for a lot of users, and I think Apple is deferring to them.


https://github.com/rwu823/afloat

Also through dock you can configure a window to be on all of the screens

*<-using macos 10.14


Number 1 priority feature I'd ask for if I could get 1 free guaranteed feature request into next version of macOS.

So many ways on windows / linux.


Likewise. Didn't realise how vital it was to my workflow until I switched.


Can't you just use a different window manager?


> I'd pay good money for an X option on mac.

> Can't you just use a different X?

Lol, this is Apple we're talking about, the company famous for not allowing people to customize things to their own liking (for better or worse).


I understand, and even appreciate, that they don't let too much customization on their default programs. But why can't you run a different program? It makes no sense.


Depends on what you mean by "run a different program". You can't really replace WindowServer on macOS, as it is pretty much macOS itself. macOS is not really as modular as Linux or even Windows. There are things that hook into it to give extra behavior (Helium, Afloat, Magnet, Amethyst, chunkwm, several others in the AppStore), but replacing it is not really practical, I believe.


> You can't really replace WindowServer on macOS, as it is pretty much macOS itself.

I find this very foreign. As if a unix system didn't let you change the shell!

This is sad to hear, because I'm a happy user of a headless macOS (not set up by me), to which I ssh almost daily for testing purposes, and it is a fairly decent unix system. It has a few idiosyncrasies, sure, but those help to make your pipelines more portable. I always supposed that the GUI would be just a regular program running on top of that unix.


What window servers can you use on Unix? Wayland still doesn't quite work, after many years.


I use Wayland every day on both my work and personal laptops. Works fine.


The window manager is definitely a "default program" that is probably tightly integrated in various points of the OS. AFAIK, you can't even use the OS without having Finder running (not the actual window "Finder" but the process) as it's also involved in lots of things, like the desktop and such.


I believe Finder is not technically necessary, as seen on Apple's installers and restore mode (which are a smaller version of macOS). You can kill it with Force Quit, for example. It is indeed also the provider of the Desktop, but everything else works: Dock, Menubar, Command+Tab.

It is launched via /System/Library/LaunchAgents/com.apple.Finder.plist


No...macOS doesn't work that way. There are a few hacks (Afloat, Helium) but all require disabling SIP, which is not desirable. And even if they didn't require disabling SIP, they only work part of the time in my experience.


Windows does not use a window manager like X does; the frames are drawn and managed by a library used by all applications, it’s not a separate program.

I’m not 100% sure but I’d say it’s pretty likely Mac OS works the same way, just like on Mac OS the left part of the menu bar (including the system menu) is drawn and managed by the current application (using a system library so the application developer doesn’t have to worry about how it works).


> on Mac OS the left part of the menu bar (including the system menu) is drawn and managed by the current application

IIRC it is not drawn by the application, it's a system app that gets the focused (or rather, activated) app menu hierarchy as the app instructs through some IPC, but it's not the app process itself drawing there. The only part where an app actually can draw is on the right part, when one implements menu bar extras (which previously required hacks to inject into because the menubar extra API was severely limited, but IIUC now has a dedicated, managed API to replace the hacks)


Fun fact about the top level menu: it’s one of the last Carbon-heavy things around, at least last I checked.


On MacOS?


Yep. Charing Cross exit, J18 is on the right side.


Join us for AI Startup School this June 16-17 in San Francisco!

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: