Easyoakland

Results 11 issues of Easyoakland

- Using horton 2.3.0 from `conda create -n horton -c conda-forge horton` - I have followed the AIM instructions in 5.1 in http://theochem.github.io/horton/2.1.1. - I am attempting to get the...

### Description In code mode you can write `function(args)[content]` or `function[content]` instead of `function([content])` e.g. `text(blue)[text]` as described [here](https://typst.app/docs/tutorial/formatting/). In math mode you can call functions without switching to code...

math
syntax
proposal

I was working on another project and realized that 30% of the runtime was the itertools `.combinations()` adapter allocating vectors on the heap. Added an implementation for a lending iterator...

I've got Wasm support mostly working at [this repo](https://github.com/Easyoakland/klask). I also updated to clapv4. Since you can't spawn multiple processes in Wasm it's set up to use an async main...

1. Install `vscode` 2. Install [typst-lsp](https://github.com/nvarner/typst-lsp) and `hsnips` 3. Create new snippet `all.hsnips` or `typst.hsnips` (error even if file is blank and either works to produce error) 4. Create new...

`NAND TRUE` yields a function which works correctly (`λf₂.λa.λb.f₂ba`). But when using `(NAND TRUE) TRUE` get an incorrect result (`λa.λb.a`) which is different from manually writing `(λf₂.λa.λb.f₂ba) TRUE` which yields...

Add new methods for removing an element from an arbitrary index. I'm surprised this wasn't already implemented, so maybe I missed it. Here's what the assembly looks like for `GenericArray::.remove_unchecked`...

Preface: Bindgen is a very useful tool. Thank you for releasing it! # Background As indicated in #1431 and #2791 `__IncompleteArrayField` purposefully doesn't implement `Clone` or `Copy` and structs containing...

Remove last unsafe in crate.

## Motivations Getting the data from `WifiEvents` for application. I'm particularly interested in accessing `wifi_event_ap_staconnected_t` and `wifi_event_ap_stadisconnected_t ` data to maintain a list of connected and disconnected clients and to...

status:needs-attention