Skip to content

Instantly share code, notes, and snippets.

View chrjorgensen's full-sized avatar

Christian Jorgensen chrjorgensen

View GitHub Profile
@chrjorgensen
chrjorgensen / style.clle
Last active August 22, 2023 14:06
CL style example
/*------------------------------------------------------------------------------------------------*/
/* */
/* Test %SCAN and replace. */
/* */
/* Build instructions: */
/* */
/*> CRTBNDCL PGM(&FCN2/&FNR) SRCSTMF('&FP') REPLACE(&R) <*/
/* */
/*------------------------------------------------------------------------------------------------*/
@chrjorgensen
chrjorgensen / readme.md
Last active July 24, 2019 07:16
Sign Oracle Virtualbox modules in Ubuntu 19.04

Import Machine Owner Key

Import the Debian key (entering a simple password when asked - need to reenter after boot):

mokutil --import /var/lib/shim-signed/mok/MOK.der

Reboot.

Check the key "ubuntu Secure Boot Module Signature key" has been registered:

@chrjorgensen
chrjorgensen / Experimenting with ChromeOS on VirtualBox.md
Created December 21, 2018 09:07 — forked from gerarldlee/Experimenting with ChromeOS on VirtualBox.md
Installing ChromeOS on VirtualBox using the NeverWare build

Installing ChromeOS on VirtualBox

  1. Download the NeverWare's ChromeOS build from http://www.neverware.com/freedownload

  2. Extract the *.bin.zip

  3. Convert it to VDI. vboxmanage convertdd chromiumos_image.bin chromiumos_image.vdi

  4. mv chromiumis_image.vdi C:\t\v\chromeos\

@chrjorgensen
chrjorgensen / gist:722a7a79c43e7293b0373f984d9484c4
Created January 24, 2017 20:41
How to make Ctrl-Tab switch editors in Visual Studio Code
In Visual Studio Code press Ctrl-K Ctrl-S to go to the keyboard bindings editor.
Two windows open up - the default and the user keyboard bindings files.
In the user keyboard bindings on the right, enter the followin text:
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "ctrl+tab", "command": "workbench.action.nextEditor" },
{ "key": "ctrl+shift+tab", "command": "workbench.action.previousEditor" },
{ "key": "ctrl+pageup", "command": "workbench.action.openPreviousRecentlyUsedEditorInGroup" },