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 / 2024
Created December 31, 2024 17:23
Painful but beautiful year of my life.
#!/bin/sh
echo "Good bye 2024 you've been a very unique year to me"
echo "I'm looking forward to do the best I can."
exit
@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>