Matt Rixman

Results 49 comments of Matt Rixman
trafficstars

Ran across this again (at least I think it's the same thing) with this dag: ```python3 from airflow import Dataset, DAG from airflow.operators.python import PythonOperator from datetime import datetime fan_out...

@kangoala Yes actually. I locked myself out of my wallet by forgetting the password. I worked around this by deleting `~/.particl/wallet.dat` and recovering it from seed. I had forgotten that...

The word plugin is often overloaded... Are we talking about [poetry plugins](https://python-poetry.org/docs/master/plugins/#the-self-add-command) like you'd put here? ```poetry self add myplugin``` If so, maybe a good step would be documenting what...

I ran across a similar problem re: pydantic deserialization and generic types. My solution was to specify the contained type twice: 1. as a type variable for use with `Generic[]`...

Ran across this as well. Took a crack at it, but my python-foo is not strong. Here's what I learned: Looks like [this](https://github.com/VitaliyRodnenko/geeknote/commit/ec8dd5b97a4efd66e96cac599138b3c901f0eaed) commit dropped the `format` parameter from Editor.textToENML,...

You can use Nix on other OSses, but it seems like it would get confusing keeping track of which parts of the OS were tracked by which package manager. NixOS...

@cfsmp3 I've had the same thought: re-recreated work. I'm trying to decide if it would *merely* be recreating work, or if it would *also* be duplicating the maintenance burden. Like,...

I took @mkon's approach, but I'm using home manger to generate both `wezterm/wezterm.lua` and `zellij/config.kdl`, so I ended up with entries like: wezterm: ```lua config.keys = { {key="p", mods="CTRL|SHIFT", action=wezterm.action.SendString("@ctrl_shift_p@")},...

#### Some doubt about how `direnv` does it I've spent a while using nix devshells (as defined in a `flake.nix` and activated via `direnv`'s `use flake`). I've been doing this...

- I need to study https://github.com/chadac/mise-nix to see if it scratches this itch already. - After a conversation in discord, I got this feedback: > I feel like what would...