monomon

joined 2 years ago
[–] [email protected] 2 points 1 week ago

I agree. Since I usually make the sauce myself, if I don't cook it long enough, it may lead to moist crust. But it rarely happens anymore. Same for the toppings.

[–] [email protected] 23 points 3 weeks ago (7 children)

Everyone has their opinions and circumstances, but anecdotally my time with children has been some of the happiest.

[–] [email protected] 3 points 1 month ago* (last edited 1 month ago)
  • I recently discovered it can be used in noodles in place of Bok choy and the likes. Works pretty well.
  • Standard issue cabbage and carrots salad - dill, lemon, olive oil
  • Cabbage stew
    • cut the cabbage in strips
    • sautee an onion, carrots
    • add in cabbage, seasoning, and cook for a while
    • optionally add chopped tomatoes toward the end
[–] [email protected] 4 points 1 month ago

With Gitea/Forgejo you can run a local actions executor, which builds the images, pushes to gitea's image registry, and using a script pulls them on the other side and restarts them. Worked fine in our small startup.

[–] [email protected] 2 points 1 month ago

Same in Bulgaria. Sad, because the games look pretty good.

[–] [email protected] 1 points 1 month ago

Should mention Open Sound Control which is also pretty good. Not exactly a competitor, it was supposed to provide a richer, real time interface. Still popular for certain use cases, including beyond music.

[–] [email protected] 2 points 2 months ago (3 children)

Still, if legal, one would "boil" (not sure what the term is for oil soluble?) a kilo with no issue.

[–] [email protected] 3 points 2 months ago

In a similar vein, there's an old saying: "A lie travels around the globe while the truth is putting on its shoes."

[–] [email protected] 2 points 2 months ago* (last edited 2 months ago)

This. We kinda stumbled on this pattern, and use it to great effect. Simplified code:

@pytest.fixture
def tmpfiles():
    with NamedTemporaryFile(suffix=".html") as f:
        yield f

# or for paths, which are more suitable for certain tests
# touch them so they exist
@pytest.fixture
def othertmppaths() -> list[Path]:
    f1 = Path("...")
    f1.touch()
    f2 = Path("...")
    f2.touch()

    yield [f1, f2]
    # you could delete them here if needed
    f1.unlink()

def test_foo(othertmppaths list[Path]):
    result = upload_resource(othertmppaths[0]) 
    assert result.status == 200

The context manager one will properly clean up all files.

E: Pretty website btw

[–] [email protected] 1 points 7 months ago (1 children)

From what I read, the incursion force brought AA, making it hard for Russian air. Moreover, they did strike a few nearby airfields.

[–] [email protected] 3 points 7 months ago

Same. Really happy with it.

[–] [email protected] 1 points 7 months ago

Consumer drones already exist, that can recognize you by face and follow you.

 

I had been meaning to try OCaml for a long time, and saw the opportunity.

My daughter's school schedule was sent in an inconvenient format (screenshot), so I decided to type it in manually in sexps, which I am a fan of.

These are used as a source for my program to generate icalendar with recurrences, exceptions for the holidays, and so on. Someone might find it useful as reference too.

view more: next ›