JoeStrout

Results 29 issues of JoeStrout

I found my way to the Study Groups page, and clicked Learn More to get the pop-up, but it seemed to be assuming I was already familiar with Jitsi. In...

[feature] hangouts
[tech] html
Backlog

If command-line MiniScript is given a path to a script file that contains very long lines (e.g., 2700 characters long), it terminates without generating any output (other than the standard...

bug
good first issue

Mini Micro has a cool "import" feature described [here](https://forums.miniscript.org/d/93-how-import-works). (And to close some of the questions open in that thread: yes, you can use `if globals == locals` to tell...

I was trying to make a function that instantiated a class passed in as an argument: ``` tileAsSprite = function(col, row, baseClass=Sprite) noob = new baseClass // ... return noob...

It appears that when the new line continuation feature is used, the line number counts that appear in error messages are no longer correct.

- [x] I solemnly swear that this is all original content of which I am the original author - [x] Pull request title is prepended with `[language/lang-code]` (example `[python/fr-fr]` or...

### Pitch Currently, when I have followed a share link (for example, https://noc.social/share?text=example), amended the text however I like, and clicked Publish, it simply clears the entry box. Nothing else...

suggestion

If you compile the MiniScript source code using a compiler that supports the "reorder" warning (-Wreorder), such as gcc/g++, then this warning crops up in quite a few places. For...

help wanted
good first issue

I find it's surprisingly easy, when coding along and concentrating on other things, to create a class and then try to add a method this way: ``` self.foo = function...

The C++ implementation currently uses reference-counting, which is relatively fast and simple, but can leak circular references. Switch to another form of garbage collection to fix this problem and bring...