Skip to content

Instantly share code, notes, and snippets.

View duyngb's full-sized avatar
📌
Pining the pin board

duyngb duyngb

📌
Pining the pin board
View GitHub Profile
@duyngb
duyngb / devenv.nix
Created October 30, 2025 14:21
(not so) minimal devenv for a working pyqtgraph, tested on NixOS
{ pkgs, ... }:
{
overlays = [
(final: prev: {
python313Packages = prev.python313Packages
// {
# test failed on python3.13
pyqtgraph = prev.python313Packages.pyqtgraph.overridePythonAttrs(old: {
doCheck = false;
@duyngb
duyngb / decoration_animation.py
Last active December 22, 2017 02:08
Animated decoration in python wait time...
# -*- coding=UTF-8
"""testing"""
from __future__ import print_function, unicode_literals
import time
from random import randint, choice
x = lambda: choice('⣅⢳⢐⡾⡳⡡⡓⡁⡃⣾⢙⢚⢭⢮⢯⢰⢱⢲⢳⢴⢡⢢⢐⢑⢒⢤⠽⡐⡣⡢⡥⡸⡼⡦⡂⠮⠟⠩⡙⢎⢛⢤⢰⡁⠺⡿⢈⣪⠭⠮')
def sleep(seconds=None):