saŭlo

Results 13 issues of saŭlo

Jetpack Compose is mentioned as the first item on "Built with Skija", however according to Jetbrains Compose for Desktop uses Skiko: > Compose for Desktop is powered by our graphics...

in react is quite common to map an `Array[any]` to an `Array[React Element]`, like this ```jsx render() { return ( {people.map((person, index) => ( Hello, {person.name} from {person.country}! ))} );...

need-more-info

In the [`IEditorConstructionOptions`](https://microsoft.github.io/monaco-editor/api/interfaces/monaco.editor.ieditorconstructionoptions.html) has a property called [`automaticLayout`](https://microsoft.github.io/monaco-editor/api/interfaces/monaco.editor.ieditorconstructionoptions.html#automaticlayout), that enables autoresize ![image](https://user-images.githubusercontent.com/19735362/84415219-b024c080-abcf-11ea-9543-1b221ef81ef1.png) as commented here https://stackoverflow.com/questions/49923334/how-to-make-monaco-editor-auto-fit-content-like-codemirror-auto-resize-mode how can i pass this boolean property in react component? and will this override...

monaco-editor

looks like there are no sdk binaries for macos with m1 processors, neither i except any date for them to be available, just posting the fact. ``` npm ERR! command...

First of all thanks @uctakeoff for this app which enables to visualize the growth of the codebase in a simple way can an optional parameter be implemented to add to...

Hello i tried to run the cep extension, however i get: Which version of yarn should be used? Currently on Yarn 3.2.0, Mac M1 steps to reproduce 1. clone 2....

Whenever click build package on ventura: packages_dispatcher is not responding. Have you disabled or unloaded the fr.whitebox.packages.build.dispatcher.plist launchd configuration file? ![Screenshot 2022-11-18 at 0 40 22](https://user-images.githubusercontent.com/19735362/202647825-92cecdd5-2ae4-4337-a1a8-83bf6901a631.png)

The catalog folder set on Django is `components-jx` ```python env.add_extension(jinjax.JinjaX) catalog = jinjax.Catalog(jinja_env=env) catalog.add_folder("components-jx") for dir in loader.searchpath: catalog.add_folder(os.path.join(dir, "components-jx")) ``` according to [docs](https://github.com/jpsca/jinjax/blob/f4fd41107af27fb1769d928b966c0f0a716ac616/docs/content/guide/css_and_js.mdx#declaring-assets) paths are resolved according to the...

Dart supports two conditional access mecanisms ### Dart ```dart foo?.bar // member fooList?[1] // subscript ``` There is a third conditional access mecanism for conditional functions calls, currently available on...

feature

If a xml tag has plain text inside, the closing bracket is inlined instead of setting it on a new line Current format ```xml SVG ``` Desired format ```xml SVG...