Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
SQL Equivalent
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
SQL translation is a great tool that transalte any SQL statement(s) to a different dialetc using the JOOQ Parser.
| SQL Variant | Code | |
|---|---|---|
| List databases [1 … |
Collect a Dossier on a Person from Social Media
The NeoVim Plugin for Visual Studio Code
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
https://github.com/asvetliakov/vscode-neovim
Installation
-
Install NeoVim 0.5+ using icon.
icon nvim -ic --ppa -
Install the NeoVim plugin from the extension market in VSCode or Code Server.
-
Set the …
Common Type of Iterators in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
There are 3 ways:
- convert both iterators to concrete collections with the same type
- enum
Box<dyn Iterator<Item=Type>>
Develop Macros in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!