-
```
: main
1 begin
{ over }list swap pop
repeat
;
```
It would be nice if there was a limit on the depth arrays can be nested (tuneable param?) to prevent this from gobbling up tons of memory…
-
```
What steps will reproduce the problem?
1. upload file
2. select mp3 or video format
3. click upload and watch upload progress
What is the expected output? What do you see instead?
Mine! object is…
-
Perhaps the penny-return logic should be in the @recycle command instead of in the recycle function itself, because that also affects the MUF primitive, creating an unexpected donation of pennies if y…
-
Many pieces of code rely on the same (or very similar) logic, which could be consolidated.
This is the case for internal code (e.g., copying properties), server commands (e.g., do_clone vs. prim_cl…
-
https://github.com/fuzzball-muck/fuzzball-muf/blob/69399c6bd877d8cfa4410952147ae54d30038cea/cmd-ride.muf#L491
This funky $def does not work as intended as far as the program it is contained in care…
-
As per comment 46 here:
https://github.com/unetbootin/unetbootin/issues/46#issuecomment-248423698
This is an issue that should be fixed as soon as possible. I encountered this when trying to copy t…
-
Nested arrays and array_pin can leak memory. For example, the MUF program:
```
: main { }dict ARRAY_PIN DUP 0 ARRAY_SETITEM DUP DUP ARRAY_SETITEM ;
```
leaks memory (AddressSanitizer report):
```…
-
This is a sourceforge issue. NOTE: the scope of this may not include MUFs (as suggested in the original issue). I will see how much work it is to do the MUFs as well. I am also tempted to put a tun…
-
## TODOs
- UI 구성 및 컴포넌트 연결
- 게임 쪽 모델링
- 계약 쪽 모델링
## 작업 내용 (황진하)
- [ ] 경기 관련 플로우 디자인 및 프레임 개발 (1h)
- [ ] 계약 관련 플로우 디자인 및 프레임 개발 (1h)
- [ ] Validation Handling (30m)
- [ ] UI / UX 디자인 체크 (미정)…
-
Occasionally I check which Forth file extension are most popular on GitHub. It's not easy to know which files are written in Forth, but I use the heuristic "if it contains dup and swap, it's probably…