Alex Potsides
Alex Potsides
I have a .less file, `/me/project/foo.less` that looks like this: ```less @import (css, inline) 'ace-css/css/ace.css'; //... some other stuff ``` [`ace-css`](https://www.npmjs.com/package/ace-css) is present in the `node_modules` folder, so I configure...
Cross posting this from https://github.com/prusa3d/Original-Prusa-SL1/issues/9 - that repo hasn't had a commit in years, no idea if it's still used for anything. --- Due to the physics of the tilt...
I'm not quite sure what I'm doing wrong here, any guidance would be much appreciated. The steps I've taken are: 1. Install fresh Ubuntu VM 2. Update system and Install...
I'd posted this comment in #65 but I don't want it to distract from that issue. The README mentions writing images to an SD card and `"just insert the card...
I'm creating certificates with expiry dates in the far future. ```js import * as x509 from '@peculiar/x509' const selfCert = await x509.X509CertificateGenerator.createSelfSigned({ notBefore: new Date(now - CERT_VALIDITY_PERIOD_FROM), notAfter: new Date(now...
I'm not quite sure what's going on here, but sometimes I can generate a self-signed x509 certificate that node's [TLSSocket](https://nodejs.org/api/tls.html#class-tlstlssocket) rejects with an `ERR_OSSL_ASN1_ILLEGAL_PADDING` error. I think it's related to...
Loading big graphs is really slow because the UI waits for the whole thing to be loaded before rendering - could it add nodes to the graph as they come...
Perhaps this could all be under `.ls` and be a thin wrapper around the [unixfs exporter?](https://github.com/ipfs/js-ipfs-unixfs-exporter#exportercid-ipld) (since it supports more than just unixfs nodes?)
`ipfsx.stat` could operate on arbitrary IPFS hashes as well as `mfs` paths, though it would not return all the fields for non-unixfs nodes.
The `mfs` operations have a `flush` flag to not write to disk immediately. Unless I'm missing something there's no way in this API to explicitly flush an mfs path after...