odiferousmint
odiferousmint
I would like to create a message with two buttons: `Yes` and `No`. How do I go about it, what is this stuff called? Is it related to `context_menus`? Additionally,...
Hello. Sadly there is only one example which calls the function `UserList`, but what if we don't have it? Right now I only have 3 files, `index.html,` `header.html`, and `footer.html`....
Hello! There are huge JavaScript libraries that I would rather not rewrite. Can I include them in .vugu files somehow (as .js files) and use them perhaps via `vugu/js`? I...
``` cd engine && make DOSTRIP=true gforth-prof-noll OPT=-noll OPTDEFINES= OPTOBJECTS=dblsub.o make[1]: Entering directory '/tmp/gforth-git/engine' gcc -Wl,--export-dynamic -pthread engine-prof-noll.o main-prof-noll.o io.o signals.o support-noll.o pub.o -ldl -lrt -lltdl -lm libmain.o profile-noll.o -ldl...
``` $ gforthmi /tmp/foo.fi unix/socket.fs code offset=195836027088 xt offset=195836027056 label offset=195836027024 start size dp 7F0B20AA7068 800000 1D5B20 7F0B208A6000 200000 4738 7F0B20825000 80000 628 7F0B21908000 20000 100 start size dp 7FAD05DC8228...
This is a feature request/suggestion. I would like `ktlintFormat` to print a list of files that has been successfully formatted similarly to how `googleJavaFormat` (Gradle task) does it. Example: ```...
Hello. For example: `IA5String SIZE(0..10)` would check if the length of string is between 0 and 10. `IA5String SIZE(10)` would check if the length of string is exactly 10. `INTEGER(0..10)`...
Hello. I expected ``` foobar [3] IMPLICIT ENUMERATED { six(0), eight(1), ten(2) } ``` to generate something like: ```java public static enum Foobar { SIX, EIGHT, TEN } ``` Some...
Hello. Due to `goldilocks_gen_tables` being a dynamically linked executable, it cannot be executed when compiled with `musl-gcc`: $ ./configure --enable-static --disable-shared CC=musl-gcc --host amd64 && make -j2 Result: ``` [...]...
Hello. Since it is a compile-time directive, you cannot extend it yourself from the source code (I wonder if this would ever be possible though). I would like to see...