| Value | Color |
|---|---|
| \e[0;30m | Black |
| \e[0;31m | Red |
| \e[0;32m | Green |
| \e[0;33m | Yellow |
| \e[0;34m | Blue |
| \e[0;35m | Purple |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| vboxmanage clonehd image.vdi image.img --format RAW | |
| qemu-img convert -f vdi -O raw image.vdi image.img | |
| vbox-img convert --srcfilename image.vdi --stdout --srcformat VDI --dstformat RAW image.img |
This article has been updated and is available here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| setlocal | |
| call :setESC | |
| cls | |
| echo %ESC%[101;93m STYLES %ESC%[0m | |
| echo ^<ESC^>[0m %ESC%[0mReset%ESC%[0m | |
| echo ^<ESC^>[1m %ESC%[1mBold%ESC%[0m | |
| echo ^<ESC^>[4m %ESC%[4mUnderline%ESC%[0m |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * USB HID Keyboard scan codes as per USB spec 1.11 | |
| * plus some additional codes | |
| * | |
| * Created by MightyPork, 2016 | |
| * Public domain | |
| * | |
| * Adapted from: | |
| * https://source.android.com/devices/input/keyboard-devices.html | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- p3.cc 2019-08-02 01:00:02.824687700 -0600 | |
| +++ SimpleDemo3DPGE.cc 2019-08-02 12:21:52.749790300 -0600 | |
| @@ -1,95 +1,57 @@ | |
| /* | |
| -OneLoneCoder.com - 3D Graphics Part #3 - Cameras & Clipping | |
| -"Tredimensjonal Grafikk" - @Javidx9 | |
| - | |
| -License | |
| -~~~~~~~ | |
| -One Lone Coder Console Game Engine Copyright (C) 2018 Javidx9 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package commoble.hyperbox; | |
| import java.lang.reflect.Field; | |
| import java.util.Map; | |
| import java.util.concurrent.Executor; | |
| import java.util.function.BiFunction; | |
| import java.util.function.Function; | |
| import com.google.common.collect.ImmutableList; | |
| import com.mojang.serialization.Lifecycle; |