ske

Results 66 issues of ske

I'd love to see ability to change between different font sizes, specifically make the font size smaller

Like in go, null slices are considered valid, of length zero. ```go var s []int fmt.Println(s, len(s), cap(s)) for i := range s { // no error fmt.Println("%d", i) }...

enhancement

Sometimes modules can get quite big, and it makes sense to separate them. Sometimes modules can just be bundles of other modules. In my case the UI module handles many...

enhancement

Not much to say. I use floor quite often but of course trunc doesn't act like floor on negative values, so I needed workarounds to achieve it

enhancement

The language provides `sprintf` but it requires a whole load of tax work to actually use because of it's similarity to C. With Umka a better formatting function can be...

enhancement

This is needed often when I maintain a sorted array and need to keep the ordering correct.

enhancement

I know this is mostly for Go parity, however this creates big problems when you access a map with a large value type that's gonna just sit around because it...

enhancement
question

Currently there's only few limited string operations in std.um and utf8.um. There are some string operations that would be useful: * `split` Splits the string by specified token * `repeat`...

enhancement

``` type ( Prs* = struct { name: str image: str font: str imageY: int } ) const people = []Prs{ Prs{"triangle" , "faces.png", "data/font.ttf", 0}, Prs{"rectangle", "faces.png", "data/font.ttf", 1},...

enhancement