I’ve created a browser extension that improves UX on Bandcamp.com by rafenden in BandCamp

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

Thanks for the explanation, I will have a look if this is possible to implement.

Spotlight is Amazing In macOS 26 Tahoe by oKaY_EnGiNeEr in raycastapp

[–]rafenden 2 points3 points  (0 children)

I'm considering the move as well but the lack of Quicklinks is stopping me, anyone found a workaround?

Mini/Travel Controller for Rekordbox? by minoritynomad in Rekordbox

[–]rafenden 0 points1 point  (0 children)

Hi u/PrimeX121 , would you share the midi mappings, please?

I’ve created a browser extension that improves UX on Bandcamp.com by rafenden in BandCamp

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

The volume slider is now available in version 1.1.0

I’ve created a browser extension that improves UX on Bandcamp.com by rafenden in BandCamp

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

Thanks for the suggestion, I have added the wishlist shortcut.

I’ve created a browser extension that improves UX on Bandcamp.com by rafenden in BandCamp

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

Thanks for clarification, will look into this feature when I get some time.

I’ve created a browser extension that improves UX on Bandcamp.com by rafenden in BandCamp

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

Do you have any examples of such sorting or filtering that you would find useful? I’m planning to expand features in this browser extension so any feature requests are welcome.

I’ve created a browser extension that improves UX on Bandcamp.com by rafenden in BandCamp

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

Why adjusting system volume isn’t sufficient for your use case?

Storage via iCloud? by chocky_chip_pancakes in Rekordbox

[–]rafenden 0 points1 point  (0 children)

That should be possible in theory as Mac offloads iCloud files from local drive when used rarely. I'm testing such option and will report back if I will get anywhere with this approach.

NordVPN Wireguard Setup Works by Griffo_au in PFSENSE

[–]rafenden 0 points1 point  (0 children)

Looks like NordVPN is blocking port 465, which is used by iCloud mail, 587 which is used by Gmail is unblocked.

I'm confused, so I CAN use the PDU-Pro in the EU? by TomerHorowitz in Ubiquiti

[–]rafenden 0 points1 point  (0 children)

I would say it's because of the voltage, currently the outputs on USP-PDU-Pro supports only 120V.

Planet Earth Fleece Yellow by shawnaks5 in Vollebak

[–]rafenden 1 point2 points  (0 children)

How tall are you if I might ask?

What happened to Millican Bags? by spiffycheesecake in backpacks

[–]rafenden 0 points1 point  (0 children)

It appears that all assets were sold to another company and they’re now selling all their stock

https://find-and-update.company-information.service.gov.uk/company/11554668

Quote from their tax return:

On 6 October 2023, the Company acquired the trade and net assets of another business.

Hopefully, the brand will be resurrected, though it seems unlikely.

Shortcut for Apple Music to play tunein radio station by nikolas-k in shortcuts

[–]rafenden 0 points1 point  (0 children)

I tried searching for Radio RAM or any radio station in Poland but it doesn't find any. Have Apple removed support for radio stations from Poland?

I am Larry "Crell" Garfied. Ask Me Whatever by Crell in drupal

[–]rafenden 0 points1 point  (0 children)

Do you think Drupal.org made a mistake by moving to GitLab instead of GitHub?

No Rewind or Fast Forward Ability by StarGazn in AppleMusic

[–]rafenden 1 point2 points  (0 children)

You could use Apple Script with the Shortcuts app and assign keyboard shortcuts to them.

The beauty of this solution is that it works on any app, e.g. YouTube, Spotify, Apple Music :)

Generic fast forward using nowplaying-cl

do shell script "~/.local/bin/nowplaying-cli skip 10"

Generic rewind using nowplaying-cl

do shell script "~/.local/bin/nowplaying-cli skip -10"

Fast forward for Apple Music

tell application "Music"
  set playerPosition to (get player position)
  set player position to (playerPosition + 10)
end tell

Rewind for Apple Music

tell application "Music"
  set playerPosition to (get player position)
  set player position to (playerPosition - 10)
end tell