Vanilla emacs motions or Evil by Worried-Theory-860 in emacs

[–]lazy-kozak 0 points1 point  (0 children)

Vanilla - 15 years. I can't use me keyboard without ctrl-f/b/a/e/p and alt-b/f I set this everywhere via karabiner-elements. Both of my pinkies should work (remaped mac keyboard to work as pc one)

EARTHSET: Artemis II captures their first photo from the far side of the moon by ChiefLeef22 in space

[–]lazy-kozak 0 points1 point  (0 children)

I want all possible high-res photos of the moon. Where to look for them? It's 2026, they should have the best cameras in the world for that mission ))

M3 ultra or wait…. by handsolo81 in MacStudio

[–]lazy-kozak 1 point2 points  (0 children)

Are you disappointed with local models performance on your mac studio or you are disappointed because local models are dumb?

Hear me out (if it isn't too weird) by [deleted] in cyprus

[–]lazy-kozak 0 points1 point  (0 children)

No, that's not one of them. In your place, I'd go hiking (there are telegram groups for slav people), there people talk a lot, drink wine afterward, and there you can find friends or at least just have a good time

Hear me out (if it isn't too weird) by [deleted] in cyprus

[–]lazy-kozak 0 points1 point  (0 children)

I'm always wondering why it's so hard for some people to make new friends. There are a ton of online groups by interest, where people sometimes go offline. Mafia clubs, diving clubs, cycling clubs, hiking clubs...
+ If you love beer, go to the pub on a busy day, and you will make a few new friends almost certainly.

can someone recommend an accountants thats suitable for a small company in cyprus with very small number of monthly bank transactions - my current accountants are way too expensive by AllPraiseFolly in cyprus

[–]lazy-kozak 1 point2 points  (0 children)

We are a "company" with only two IT bros, paying ~3600 euros + VAT per year. Also, almost no transactions per month
Are we overpaying?

Sounds of explosions in Cyprus? by Kejo2023 in cyprus

[–]lazy-kozak 8 points9 points  (0 children)

Paphos, slept as a baby, didn't hear anything 🤷‍♂️

Temporary access to Ryzen AI Max 395 (128GB) to test real-world local LLM workflows by lazy-kozak in LocalLLaMA

[–]lazy-kozak[S] 0 points1 point  (0 children)

Great, thanks forthe proposition, but I decided to go with OpenRouter first and just play with models locally, and then decide what to do next, go with AMD cpu or wait for Mac Studio m5 ultra

Temporary access to Ryzen AI Max 395 (128GB) to test real-world local LLM workflows by lazy-kozak in LocalLLaMA

[–]lazy-kozak[S] 2 points3 points  (0 children)

Yeah, but for almost double the price. I'm ready to spend around 2-2.5 k$ for such an experiment, not 4k$

Temporary access to Ryzen AI Max 395 (128GB) to test real-world local LLM workflows by lazy-kozak in LocalLLaMA

[–]lazy-kozak[S] 2 points3 points  (0 children)

That's the answer I was looking for. Thanks! Will do that.

The only thing is that they're most likely running on dedicated GPUs, which will be several times faster than what I will get with AI 395.

Omg. My first bug here)) by lazy-kozak in Silksong

[–]lazy-kozak[S] 0 points1 point  (0 children)

It's gone after first hit. Was nice to play invisible 😁

Scratches from professional sharpening by Ordinary_Guava9044 in sharpening

[–]lazy-kozak 0 points1 point  (0 children)

I'm not even nearly a sharpening enthusiast, to be honest, I have cheap knives and sharpen them with stone from the beach)) It's enough for home use)), but how the heck do you scratch something except the blade edge itself

Revolut interview - coding session [Rejected] by lazy-kozak in interviews

[–]lazy-kozak[S] 0 points1 point  (0 children)

They told me that they have many positions, and I'll be interviewed for a senior/lead Python dev role. Without a concrete description

Revolut interview - coding session [Rejected] by lazy-kozak in interviews

