NyxCode

Results 23 issues of NyxCode
trafficstars

I've struck a strange issue with sqlite. This code ```rust fn query + 'a, limit: i64, offset: i64, ) -> BoxStream

Right now, the docs contain a separate example for every prop. [Vuetify, for example, has a nice playground where one can directly interact with the components in the documentation.](https://vuetifyjs.com/en/components/combobox/) What...

See #620 This PR extracts most functionality of `ContextMenu` to `ContextMenuInner`, except event handling. The functionality of `ContextMenu` should be unaffected by this. `ContextMenuInner` can now be used when listening...

The template (with necessary changes) fails on travis with the following error ``` Running `wine /target/x86_64-pc-windows-gnu/debug/heaven-on-earth.exe` err:module:import_dll Library ncrypt.dll (which is needed by L"Z:\\target\\x86_64-pc-windows-gnu\\debug\\heaven-on-earth.exe") not found err:module:LdrInitializeThunk Main exe initialization...

Renaming a `.svelte` component currently does not adjust imports and instantiations of the component, but just renames the file.

When auto-importing TypeScript types, the plugin inserts a normal `import { Type1, Type2 } from "somewhere"` import, even though `compilerOptions.importNotUsedAsValues` is set to `"error"` in `.svelte-kit/tsconfig.json`. The proper import would...

Currently, Kryonet uses the nio library of java. It does its job, but, In my opinion, it suffers from poor maintainability and performance. If we migrated to Netty, we would...

Currently, rotating crops the parts of an image which are "rotated out" of the image buffer (the corners). While this makes sense (resizing the buffer would be necessary), a function...

In my spec, I am using `anyOf`: ```yml schemas: ... SuperType: type: object anyOf: - $ref: "#/components/schemas/SubType1" - $ref: "#/components/schemas/SubType2" discriminator: propertyName: type mapping: subType1: "#/components/schemas/SubType1" subType2: "#/components/schemas/SubType2" ``` This...

`async_std::net::TcpStream` implements `Clone`, which makes it possible to read and write to a socket at the same time. [Official async-std example](https://github.com/async-rs/async-std/blob/master/examples/tcp-echo.rs) This library does not implement `Clone` for `TlsStream`, neither...