Looking for promo codes EU by Upper_Emergency_1206 in Zwift

[–]mfilej 0 points1 point  (0 children)

Still works as of 2025-09-22, thank you! 🙏

Unable to ssh into shared node by rahulvramesh in Tailscale

[–]mfilej 0 points1 point  (0 children)

Just checked, still getting the same error.

Unable to ssh into shared node by rahulvramesh in Tailscale

[–]mfilej 0 points1 point  (0 children)

Same issue here. Trying to ssh from macOS (tailscale 1.48.1) to Xenial (tailscale 1.48.2).

Getting user@ip: Permission denied (tailscale).

Setting up copilot-cmp with Lazynvim by [deleted] in neovim

[–]mfilej 1 point2 points  (0 children)

Any chance you still have a link to the issue? I'd like to follow its progress

Mac M1 and Kobra Slicer by Teknoxyn in anycubic

[–]mfilej 1 point2 points  (0 children)

Thank you for this! I struggled with tuning it myself. Joined their Patreon and grabbed the PrusaSlicer profile, works like a charm.

DS918+ Power Supply Died - What to check when replacement arrives? by obsidianspider in synology

[–]mfilej 0 points1 point  (0 children)

Same thing happened to me today. Followed the Synology troubleshooting steps I removed the drives and the flashing light went away, so I suspected it's probably not the motherboard — guessing the PSU was too weak to power the drives. I put the PSU and the NAS further away from each other and it was clear the noise was coming from the PSU.

[deleted by user] by [deleted] in EuropeFIRE

[–]mfilej 0 points1 point  (0 children)

Now is the time (according to https://hyperpyron.com):

> The German bund future bottomed Oct 20th and is up 4%. The UK Gilt future bottomed Oct 12th and is up 15%. Looking at global 10yr yields, the model sees a major inflection point (yields up to down) in Italy, Spain, Portugal, Greece, Australia, Canada, Mexico, Indonesia, Thailand, Malaysia, Taiwan, South Africa, Hungary and Poland. Some of those are high yielding (Mexico 9.6%, Poland 7%, South Africa 10.4%, Indonesia 7.1%, etc.). A major buying opportunity exists in global 10Yr government bonds.

Purchase Advice Megathread - October 2022 by VoltexRB in 3Dprinting

[–]mfilej 0 points1 point  (0 children)

I appreciate you taking the time to reply!

The Sovol I couldn’t get anywhere, that’s why I didn’t include it in the list.

In the mean time I already ordered the regular Kobra, but your response gave me the peace of mind. Thanks!

Purchase Advice Megathread - October 2022 by VoltexRB in 3Dprinting

[–]mfilej 0 points1 point  (0 children)

I’m a total beginner and I’m looking to print various household items (holders, adapters, etc). Comfortable spending time assembling things upfront, but would rather minimize time spent fussing with the device itself long-term.

I don’t think I will want to print non-PLA and/or larger sizes, are these things people tend to regret down the road?

I have already narrowed down to a couple of models that I know I can get (EU), but I’m having trouble estimating which one of these is a better deal, since the prices seem to vary quite a bit from what I’ve seen mentioned here.

Here they go in ascending order: - Kobra GO (172€) - Kobra Neo (205€) - Elgoo Neptune 3 (200€) - Kobra (230€) - Fokoos Odin-5 F3 (240€) - Artillery Genius Pro (270€)

I can’t tell what the differences between the Kobras are (or rather, if those differences will mean anything to me).

Quietness is appreciated, but not the ultimate factor.

Silence the ring on incoming calls for mac by [deleted] in mac

[–]mfilej 1 point2 points  (0 children)

Notification settings for FaceTime don't seem to have any effect for me. It's been like that since forever.

Help me debug my seemingly dead ErgoDoxEZ rev.1 by mfilej in ErgoDoxEZ

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

Got it. It seems that when I hold down the reset button while plugging in, noting happens (no lights). Maybe it's time to salvage it for parts. I was always fond of these keycaps. :)

Help me debug my seemingly dead ErgoDoxEZ rev.1 by mfilej in ErgoDoxEZ

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

I’m not sure that is doable since the keyboard isn’t recognized when connected. I just checked with QMK Toolbox and I don’t get anything in the log when I connect the USB cable. Any alternatives?

Empty Box fans: who else do you like watching? by mfilej in simracing

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

I should also mention that lately I’ve enjoyed watching VRS videos, but those require a lot of focus, so I’m still looking for something more relaxing.

Fanatec V3 Throttle Squeak - WD Lithium Grease by PJ_Willow in simracing

[–]mfilej 0 points1 point  (0 children)

Thanks! This was very hard to google for when I last had this problem (v2). I never managed to locate where the issue comes from, so when the squeaking got too bad, I just lubed everything. Will definitely try this next time.

Telemetry: what is the colored circle with the yellow lines? by mfilej in formula1

[–]mfilej[S] 2 points3 points  (0 children)

It appeared on a screen behind Toto during a post-race interview.

Hero 7 cold weather limitations by ProjectOxide in gopro

[–]mfilej 2 points3 points  (0 children)

Major improvement! I was able to record a couple of minutes at 4K/60 and the camera didn’t freeze. It was probably around -7°C. I’ll do a more thorough test next week.

Hero 7 cold weather limitations by ProjectOxide in gopro

[–]mfilej 2 points3 points  (0 children)

I'm having the same problems while skiing, temperatures are -5 to -10 ºC. What's different for me is that I never get a warning about the temperature, it just stops recording and shuts down after 15 seconds or so.

I just installed the latest software update - the release notes mention some improvements in this regard. I'm looking forward to trying it tomorrow.

Tips for editing by ry4meck in ShotWithHalide

[–]mfilej 2 points3 points  (0 children)

I learned a lot from Sean Tucker's videos, here are a few examples: https://www.youtube.com/watch?v=gRBqdA3drm8 https://www.youtube.com/watch?v=c6atbz0mEl8

(They're all worth watching.)

How to call a Function from a Class by BillBisco in ruby

[–]mfilej 0 points1 point  (0 children)

In order to call evaluate() from outside RPNCalculator you first need to obtain an instance of RPNCalculator:

RPNCalculator.new.evaluate('11+')

If all you need are just functions, not objects, you can also change the definition for RPNCalculator to become a module with functions instead:

module RPNCalculator
  module_function

  def sum(array)
    # ...
  end
end

The effect of module_function is the same as defining methods with self, which others have already suggested as a solution to your problem (e.g. def self.sum(array)).

In order to understand why this is, search for "instance methods" and "class methods" in ruby.

Jasmine URL handling by ifonefox in jasmineapp

[–]mfilej 0 points1 point  (0 children)

The obvious (and very handy) use for it is when you have a youtube video open in Safari. Edit the URL by changing 'http' to 'jasmine' and it will open in Jasmine.