Anton Sukhovatkin

Results 12 comments of Anton Sukhovatkin

setting `MarkdownModule.forRoot({ sanitize: SecurityContext.NONE, }),` got me headerIds displaying in code. maybe it will help.

So I essentially ended up doing something like this (sorry for TypeScript). `getQuadsAndPrefixes(ttlData: string, parser: any) { return new Promise((resolve, reject) => { const quads = []; const prefixes =...

Do you mean something like this: ``` if (q) { quads.push(q); } else { resolve({quads: quads, prefixes: prefixes}); } ``` And yes I am using async/await, but that means that...

> @artonio did you try to pass an empty array? Yes I did, strangely (or not) the following worked: `let f = gio::File::new_for_uri(""); ` `let result: Result = app_info_variable.launch(&[f], Some(&gio::AppLaunchContext::new()));`...

> And it didn’t work?? That strange as empty slice seems pass NULL (None) to list ? > > Create file from empty string also strange. Sorry. It did work:...

was done here, will be merged soon: https://github.com/gtk-rs/examples/pull/281/files

Try setting step attribute on input element to 0.1 https://www.w3schools.com/tags/att_input_step.asp

We use this in production so this library works in most cases, however it does not seem to be maintained. None of my pull requests are being reviewed :(

This may not be perfect, but this is what we ended up doing: ```typescript import Archiver from "archiver/lib/core"; import {Logger} from "@nestjs/common"; import Zip from "archiver/lib/plugins/zip"; /*** * This class...

We had this happen to us when appending a stream from AWS S3, if the S3 did not have the requested file, then our server would crash. This may not...