Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today. Learn more →
Sandbox Alternatives
Similar projects and alternatives to sandbox
-
-
-
SonarLint
Clean code begins in your IDE with SonarLint. Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
-
-
-
-
-
InfluxDB
Build time-series-based applications quickly and at scale.. InfluxDB is the Time Series Platform where developers build real-time applications for analytics, IoT and cloud-native services. Easy to start, it is available in the cloud or on-premises.
-
-
-
-
-
egui
egui: an easy-to-use immediate mode GUI in Rust that runs on both web and native
-
-
gloo
A modular toolkit for building fast, reliable Web applications and libraries with Rust and WASM (by rustwasm)
-
-
-
contour-rs
Contour polygon creation in Rust (using marching squares algorithm)
-
-
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
sandbox reviews and mentions
- Terra Firma, a playable erosion simulation (Free, Works on Proton)
-
A 2D Pixel Physics Simulator with Cellular Automata written in Rust
I've made a similar game: https://github.com/JMS55/sandbox, and it looks like we've had a lot of the same ideas :)
-
Open source projects that need help at beginner/intermediate level
If you're interested in game development, you may enjoy playing around with Sandbox. It's a game I created where you place sand, water, acid, fire, etc and watch them interact.
-
Any interest in a Games From Scratch club?
Unrelated to a club, but you might enjoy looking at a game I built with Rust + WebGPU https://github.com/JMS55/sandbox.
-
I tried making a Gnome install with flatpaks apps exclusively
Counterpoint: https://flathub.org/apps/details/com.github.jms55.Sandbox
-
Is there anyone looking for GSOC student for a Rust project ? (or just a contributor for a project ?)
Not a GSOC project, but my game Sandbox is open to contributions! https://github.com/JMS55/sandbox
-
Im moving a big array around too much
Overflowing the stack: Use a Vec, or Box<[T; N]> (boxed array). A boxed array is a heap allocated array, where the box part just points to some data on the heap, so it's cheap to move around. Both are pretty much equivalent, boxed array is maybe slightly more faster/correct. Note that if you use a boxed array, due to some missing compiler optimizations, you'll probably just get a stack overflow anyways, as the compiler will first store the array on the stack, and then copy it to the heap. This can be solved with some unsafe code, such as in https://github.com/JMS55/sandbox/blob/master/src/heap_array.rs.
-
A note from our sponsor - SonarLint
www.sonarlint.org | 6 Feb 2023
Stats
JMS55/sandbox is an open source project licensed under GNU Affero General Public License v3.0 which is an OSI approved license.