Sasha Koshka sashakoshka
  • Manehattan MAS hub
  • https://holanet.xyz
  • Sasha Koshka is the name I go by online. E-mail me if you have questions about that or about my projects in general.

  • Joined on 2022-08-07
sashakoshka created branch main in sashakoshka/gifcap 2024-08-08 14:49:43 -06:00
sashakoshka pushed to main at sashakoshka/gifcap 2024-08-08 14:49:43 -06:00
e528d23da4 Capitalize GIF
d929a0a0ec Add example
f524c1c762 Add README.md
66b3d52e3d Silly trick with the font name
cfd2abf2e8 Initial commit
sashakoshka created repository sashakoshka/gifcap 2024-08-08 14:49:29 -06:00
sashakoshka pushed to main at tomo/tomo 2024-08-07 17:13:32 -06:00
bc38ea14e1 Add String methods for all types in unit.go
sashakoshka commented on issue bonsai/harakit#153 2024-08-04 17:48:25 -06:00
qi(1): Quirks

one should wait for another to conclude before beginning

What do you mean by this? Because I take it to mean that if you have:

ar 
sashakoshka commented on issue bonsai/harakit#148 2024-08-04 17:29:34 -06:00
kv(1) - key/value

Please elaborate

Well, you half elaborated for me. Watching .env as you described is the kind of "rethinking" I was talking about. As for the general data storage/retrieval mechanism, I was…

sashakoshka commented on issue bonsai/harakit#148 2024-08-04 00:30:46 -06:00
kv(1) - key/value

I’m starting to wonder what the benefit of this is over having environment variables set in the shell environment.

Configuring things via environment variables is generally very clumsy.…

sashakoshka commented on issue bonsai/harakit#148 2024-08-03 22:15:13 -06:00
kv(1) - key/value

Setting values in the file could be achieved through manual editing and in scripts by existing (or not yet existing) tools.

In my opinion this kind of defeats the purpose of the tool, the…

sashakoshka commented on issue bonsai/harakit#148 2024-08-03 22:10:04 -06:00
kv(1) - key/value

This would be more idiomatic:

$ config=~/.config/greeter.conf
$ mm -i "$config"
timeOfDay=morning
name="$USER"
$ mm -i "$config" 
sashakoshka pushed to main at tomo/tomo 2024-08-03 20:09:25 -06:00
b264e11ea6 Merge style.go and unit.go
sashakoshka pushed to main at tomo/tomo 2024-08-03 20:05:12 -06:00
a01e5f8716 Change the name of MimeIcon to MimeIconTexture
sashakoshka pushed to main at tomo/tomo 2024-08-03 20:04:31 -06:00
3de570373f Remove Style as per #21
sashakoshka pushed to main at tomo/tomo 2024-08-03 19:57:39 -06:00
a1eb53c4db Added functions to get icon textures from the backend
sashakoshka pushed to main at tomo/tomo 2024-08-03 19:53:04 -06:00
750882eef1 Address icon attribute changes in #21
sashakoshka pushed to main at tomo/tomo 2024-08-03 19:26:24 -06:00
a98d09d320 golang.org/x/image is no longer a dependency
e6a4b6c70e Change AttrFont to AttrFace as per #21
03fab6fcc0 Remove the font interface and add a Face struct as per #21
Compare 3 commits »
sashakoshka commented on issue tomo/tomo#21 2024-08-03 19:23:48 -06:00
Revise API to better support backend servers in the future

Layouts should not be attributes because sending code to a display server is not possible. Having the layout code run client side wouldn't work very well either, because then the server would have…

sashakoshka commented on issue tomo/tomo#21 2024-08-01 21:33:37 -06:00
Revise API to better support backend servers in the future

This would, of course, render icon sets obsolete. The backend would need to search for the correct icons, and it would need to be configured to do so outside of the API. Perhaps, then, it would be…

sashakoshka commented on issue tomo/tomo#21 2024-08-01 21:15:40 -06:00
Revise API to better support backend servers in the future

Maybe icons should be their own attribute. When specified, they would render over textures. This would allow the icon resource to be controlled entirely by the backend in most cases, relieving the…

sashakoshka commented on issue tomo/tomo#21 2024-08-01 21:02:23 -06:00
Revise API to better support backend servers in the future

Font faces ought to be specified like this:

type Font struct {
        Face   string
        Size   float64
        Weight float64
        Italic float64
        Slant  float64
}
`…
sashakoshka opened issue tomo/tomo#21 2024-08-01 17:10:05 -06:00
Large data should seldom be sent to the backend