Skip to content

Instantly share code, notes, and snippets.

View HalanoSiblee's full-sized avatar
:octocat:
Open source supporting force

Halano HalanoSiblee

:octocat:
Open source supporting force
View GitHub Profile
@HalanoSiblee
HalanoSiblee / fltk_input_fast_calculator.cpp
Created December 31, 2024 16:56
FLTK calculator using input method to evaluate the expression
/*
👑 BY HALANO SIBLEE 👑
CAREFUL THIS CODE NOT SAFE
*/
#include <FL/Fl.H>
#include <FL/Fl_Window.H>
#include <FL/Fl_Input.H>
#include <FL/Fl_Box.H>
#include <string>
#include <vector>
@HalanoSiblee
HalanoSiblee / fl_disk_usage_chart.cpp
Created December 31, 2024 16:50
FLTK partition usage chart
#include <FL/Fl.H>
#include <FL/Fl_Window.H>
#include <FL/Fl_Chart.H>
#include <FL/Fl_Box.H>
#include <charconv>
#include <ostream>
#include <sstream>
#include <iostream>
#include <string.h>
#include <sys/statvfs.h>