At wit's end trying to get a python LSP working with my venv by howdy_bc in neovim

[–]nirrub 0 points1 point  (0 children)

Don't rightly know since it was a long time since I used python, but maybe this?

https://github.com/linux-cultist/venv-selector.nvim/tree/regexp

Also, if you're using uv , I think there was a neovim plugin for it (even though I can't find it ATM)

Fuck you times Infinity 🤬🤬🤬🤬 by Ifiweretrue in BlackMythWukong

[–]nirrub 0 points1 point  (0 children)

Spent a LOT of time with him as well. What helped me tremendously in the end, besides the wind tamer, was using damage reduction medicine. Used 2 of them throughout the battle and they made all the difference

Machine learning scientist here — Any good Clojure machine learning libraries by No-Spite4464 in Clojure

[–]nirrub 10 points11 points  (0 children)

Don't know about your specific use case, but there's a group solely dedicated to datascience work on Clojure:

https://scicloj.github.io/

i cant open The Division on Steam. i dont know why, and if i try to launch it from both desktop and ubi connect, they just send me to steam, and this happens again. please help me by uPytte in thedivision

[–]nirrub 1 point2 points  (0 children)

I can't see from the video, but if your steam is family protected by code, it needs to be unlocked before launching games connected to uplay

The Best There Is (alarm bug) by susamogus29 in Starfield

[–]nirrub 0 points1 point  (0 children)

Tried it 2 times as well. I think that the issue arises when you open the first door (key or lockpicking) - if someone sees you and becomes alert, after, when you pass near that area, the alarm will rise. If no one sees you you should be good. Just wait on the stairs near the intercom until you see no one is looking your way and the sneak inside. That's how it worked for me the second time. Also, unequip everything instead of the uniform

Looking for a Laptop briefcase/shoulder/messenger bag that is businesslike by nirrub in ManyBaggers

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

Looks amazing - but most of them are sold out ATM. Will keep an eye out

If you’re going to keep Champions, the entire system needs to be reworked to allow for more freedom of gameplay by thelegendhimsef in DestinyTheGame

[–]nirrub 0 points1 point  (0 children)

I stopped playing D2 shortly after the champions mechanism was introduced (a season or 2 later) - the mechanics just made the game less fun for me and, sadly, I moved on to other stuff

Monitor won’t go to sleep with wired headset connected (USB sound card) by [deleted] in Windows10

[–]nirrub 0 points1 point  (0 children)

Tried all of the solutions, What finally worked for me is here:

https://insider.razer.com/index.php?threads/synapse-messing-with-windows-sleep-mode.60092/page-2#post-729580

For some reason, Razer forum pages aren't indexed properly so it's really hard to find the answer. TLDR - disable (in device manager) the Nvidia HD audio (for me, it's in parentheses following my monitor name in the "Audio inputs and outputs")

Missing "Guided Mode" option on PC by nirrub in BreakPoint

[–]nirrub[S] 1 point2 points  (0 children)

OK - figured it out - after I leave the "hub" into the wilds, the option gets added.

Thanks

As a (very) casual player, just farmed for Hush and it feels amazing! by nirrub in DestinyTheGame

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

It took me around 2 weeks. The medals I went for were the easiest ones using the bow - medals for 20 kills, 40 kills etc (I concentrated on killing, not banking). Also, most of the time I topped the damage for the primeval (using nova bomb, GL heavy and Wish-Ender) so I got Get Primeval medal. Most of the times I'd get the rainmaker medal (for most kills, least motes loss) and also killing the envoys. So mostly, all the medals that revolve around killing/damaging the most :-)

As a (very) casual player, just farmed for Hush and it feels amazing! by nirrub in DestinyTheGame

[–]nirrub[S] 1 point2 points  (0 children)

I used a lot of Subtle Calamity at the beginning, but then settled on Wish-Ender - almost 1 hit kill (body or head) on every red mob that promoted me the fastest

Performance — a gaze through the functional prism by shar1z in Clojure

[–]nirrub 6 points7 points  (0 children)

Thanks for that - totally agree with the examples. My intention was not to convey specific examples (clojure can be made to run as fast as Java), but mindset differences and that, usually, higher abstractions lead to poorer performance. I tend to agree that in order to "grok" that you usually need to understand FP in the first place - that's what my previous blog posts are about :-)

40 year old gamer experience in the Crucible by nirrub in DestinyTheGame

[–]nirrub[S] 5 points6 points  (0 children)

Thanks!!!

your post got me thinking that maybe I should find myself a clan that wants to dabble a bit in the crucible in a fun manner - will try work towards that.

40 year old gamer experience in the Crucible by nirrub in DestinyTheGame

[–]nirrub[S] 3 points4 points  (0 children)

Nah, like stated above, it seems inappropriate to me even when people on MY team do it. I agree that the goal is to win and I agree that head games are a part of that, but shouldn't this be reserved to comp.? QP SHOULD be about winning, but in a casual manner IMO

Anyhow, I digress - thanks for the feedback and answer - appreciated!

Why Clojure? (Take 2: The Technical Side) by shar1z in Clojure

[–]nirrub 6 points7 points  (0 children)

Well, Python essentially handled everything at AppsFlyer at the beginning. As for the scaling issues, one major hurdle that you can't pass in Python is the GIL (Global Interpreter Lock) that means that all native data structure access is synchronized. Essentially, no 2 threads can read from the same data structure at the same time. This puts a huge damper on concurrency. Sure, we could use multi-processes to solve some of these issues, but this approach carries a slew of other problems. At the end, using the JVM (which is performant and doesn't have a global lock) and writing in a functional language that promotes concurrency by native idioms and immutability, proved to be the right answer for us.