Skip to content
#

sandbox

Here are 1,300 public repositories matching this topic...

fitzgen
fitzgen commented Feb 8, 2022

Seems like an oversight on our part.

I'm imagining that we would

  1. Make the default amount of fuel 0 in the CLI
  2. Add a --add-fuel <N> option to add N fuel to the store

I think (1) miiiiight be slightly controversial? As an alternative, we would have a --set-fuel <N> option, instead of --add-fuel <N>, and then we would have to ensure that the store gets exactly N fuel rathe

thomasballinger
thomasballinger commented Aug 1, 2021

Related to metering wasm3/wasm3#127 and being able to run a set number of instructions, I'd like to be able to serialize a paused interpreter's state and deserialize it to a new interpreter instance; very roughly,

const interp = new wasm3.Interpreter(module);
interp.interpretNInstructions(100);
const interpState = interp.serializeState();
const interp2 = wasm3.In
techgeeknz
techgeeknz commented Jul 2, 2020

Version of OpenTTD

Since e04ca904a9455afc63aa87db775fe4463ab899b7

The introduction of the minimap screenshot feature appears to be duplicating functionality that will be used elsewhere for drawing the widgets within the minimap window; specifically, the GetMinimapOwner function is very likely to be replicating functionality used by the owner information overlay of the minimap window.

Terasology
jdrueckert
jdrueckert commented Jan 22, 2022

Motivation

Working with our game logs, for instance when investigating a crash or other kind of issue, is annoying because there's a lot of (unnecessary) noise in them, that we learn to accept / ignore instead of reducing it.
One part of the log noise is complaints regarding unknown components or component fields.

Proposal

  1. Investigate the common complaints regarding unknown co
nanos
wjhun
wjhun commented Mar 24, 2021

The virtio_scsi driver enqueues buffers to the eventq but does not actually handle them on completion. The following events could be reported to the driver which require some action to be taken:

  • transport reset: This may occur as a result of hotplug events or a device being reset. Sense codes cannot be relied on when new devices or busses appear, so this event needs to be handled.
  • asynchro
sandpack
danilowoz
danilowoz commented Feb 8, 2022

Create a piece of documentation explaining how to get the CodeMirror instance and what is the benefits, example:

const editorRef = useRef<CodeEditorRef>(null);

  useEffect(() => {
    const editorElement = editorRef.current?.getCodemirror();
    if (!editorElement) return;

    if (animationComplete && !editorElement.hasFocus) {
      editorElement.focus();

      const newState
Thrive
hhyyrylainen
hhyyrylainen commented Jan 21, 2022

could make the chemoreceptor auto select the compound's colour when selecting one, this would make it faster to configure multiple chemoreceptors for different compounds to look for.

Just needs a callback for the option button to detect when it changes value, and then just looking up the compound colour and setting that on the colour picker. Could maybe only change the colour if it is white or

judge-server

Improve this page

Add a description, image, and links to the sandbox topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the sandbox topic, visit your repo's landing page and select "manage topics."

Learn more