Psilon

Results 148 comments of Psilon

Same here. I'm using `swagger-jsdoc` and face this issue. My endpoint: ``` /** * @swagger * * /pdf: * post: * description: Get PDF * produces: * - application/pdf *...

In the end it worked when I added headers to the response: ```js res.setHeader('Content-Type', 'application/pdf'); res.setHeader('Content-Disposition', 'attachment; filename=labels.pdf'); ```

Hi. Any update on mac version? I have LinqPad for Windows but nothing at all for Mac so I hope it can be ran here

Faced this isssue today, went with manual deserializing: ```rust use serde::de; use std::{fmt, fmt::Display, marker::PhantomData, str::FromStr}; pub fn deserialize_stringified_any, T: FromStr, T::Err: Display, { deserializer.deserialize_any(StringifiedAnyVisitor(PhantomData)) } pub struct StringifiedAnyVisitor(PhantomData); impl...

I was thinking about versioning issues as well as sharing issue, i.e. I cannot send a code snippet without having compiler. The code issue is more severe, but IIRC NuGet...

R# works with this, but a bit buggy. It indeed requires reruns and cache cleanup. VS itself goes crazy sometimes, not to say about R# which is much less stable.

@AArnott no, they aren't fed to the compiler directly, I rather use them in my generator. I was author of the assembly-level generators if you recall. Here is an example...

I tried to fix this with VS guys but it seems that it's only related to the `CodeGeneration.Roslyn`. See https://github.com/dotnet/project-system/issues/5621#issuecomment-557228622 for details. I think I'l try to manage to get...

This is an official governement site where you can check if site is blocked: https://blocklist.rkn.gov.ru And it clearly says that at least some addresses are blocked: ![image](https://user-images.githubusercontent.com/11201122/38862094-ba52b872-423c-11e8-9467-c1c05e0d3731.png) It's listed in...

No-no-no, I edited this issue several times. This code works seamless, I just wonder if there is some more "derivish" way to specify offset via attribute or something. I noticed...