Robin Lambertz

Results 193 issues of Robin Lambertz

Requires https://github.com/reswitched/libtransistor/pull/45

Hello I have an editorconfig that's configured to apply the config on every file in the repository: ``` root = true [*] charset = utf-8 end_of_line = lf insert_final_newline =...

help wanted
feature

The official sqlite CLI is compiled with the [fileio extension](https://sqlite.org/src/file/ext/misc/fileio.c), allowing functions like `writefile` to be used, e.g.: ```sql SELECT writefile('object0.gz', MyBlob) FROM MyTable WHERE id = 1 ``` Unfortunately,...

On windows, `heim_process::get(pid)` will iterate on all pids to check if the pid exists: - Get calls `pid_exists`: https://github.com/heim-rs/heim/blob/master/heim-process/src/sys/windows/process/mod.rs#L237). - `pid_exists` calls `pids` if the process is not `STILL_ACTIVE`: https://github.com/heim-rs/heim/blob/master/heim-process/src/sys/windows/pids.rs#L15...

After updating my rust toolchain to latest nightly, running `xargo build -v --target=aarch64-nintendo-horizon-newlib` gives errors out with `Error loading target specification: Could not find specification for target "aarch64-nintendo-horizon-newlib"`. Full log...

In an attempt at getting backtraces to show up on Android (CF rust-lang/rust#17520), I've attempted to build a simple rust binary without PIE (position independent executable). The idea is to...

This allows easily debugging python by connecting with PuTTY to a named pipe. How to use: - Start Uru, wait for intro movie to finish - Start PuTTY, and try...

hacktoberfest-accepted

https://github.com/smoltcp-rs/smoltcp/blob/master/src/time.rs#L71 While reviewing the crate a bit, I noticed this implementation, which seems a bit suspicious to me. It creates a `smoltcp::time::Instant` from an `std::time::Instant` by looking at how much...

kind/bug

Lots of types implement TryIntoCtx but not IntoCtx in goblin (like elf::ProgramHeader). It'd be nice if those types would be usable with IOWrite. Furthermore, this would grant the user more...