cd /var/cache
sudo rm -rf kokua
sudo mkdir -p kokua
chmod ugo+rwx kokua
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
| { | |
| "displayName": "Python Programming", | |
| "blocks": [ | |
| { | |
| "type": "input", | |
| "inputType": "firehose", | |
| "id": "aaaexaacrvo2o", | |
| "firehoseSeconds": 604800 | |
| }, | |
| { |
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
| from __future__ import annotations | |
| from typing import reveal_type | |
| class MetaSingleton(type): | |
| cached = None | |
| def __call__(cls, *args, **kwargs): | |
| if cls.cached is None: |
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
| (1068, 987) Abaft | |
| (1070, 983) Abalone | |
| (1055, 956) Abbiella | |
| (1034, 977) Abiatti | |
| (1028, 935) Aboat Time | |
| (1058, 970) Abrin | |
| (1024, 953) Abrus | |
| (1069, 985) Abysmal Deep | |
| (1055, 995) Acacia Woods | |
| (1048, 933) Acanthis |
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
| { | |
| "displayName": "Python Programming", | |
| "blocks": [ | |
| { | |
| "type": "input", | |
| "inputType": "firehose", | |
| "id": "aaaexaacrvo2o", | |
| "firehoseSeconds": 604800 | |
| }, | |
| { |
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
| Microsoft (R) Windows Debugger Version 10.0.22621.2428 AMD64 | |
| Copyright (c) Microsoft Corporation. All rights reserved. | |
| CommandLine: C:\Games\KokuaViewer\KokuaViewer.exe | |
| Starting directory: C:\Games\KokuaViewer | |
| ************* Path validation summary ************** | |
| Response Time (ms) Location | |
| OK C:\Progs\Mesa3D\Debug\x64 |
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 | |
| :: Put this in the same directory as KokuaViewer.exe | |
| :: Also, make a shortcut so the Start Location is Kokua's directory | |
| :: 4.6 is still kinda buggy at the moment | |
| set MESA_GL_VERSION_OVERRIDE=4.5COMPAT | |
| set MESA_GLSL_VERSION_OVERRIDE=450 | |
| set GALLIUM_DRIVER=zink | |
| :: R: is a RAM Disk |
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
| // FindAbandonedParcels.lsl | |
| // Released to the Public Domain by Claire Morgenthau | |
| // If Public Domain is not applicable in your jurisdiction, | |
| // you can use one of the following licenses: | |
| // WTFPL, CC0, Unlicense, 0BSD, or MIT-0 | |
| integer MINIGRID_SIZE = 8; | |
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
| // Get Region Name, Coordinates, and Position | |
| // in a textual format that can be inserted into a notecard to be inserted | |
| // into the "REZ/GFS finder v1.1" HUD as provided in the MAREFI package | |
| // | |
| // MAREFI : https://marketplace.secondlife.com/p/Mainland-Maps-RezZone-LandMarks-FinderHUD-MAREFI/20221306 | |
| // This particular script is released into the Public Domain by Claire Morgenthau | |
| // If Public Domain is not applicable in your Jurisdiction, | |
| // then you can use one of the following: WTFPL, CC0, Unlicense, 0BSD, or MIT-0 |