Skip to content

Instantly share code, notes, and snippets.

View Doaxan's full-sized avatar
🎯
Focusing

Amir Fazleev Doaxan

🎯
Focusing
View GitHub Profile
@Doaxan
Doaxan / 00_js.md
Created January 7, 2022 02:49
JavaScript Cheatsheets

JavaScript

@Doaxan
Doaxan / playground.rs
Created August 22, 2017 13:00 — forked from anonymous/playground.rs
Rust code shared from the playground
/**
Simple example on how to use the nwg template system.
*/
#[macro_use] extern crate native_windows_gui as nwg;
use nwg::{Event, Ui, simple_message, fatal_message, dispatch_events};
/// Custom enums are the preferred way to define ui ids. It's clearer and more extensible than any other types (such as &'str).
#[derive(Debug, Clone, Hash)]