Kasper Hirvikoski

Results 139 comments of Kasper Hirvikoski

@Arcovion Nope, doesn’t work. ``` middleman-site $ bundle exec middleman --verbose == The Middleman is loading == Activating: sprockets == Reading: Local config == Activating: livereload == Activating: directory_indexes ==...

@Arcovion Ok. The WebSocket server is working with both the default settings and custom host. I can see curl connecting to Middleman as well. For some reason the livereload.js is...

@tdreyno Actually, I have asset-hashing also activated outside of the build-block. I have to test this...

@tdreyno @everflux Yes, indeed that is the issue. I got livereload working. Activating asset-hashing outside of the build-block prevents livereload to be injected correctly.

Hey @qqilihq! Interesting question. I think for a) the answer is no, since this is handled by the macOS API and the event is triggered natively. For b), this might...

@rcarmo Hi! Have you noticed the mouse events? https://github.com/kasper/phoenix/blob/2.6.7/docs/API.md#mouse. These events also provide the key modifiers that were active when the event happened. Combine with debouncing (https://lodash.com/docs/4.17.15#debounce) and you should...

@rcarmo Let me know if there’s anything else you need help with. True, it might be valuable to add some more examples to the API documentation. Fair feedback! 🙂

Hi! Unfortunately the only viable option currently is to poll. Apple doesn’t provide really any public APIs for Spaces and if I remember correctly there’s no private one for this...

Hmm. I wonder if you could use `NSAccessibilityFocusedWindowChangedNotification` to detect this, i.e. presumably if you move the window, another window will become the focused one for the current space.

@lukesmurray It should, you can try using the `windowDidFocus` event which is exactly the event mentioned above.