Skip to content

Instantly share code, notes, and snippets.

View JollyWizard's full-sized avatar

James Arlow JollyWizard

View GitHub Profile
@JollyWizard
JollyWizard / Google.Translate
Created March 4, 2024 05:43
Grub4Dos Chenall Website (Translated Eng)
https://grub4dos-chenall-net.translate.goog/?_x_tr_sch=http&_x_tr_sl=auto&_x_tr_tl=en&_x_tr_hl=en&_x_tr_pto=wapp
@JollyWizard
JollyWizard / ChangeLog_UEFI.txt
Created March 4, 2024 05:41
Grub4dos Changelog UEFI (2024-02-26)
Update instructions:
2024-02-26 (yaya)
Improve uuid/vol function to support more than 10 partitions.
2023-11-27 (yaya)
Fixed fragment slot calculation.
Improve pxe.
2023-10-14 (yaya)
Fixed the problem introduced by adding variable menu_tab_ext.
@JollyWizard
JollyWizard / ChangeLog_chenall.txt
Last active March 4, 2024 05:40
Grub4dos Changelog 0.4.6a
Update instructions:
2024-02-26 (yaya)
Improve uuid/vol function to support more than 10 partitions.
2023-11-27 (yaya)
Fixed fragment slot calculation.
Fix cdrom parsing. issues #431
@JollyWizard
JollyWizard / getpoint-echo-test.lsp
Created February 9, 2022 07:03
AutoLisp getpoint and echo test (CorelCAD viability investigation.)
;| Set Variable |;
(setq p1 (getpoint))
;| CorelCAD Output |;
; (73.0 9.65125 0.0)
;| Point is interpretted as a bad function. It's a list with no command. |;
(p1)
;| CorelCAD Output |;
; Error: Invalid parameter.
@JollyWizard
JollyWizard / _ ytt starlark and lib-data example.md
Last active September 1, 2020 06:41
An example using `ytt`'s data annotations and a function in a separate source code file.
@JollyWizard
JollyWizard / array-literals-error.yml
Last active August 29, 2020 00:50
[2020-08-28] An example that will not compile in ytt.
#@ def yml_array_literal1():
- a
- b
#@ end
#@ def yml_array_literal2():
- 1
- 2
#@ end
---
#@ def yml_array_literal1():
- a
- b
#@ end
#@ def yml_array_literal2():
- a
- b
#@ end
---
@JollyWizard
JollyWizard / array-literal-error-fix.yml
Last active August 29, 2020 00:24
[2020-08-28] ytt example that compiles in the playground
#@ def yml_array_literal():
- a
- b
#@ end
---
ymlkey: #@ yml_array_literal()
@JollyWizard
JollyWizard / array-error.yml
Last active August 29, 2020 00:21
[2020-08-28] ytt example that fails to compile on playground
#@ def yml_array_literal():
- a
- b
#@ end
ymlkey: #@ yml_array_literal()