~ntietz

US/Eastern

https://ntietz.com

~ntietz/gay-agenda-license

Last active 5 months ago

~ntietz/yet-another-rust-resource-discuss

Last active 8 months ago

~ntietz/public-inbox

Last active 1 year, 5 months ago

~ntietz/isabella-db-discuss

Last active 1 year, 6 months ago

~ntietz/hurl-lang-discuss

Last active 1 year, 9 months ago

~ntietz/hurl-lang-devel

Last active 1 year, 9 months ago

~ntietz/hurl-lang-announce

Last active 1 year, 9 months ago

~ntietz/protocols-discuss

Last active 2 years ago

~ntietz/protocols-devel

Last active 2 years ago

~ntietz/protocols-announce

Last active 2 years ago
View more

Recent activity

Re: Possible typo on enum page 8 months ago

From Nicole Tietz-Sokolskaya to ~ntietz/yet-another-rust-resource-discuss

Thanks Marc! I'll get this fixed soon.

Can I credit you on the credits page acknowledgements? If so let me know what name you'd like (full or abbreviated) and I'll get that added when I submit the fix. (Or, feel free to submit a patch containing both the typo fix and adding yourself to acknowledgments, if you want!)

-Nicole

Re: [PATCH 2/2] Remove is_some_and feature declaration as it is now stable 1 year, 6 months ago

From Nicole Tietz-Sokolskaya to ~ntietz/isabella-db-discuss

Applied both patches (and squashed them into one) and pushed into main. 
Thank you for the contribution!

https://git.sr.ht/~ntietz/isabella-db/commit/4b23f45


On 9/25/23 11:18 PM, Sam Calvert wrote:
> ---
>   pgn/src/lib.rs | 1 -
>   1 file changed, 1 deletion(-)
>
> diff --git a/pgn/src/lib.rs b/pgn/src/lib.rs
> index 97f76ed..92bc831 100644
> --- a/pgn/src/lib.rs

Re: [PATCH] Add custom debug impl for large types 2 years ago

From Nicholas Tietz-Sokolsky to ~ntietz/isabella-db-devel

Applied, thank you!

[PATCH] Minor perf improvements via smartstring 2 years ago

From Nicholas Tietz-Sokolsky to ~ntietz/isabella-db-devel

---
 Cargo.lock             | 30 ++++++++++++++++++++++++++++++
 pgn/Cargo.toml         |  2 ++
 pgn/src/parse/file.rs  |  2 +-
 pgn/src/parse/mod.rs   |  7 ++++---
 pgn/src/parse/moves.rs |  4 ++--
 pgn/src/parse/san.rs   |  2 +-
 pgn/src/parse/tag.rs   |  9 ++-------
 7 files changed, 42 insertions(+), 14 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock
index 86e7764..fa492bc 100644
--- a/Cargo.lock
+++ b/Cargo.lock
[message trimmed]

Re: [PATCH 1/2] Implement framework for trait-object tools 2 years ago

From Nicholas Tietz-Sokolsky to ~cbondurant/lipuma-devel

This looks pretty good to me. I like the pattern of dispatching to the
tool object, which will then know how to handle the events. I wonder if
all of the events are necessary—are things like mousewheel in there for
future expansion? I left one suggestion that I think could make it
simpler, but this way is good (and of course, your project not mine!).

> ---
> I hope these are properly formatted! Test patch email

Seemed to work!

> +#[derive(Data, Clone, PartialEq, Eq)]
> +enum ToolState {
> +       Drawing,

[PATCH v2] Create design document for initial work 2 years ago

From Nicholas Tietz-Sokolsky to ~ntietz/isabella-db-devel

This design doc covers the basic design I'm trying to implement with
Isabella and is an intended plan for the initial work. I have a short
"roadmap" of things to do so that it's broken into smaller pieces.
---
 docs/0001-initial-design-and-plan.md | 191 +++++++++++++++++++++++++++
 1 file changed, 191 insertions(+)
 create mode 100644 docs/0001-initial-design-and-plan.md

diff --git a/docs/0001-initial-design-and-plan.md b/docs/0001-initial-design-and-plan.md
new file mode 100644
index 0000000..f5aca7e
--- /dev/null
+++ b/docs/0001-initial-design-and-plan.md
@@ -0,0 +1,191 @@
[message trimmed]

Re: [PATCH] Create design document for initial work 2 years ago

From Nicholas Tietz-Sokolsky to ~ntietz/isabella-db-devel

I got some informal feedback from a friend on this and intend to merge
it today.

> +```python
> +# get the games that match the first filter
> +games = db.retrieve(filters[0])
> +
> +for filter in filters:
> +    games = games.filter(filter)
> +```
> +

The first filter is done twice. This should say `for filter in
filters[1:`.

[PATCH] Create design document for initial work 2 years ago

From Nicholas Tietz-Sokolsky to ~ntietz/isabella-db-devel

This design doc covers the basic design I'm trying to implement with
Isabella and is an intended plan for the initial work. I have a short
"roadmap" of things to do so that it's broken into smaller pieces.
---
 docs/0001-initial-design-and-plan.md | 191 +++++++++++++++++++++++++++
 1 file changed, 191 insertions(+)
 create mode 100644 docs/0001-initial-design-and-plan.md

diff --git a/docs/0001-initial-design-and-plan.md b/docs/0001-initial-design-and-plan.md
new file mode 100644
index 0000000..d0038c5
--- /dev/null
+++ b/docs/0001-initial-design-and-plan.md
@@ -0,0 +1,191 @@
[message trimmed]