Skip to content

Instantly share code, notes, and snippets.

View naipotato's full-sized avatar

Naiara Gomez Castro naipotato

View GitHub Profile
@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 (() => {
@mitchwongho
mitchwongho / Docker
Last active September 23, 2024 12:09
Docker 'run' command to start an interactive BaSH session
# Assuming an Ubuntu Docker image
$ docker run -it <image> /bin/bash