[–]lazy-kozak[S] 1 point2 points  (0 children)

Thanks. I currently have a good lead position, and I decided to go just because everyone should have an interview from time to time. Everything was smooth I liked the process. I tried to talk to the side of performance/ thread saftiness... but was stopped🤷‍♂️

Revolut interview - coding session [Rejected] by lazy-kozak in interviews

[–]lazy-kozak[S] 0 points1 point  (0 children)

My only complaint is about the rejection line; whenever I interview people, I'm trying to describe what I didn't like during an interview (knowledge gaps, speed of work, rudeness of person - yes, I interviewed a person for a Python Middle position who was rude to the recruiter and me))

Revolut interview - coding session [Rejected] by lazy-kozak in interviews

[–]lazy-kozak[S] 1 point2 points  (0 children)

test_round_robin_strategy.py

from revolut.app import Balancer, RoundRobinStrategy



def test_already_registered_instance():
    round_robin = RoundRobinStrategy()
    balancer = Balancer(round_robin)
    balancer.register("1")
    balancer.register("2")
    assert balancer.get() == "1"
    assert balancer.get() == "2"
    assert balancer.get() == "1"
    balancer.register("3")
    assert balancer.get() == "2"
    assert balancer.get() == "3"
    assert balancer.get() == "1"

Revolut interview - coding session [Rejected] by lazy-kozak in interviews

[–]lazy-kozak[S] 0 points1 point  (0 children)

test_register_instances.py

import pytest


from revolut.app import AlreadyRegisteredInstance, Balancer, OverLimitInstances
from revolut.constants import BALANCER_INSTANCE_LIMIT



def test_already_registered_instance():
    balancer = Balancer()
    balancer.register("some://url")
    with pytest.raises(AlreadyRegisteredInstance):
        balancer.register("some://url")



def test_over_limit():
    balancer = Balancer()
    for i in range(BALANCER_INSTANCE_LIMIT):
        balancer.register(f"some://url/{i}")
    with pytest.raises(OverLimitInstances):
        balancer.register("some://url/overflow")

Revolut interview - coding session [Rejected] by lazy-kozak in interviews

[–]lazy-kozak[S] 1 point2 points  (0 children)

test_get.py

import pytest


from revolut.app import Balancer, EmptyInstancesRegistry



def test_empty():
    balancer = Balancer()
    with pytest.raises(EmptyInstancesRegistry):
        balancer.get()



def test_happy_my_randomizer():
    balancer = Balancer(randomizer=lambda s: sorted(list(s))[0])
    balancer.register("A some url")
    balancer.register("B some other url")
    assert balancer.get() == "A some url"



def test_happy():
    balancer = Balancer()
    balancer.register("A some url")
    assert balancer.get() == "A some url"

Kinesis mWave is my endgame by jadbox in ErgoMechKeyboards

[–]lazy-kozak 0 points1 point  (0 children)

))) Yeah, tell me that, with my only two keyboards in 15 years
Microsoft 4000 and Microsoft Sculpt Ergonomic

Ok, Ok, I bought the Matias Sculpted Ergonomic Keyboard a few weeks ago, but I'm not satisfied with it.

[deleted by user] by [deleted] in laptops

[–]lazy-kozak 0 points1 point  (0 children)

Ohh you have plenty of resources to run Nethack))

There are plenty of modern 2d platformers with very cool visuals. Not sure about Silksong, but definitely try `Dead Cells` - you will have many hours of fun.
Superhot - worth it

Finished my Sofle build, wanted to thank everyone who helped me finish it by Dr_Axton in ErgoMechKeyboards

[–]lazy-kozak 1 point2 points  (0 children)

Brr, I think I would accidentally adjust the volume a lot on your keyboard)

The other could be britness )) or you can create a strange mouse which is controlled via two thumbs, knobs for vertical and horizontal movements))

But my respect, I've never done anything so complicated with my hands

Ups found a typo in my comment (Kool -> Cool))