Skip to content

Instantly share code, notes, and snippets.

View ctin's full-sized avatar

k_lyashkevich ctin

  • Minsk
View GitHub Profile
@mraleph
mraleph / ffi.md
Last active November 11, 2023 14:44

Dart VM FFI Vision

Background

The aim of Dart FFI project (tracked as Issue #34452) is to provide a low boilerplate, low ceremony & low overhead way of interoperating with native C/C++ code.

The motivation behind this project is twofold:

@reflog
reflog / etching.cpp
Created May 28, 2012 07:52
etching
QPalette pal = QApplication::palette();
pal.setColor(QPalette::Disabled, QPalette::Text, QColor(80, 80, 80));
pal.setColor(QPalette::Disabled, QPalette::Light, QColor(0, 0, 0, 0));
QApplication::setPalette(pal);