Felix G. Knorr
Felix G. Knorr
Reading an image with the method mentioned above will leave the file open, which makes it impossible to delete or overwrite it on Windows.
EDIT2: By now I managed to figure out what was causing my problems. Code isn't neccessary. The Problem was that using a SaveFileDialog will change the working directory of the...
Hey, this is somewhat of a cross post. The original can be found [here](https://forum.nim-lang.org/t/6990) To sum it up: I wrote a small program, that renders graphs based on some text...
Hey, I have to admit, I'm not super familiar with winapi programming. But I was thinking about writing a window manager for windows, and wanted to check how complicated that...
Hey, when I try to use jekyll-email-protect and I run bundle exec jekyll serve, I get the warning: Liquid Warning: Liquid syntax error (line 19): Unexpected character @ in "{{...
If you transform a set of nifti images using the masker (result a), and compare that to the result of first transforming the first half of the images, then the...
Hey, I found a small bug. When the input for the snapshot macro has a `\` followed by a space, that backspace will be duplicated in the generated snapshot. That...
Hey, I'm trying to wrap the low level drawing stuff into a nicer API, and I'm facing some trouble. If I add the following code to the very bottom of...
Hey, I was trying to use this crate, and it was hard, because the current version of axum uses incompatible versions of hyper, http and tokio-tungstenite. So I updated the...
Hey, I tried using the API. This minimal example: ```rust use crossref::*; fn main() -> Result { let client = Crossref::builder().build()?; let works = client.works(WorksQuery::new("Itech").field_query(FieldQuery::author("Felix Knorr")))?; Ok(()) } ``` Will...