Loukas Agorgianitis

Results 31 issues of Loukas Agorgianitis

Executing any normal autojump command in Windows leads to this: ``` Traceback (most recent call last): File "C:\Program Files (x86)\CowShell\Vendor\AutoJump\bin\\autojump", line 320, in sys.exit(main(parse_arguments())) File "C:\Program Files (x86)\CowShell\Vendor\AutoJump\bin\\autojump", line 314,...

os-windows
priority-high

Currently plain (e.g. Vec3) types have Pod and Zeroable traits from bytemuck implemented but simd types (e.g. Vec3A) have not. Implementing it in them would allow us to use them...

When creating a libvirt network without autostart and rebooting the hypervisor, the network and the instances (domains) are inactive / stopped, as expected. Running `terraform plan` in this scenario we...

Enhancement
Good first issue

Is it possible to add support for bitmap type fonts like pcf and bdf variants? As far as i know freetype already has drivers and loads fonts like these. You...

What causes the following behavior? ``` $ bwrap --dev-bind / / bash -c "ls /proc/$$/exe" ls: cannot access '/proc/396260/exe': Permission denied ``` I have program that checks /proc/$ppid/exe to check...

Using rust stable installed from rustup today on a fully updated Arch Linux system when trying to `cargo install cargo-apk`, gives: ``` error: failed to run custom build command for...

Building android apps from crates that have native dependencies currently not possible, due to the structure of the toolchains inside Android NDK that has the standard library includes in a...

When trying use unity2yaml with the following file: [gd.data.zip](https://github.com/HearthSim/UnityPack/files/1277210/gd.data.zip) It goes on well, until some point it crashes on some object. Reference trace: ``` Traceback (most recent call last): File...

Thank your for the amazing project! It would be awesome if you could provide multi-arch images specifically for armv7/arm64 variants that could work on ARM clusters (e.g. a k3s cluster...

Using CornellBox-Original.obj from https://casual-effects.com/data/ the following snippet: ``` let meshes = models .iter() .map(|m| { let mesh = &m.mesh; println!("{}: {}", m.name, mesh.indices.len()); ... }) .collect(); ``` shows: ``` floor:...