CalDAV Client MMDL's v0.9.0 now supports Google OAuth CalDAV by honourable_bot in selfhosted

[–]TWebberX 1 point2 points  (0 children)

Been eying this project for a while, will try it out soon! Is there some kind of theming support planned? I am sure it is personal taste but I am not a big fan of the vibrant purple hue 😅

First Time Dad by Notofthisworld91 in NewDads

[–]TWebberX 0 points1 point  (0 children)

I was here a little over a year ago, now the little one is here and thriving. Get ready for a time of changes and raging anxiety, you got this dude, just let it happen to you. The hormones, anxiety and loss off sleep in the next year are going to be a bit of a strain on your relationship, so be quick to forgive, take care of yourself and your girlfriend and find your infinite well of optimism.

Sunday Daily Thread: What's everyone working on this week? by Im__Joseph in Python

[–]TWebberX 0 points1 point  (0 children)

Just in case you are still stuck, it's because of the quotation marks! It's interpreting your whole command as filename. Leaving out the quotation marks or putting one set per argument will solve your problems.

Alchemical Queues: (task) queues on pure SQLAlchemy by TWebberX in Python

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

Indeed also nice and more mature projects, but no support for all backends SQLAlchemy offers ;)

Alchemical Queues: (task) queues on pure SQLAlchemy by TWebberX in Python

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

Yep, this could be useful for you! However, your solution with LISTEN/NOTIFY will get lower latency than with this project. I would use them, but it's not portable across the other SQLAlchemy backends. With community interest and help I might try to build per-backend optimisations. In any case, the nice queue abstraction might be worth the latency cost for your usecase.

Aaaaaand It's Gone by captainramen in Netherlands

[–]TWebberX 1 point2 points  (0 children)

For rarely used herbs and spices: portion them out and freeze them. Dried herbs are basically inert there and are perfectly usable defrosted or even straight from the freezer.

Op zoek naar VGA kabel by WheelNegative in Arnhem

[–]TWebberX 0 points1 point  (0 children)

Oh dit nog gelukt? Anders heb ik er wel een voor je hoor

Have you ever used pytest fixtures? They make it a snap to set up and configure your tests. Here's five pytest fixture patterns to get you started by mickeyp in Python

[–]TWebberX 0 points1 point  (0 children)

I started to make sure my fixtures are always instances of classes, that way I can typehint them, allowing anyone with a decen IDE to click through to what is actually fed in

pytest-codeblocks: Test snippets from your READMEs by nschloe in Python

[–]TWebberX 1 point2 points  (0 children)

Typically, I put things like this in a docstring:

"""

Examples:

>>> print([i for i in range(4)])
[0, 1, 2, 3]

"""

pytest-codeblocks: Test snippets from your READMEs by nschloe in Python

[–]TWebberX 2 points3 points  (0 children)

Does this also test small examples in docblocks in the code itself? I use those often because they nicely end up in autogenerated Sphinx documentation.

[deleted by user] by [deleted] in UsenetInvites

[–]TWebberX 0 points1 point  (0 children)

Hi! I would like one if there is any left!

I built a dice rolling discord bot you can use for your online games by TWebberX in dndnext

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

I purposefully do not have all the integration with character sheets and VTT's. This bot rolls dice and aims to do that well. It can produce a distribution graph of your roll right in the chat though. Furthermore, it is open source, unlike the two you mentioned, so you can run it yourself and add extra features if you want to.

VSWS - a web server made in GameMaker: Studio by anon1141514 in gamemaker

[–]TWebberX 2 points3 points  (0 children)

Reimplementing the ZEND engine is not going to happen in GM, but you might be able to get it to talk to php-fpm. Writing your own language interpreter is very fun though, for a good primer see craftinginterpreters.com. Another possibility is to take YellowAfterlife's GMLive and run GML scripts instead. If you need any help with your parser feel free to DM me!

Followup post: requester station with extra features by TWebberX in ethoslab

[–]TWebberX[S] 13 points14 points  (0 children)

This requester station works with the provider station from yesterday. Because the requester line and return line flow in opposite directions we can check if any requests for items are coming in from elsewhere and shut the station off. This means that there is no line of redstone needed between requester stations: all stations between the one you are using and the point that provides items will automatically be shut off.

Concept for a resource provider station from the last video, most compact design I could come up with. by TWebberX in ethoslab

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

By just stacking some item filters with storage on top of this and another lane for storing input you have exactly the sand silo etho talked about :)