-
https://github.com/tonybaloney/CSnakes/blob/b3afc46ce3168f00ac86b461dd3a2fb0cd4320ea/src/CSnakes.Runtime/CPython/Object.cs#L1
```csharp
using System.Runtime.InteropServices;
namespace CSnakes.Ru…
-
we need to implement `constexpr void push_back(char_type ch);` for `basic_sstring`.
-
I have a cyrillic corpus here, see relevant part of an email exchange:
> I was as surprised as you are.
> See attached a novel in Russian.
> Here's what I do:
> (Cmd) train 3 dom.txt
> (Cmd) tokens 1…
-
Suggest rewriting:
```go
slog.Debug("msg", "type", fmt.Sprintf("%T", x))
```
to
```go
slog.Debug("msg", "type", reflect.TypeOf(x))
```
See https://github.com/golang/go/issues/63570
-
Hello, with the example below on esp32 (V1.18 micropython), the string is 89 times slower than the bytes, unfortunately not only on this simple case, on another esp32 I can reach a factor of 280, it d…
-
### Proposal
Hi!
I recently went through the effort to better align our usage of `labels.Labels` so that we can try out `stringlabels` builds and evaluate the change on tsdb, ingester, and quer…
-
ItelliJ Idea keeps track of external annotations using a simple xml format and directory tree.
The documentation can be found [here](https://www.jetbrains.com/help/idea/annotating-source-code.htm…
-
I have a large chunk of data in a file, encoded with msgpack, and I want to load it to Lua.
I do not want to pay for overhead of interning this file as a string into Lua state. Instead I want a lua-c…
-
I am opening this issue as a follow-up to a discussion on Slack not to loose track of it.
Rationale: in data-science workflows it is very common to have very large tables that hold columns that con…
-
Is this possible? Or is there an easy way to extend slotmap or write a new type of slotmap that supports this?
```rs
let mut thing = slotmap::SlotMap::new();
let a = thing.insert("hello");
let b…