Sean
Sean
**In raising this issue, I confirm the following:** `{please fill the checkboxes, e.g: [X]}` - [X] I have read and understood the [contributors guide](https://github.com/pi-hole/pi-hole/blob/master/CONTRIBUTING.md). - [X] The issue I am...
The Caddy template library includes the function `httpError` to return a status code like 404 when processing a template. This function is used on Caddy's [own documentation website code.](https://github.com/caddyserver/website/blob/master/src/docs/index.html) However,...
Currently, TarEntry.cs, in `GetFileTarHeader`, trims all leading forward slashes. Trying to write `/home/username/foo.txt` as an entry would to write `home/username/foo.txt` This prevents writing absolute paths to the archive, and also...
Removes GetCurrentDirectory checks from TarEntry, ensuring that behavior of adding files is consistent, regardless of the current assembly location (resolves #337). Also removes the check for leading slashes, which prevents...
### Steps to reproduce 1. Create an output tar archive. 2. Set the root path to something in the same directory as the exe (so if the exe was `C:\tools\thingWithTar.exe`,...
# Documentation Issue PowerShell documentation does not explain how concurrency works within the shell. This can lead to issues, especially on the job system and when inter-operating with C#. The...
[In the chapter on async spawn](https://rust-exercises.com/100-exercises/08_futures/02_spawn), there's example code for the function `echoes`: ```rust use tokio::net::TcpListener; pub async fn echo(listener: TcpListener) -> Result { loop { let (mut socket, _)...
In Entity Framework Core 3.1, when subclassing an existing DbContext, it will generate an error if you're missing a constructor: `public MySqliteContext(DbContextOptions<MySqliteContext> options) : base(options)` However, this will type error,...
I'm testing out uniffi for a project, and I'd like to expose a function that takes a list of strings to C#. The function signature is: ```rust pub fn take_names(names:...