gesslar

Results 32 issues of gesslar

This line was generating an error: ``` private nosave Disguise disguise = new(Disguise); ``` But the log reports: ``` /std/disguise.c line 14: Undefined class 'ClassDisguise' privclass ClassDisguise disguise = new(Disguise)...

```c mapping actions = ([ ]) ; actions["test"] = (: write("hi there.\n") :) ; foreach(string command, mixed action in actions) { add_action(action, command) ; } foreach(string command, mixed action in...

Example: ``` void runit() { string s = "🤦🏻‍♂️" ; printf("Testing %s\n", s); printf("Length: %d\n", strlen(s)); printf("Width: %d\n", strwidth(s)); } ``` Results: ``` > call ~/test;runit Testing 🤦🏻‍♂️ Length: 1...

I was playing around with `pcre_match_all()` and I ran ```c pcre_match_all("hi there", "(\\w)") ``` and got the results ``` ({ ({ "h", "h" }), ({ "i", "i" }), ({ "t",...

According to https://code.visualstudio.com/api/advanced-topics/extension-host#preferred-extension-location, the order of `[ "workspace", "ui" ]` will allow this extension to work in remote workspaces. Reversed the order as it appears in `package.json` and tested it...

Windows 11 allows running graphical linux apps under WSL2. 1. sudo apt install pike8.0-full git 2. sudo apt install install gtk2.0 3. git -C ~ clone https://github.com/Rosuav/Gypsum Get the following...

Receiving the following when running update.pike ``` Downloading latest code... %% Failed to download latest code %% Failed to download latest code %% Failed to download latest code ``` I...

* corrected typos in debugc for `END premove for pkg` => `END preremove for pkg` and `END postmove` => `END postremove` * added support for passing the package name to...

I was converting some packages to muddler and my original scripts in Mudlet use emojis. Muddler seems to do a number on them and I don't get emojis anymore, just...

#### Brief summary of issue / Description of requested feature: When a gauge is near the full percentage, it maintains its roundness on rounded corners, however, when the gauge reaches...