Skip to content

Instantly share code, notes, and snippets.

View nyx-lyb3ra's full-sized avatar

[nyx] nyx-lyb3ra

View GitHub Profile
@mitchwongho
mitchwongho / Docker
Last active April 16, 2025 07:28
Docker 'run' command to start an interactive BaSH session
# Assuming an Ubuntu Docker image
$ docker run -it <image> /bin/bash
@gavr123456789
gavr123456789 / async_GTK_gui_example.vala
Last active July 25, 2024 01:23
async GTK 3 4 gui example vala nim
using Gtk;
Button button;
void main (string[] args) {
Gtk.init (ref args);
var window = new Window ();
button = new Button.with_label ("Start counting");
button.clicked.connect (() => {