Christoph J. Scherr PlexSheep
  • Deutschland
  • https://www.cscherr.de
  • I study cybersecurity focused computer science at DHBW Mannheim, while working at NewTec.

  • Joined on 2023-04-16
PlexSheep commented on issue PlexSheep/hedu#3 2024-05-24 09:24:37 +02:00
can't keep reading from a pipe

This is too annoying to fix right now, maybe later.

PlexSheep closed issue PlexSheep/hedu#2 2024-05-24 09:18:59 +02:00
- is not consistently interpreted as "read from stdin"
PlexSheep pushed to devel at PlexSheep/hedu 2024-05-24 09:18:59 +02:00
a28d17d5da fix(cli): accept "-" for stdin marker at any position #2
PlexSheep closed issue PlexSheep/hedu#4 2024-05-24 09:15:43 +02:00
make it clear that dumping dirs is not supported
PlexSheep pushed to master at PlexSheep/scripts 2024-05-24 08:55:29 +02:00
83c46ea4ee wkgen works
PlexSheep pushed to master at PlexSheep/scripts 2024-05-24 08:48:20 +02:00
2693967c34 make wkgen better
PlexSheep pushed to master at PlexSheep/home 2024-05-24 08:23:32 +02:00
a72e723767 user-dirs
PlexSheep pushed to devel at PlexSheep/hedu 2024-05-23 14:57:21 +02:00
11f704804a chore: add log to libpt features
c21b44b1bc chore: fix regression from #5, don't show time if not in meta logging mode
Compare 2 commits »
PlexSheep pushed to devel at PlexSheep/hedu 2024-05-23 14:55:06 +02:00
93b01f27cd docs(help): dirs cannot be dumped #4
PlexSheep commented on issue PlexSheep/hedu#6 2024-05-23 14:52:43 +02:00
simplify dependencies

only 61 crates need to be compiled now.

PlexSheep closed issue PlexSheep/hedu#6 2024-05-23 14:52:43 +02:00
simplify dependencies
PlexSheep pushed to devel at PlexSheep/hedu 2024-05-23 14:51:59 +02:00
b9d0f82ccb fix: less dependencies and simpler cli #6
PlexSheep opened issue PlexSheep/hedu#6 2024-05-23 14:42:49 +02:00
simplify dependencies
PlexSheep closed issue PlexSheep/hedu#5 2024-05-23 14:42:02 +02:00
bug: cargo install hedu does not compile (v0.1.1)
PlexSheep pushed to devel at PlexSheep/hedu 2024-05-23 14:41:37 +02:00
f6c9c3c820 chore: update libpt and adjust to breaking changes #5
PlexSheep pushed to devel at PlexSheep/hedu 2024-05-23 14:41:30 +02:00
a5efc0fc4a chore: update libpt and adjust to breaking changes
PlexSheep commented on issue PlexSheep/hedu#5 2024-05-23 14:29:06 +02:00
bug: cargo install hedu does not compile (v0.1.1)
error[E0599]: no function or associated item named `init` found for struct `libpt::libpt_log::Logger` in the current scope
   --> /home/plex/.cargo/registry/src/index.crates.io-6f17d22bba1500…
PlexSheep opened issue PlexSheep/hedu#5 2024-05-23 14:28:01 +02:00
bug: cargo install hedu does not compile (v0.1.1)
PlexSheep commented on pull request PlexSheep/numf#24 2024-05-23 13:53:22 +02:00
WIP: Guess the format of numbers

We really only have these options:

  1. Don't use clap to parse our stuff and parse the numbers manually
  2. Only guess-parse the stdin
PlexSheep commented on pull request PlexSheep/numf#24 2024-05-23 13:48:01 +02:00
WIP: Guess the format of numbers

we need to specify a parser with a single parameter with clap derive to accept numbers with the cli. We could probably do manual parsing, but that sucks and I don't want to do it. We could…