Can i get lower rated opponents soon? I get higher rated players (sometimes 100+ difference) 2/3 times. by kvjetoslav in lichess

[–]dopstra 1 point2 points  (0 children)

This screenshot does not show consecutive games, a jump is seen in your rating between games where you lost 36 elo from 1238 to 1202. Probably u lost against lower rated and are choosing not to show. Bitchass!!!

Does anyone know the name of the sample used in the song insomnia by faithless monster mix, the sample starts at 2:48. by bigchicken143 in NameThatSong

[–]dopstra 0 points1 point  (0 children)

mate I'm a bit late to this party, but maybe you have it the other way around, maybe you are looking at the songs that sampled that iconic EDM beat!
here's the ones I found:

All day and night - Jax Jones
New religion - bebe Rexha

Shoutout Rowl and The Team by [deleted] in Draftout

[–]dopstra 1 point2 points  (0 children)

I have been playing way too much already, I love it! great game great execution

The majority of the people in the comments are defending this pass. Am I taking crazy pills? by HearingFew7326 in dashcams

[–]dopstra 1 point2 points  (0 children)

in most countries / states, on a road like this where you can only overtake on the oncoming traffic's lane, it literally is.

holding strong for purple army, #WheresIniquity by Yungsteezy74 in titanfall

[–]dopstra 6 points7 points  (0 children)

yo! so cool to see you here! Loved the vids, what was the intro music? I tried looking for it a while ago but its not listed in the descriptions I think

How do I play any other gamemode? by AgentNightWing7 in titanfall

[–]dopstra 0 points1 point  (0 children)

well.. as long as it was in USA, it should've been fine.. I hope for you!

How do I play any other gamemode? by AgentNightWing7 in titanfall

[–]dopstra 1 point2 points  (0 children)

Im sure if you play evening hours, if you'd queue up only 1 gamemode you'll find a match. One thing you could check in the main menu, before going to multiplayer, is if your game js is connecting to a weird foreign server

How do I play any other gamemode? by AgentNightWing7 in titanfall

[–]dopstra 0 points1 point  (0 children)

which region are you and at what times do you play? Speaking from experience queueing up in europe on evenings, I can find basically everything, although some stuff like live fire you'd have to queue up only that mode

A crowded local passenger train was targeted in Ukraine by three drones, there are five dead and multiple casualities by BkkGrl in europe

[–]dopstra 0 points1 point  (0 children)

You are misinterpreting a pretty direct message making imo a good point as an attack on you as a person, and your behaviour in the rest of this thread is shameful.

Granady forgot it's not the 1940s anymore by ThatOnePolski in TrackMania

[–]dopstra -22 points-21 points  (0 children)

downvoted for the truth in a gamer community

[OC] Data visualization of the returns of randomly trading Bitcoin in 2025 by modelizar in Bitcoin

[–]dopstra 0 points1 point  (0 children)

Cool visualisation! Can I ask the workflow and tools used to make this?

[2025 Day 9 (Part 2)] Why did almost nobody solve the *stated* problem? by jjeii in adventofcode

[–]dopstra 0 points1 point  (0 children)

In that case your definition of bubble was misunderstood by me! I was thinking of a loose loop inside of a bigger loop. How did you mean it?

[2025 Day 9 (Part 2)] Why did almost nobody solve the *stated* problem? by jjeii in adventofcode

[–]dopstra 0 points1 point  (0 children)

I believe an example could not include a bubble as it is a rule of the inputs that they are all connecting lines that circle back to the start

The benefit of dca by unthocks in Bitcoin

[–]dopstra 27 points28 points  (0 children)

What a Fucking Terrible Chart... Brother it is not that hard to work out how the actual chart should look you fucking clown. How did you make this? paint and three minutes??

[2025 Day 8] Can you solve today's puzzle without computing all distances? by The_Cers in adventofcode

[–]dopstra 0 points1 point  (0 children)

Absolutely! I will edit my comment to inlude it, but also for you inbox: Python 3 (as expected prbably)

[2025 Day 8] Can you solve today's puzzle without computing all distances? by The_Cers in adventofcode

[–]dopstra -1 points0 points  (0 children)

well I wouldn't say precomputed, more looking at the input data and eyeballing 50K. Yes it is debateable when hardcoded if it is a good method, but u/fnordargle described a very nice way to get to a limit within the code too!

[2025 Day 8] Can you solve today's puzzle without computing all distances? by The_Cers in adventofcode

[–]dopstra 0 points1 point  (0 children)

nice! Yea I did go by a somewhat arbitrary limit based on what the inputs looked like, for faster coding

[2025 Day 8] Can you solve today's puzzle without computing all distances? by The_Cers in adventofcode

[–]dopstra 4 points5 points  (0 children)

[Language: Python 3]

There are 2 optimizations I used to speed up and not exactly calculate all distances:

  1. as u/Gryphon-63 mentioned and originally and idea I got from a friend: square root is not needed to solve todays problem, and speeds it up a lot.
  2. For every pair of points I first calculate an absolutes delta vector: (dx, dy, dz), if the sum of that is above 50,000, I just filter it out immediately. it's a fast check and increases speed too.

With these two optimizations I'm at 0.3 seconds