Skip to content

Instantly share code, notes, and snippets.

View Bujupah's full-sized avatar
♟️
𝐅𝐫𝐞𝐞 𝐏𝐚𝐥𝐞𝐬𝐭𝐢𝐧𝐞 🇵🇸🇵🇸

Khalil Mejdi Bujupah

♟️
𝐅𝐫𝐞𝐞 𝐏𝐚𝐥𝐞𝐬𝐭𝐢𝐧𝐞 🇵🇸🇵🇸
  • Tunisia, TN
View GitHub Profile
@Bujupah
Bujupah / singleton.dart
Last active October 14, 2020 18:10
Using Dart's factory constructor to implement the singleton pattern
class MySingleton {
String var1;
int var2;
static MySingleton _instance;
factory MySingleton({String var1, int var2}) {
_instance == null
? print('New instance!')
: print('Old instance!');
@svet-b
svet-b / bigdashboard_output.pdf
Last active June 13, 2024 08:43
PDF export of Grafana dashboard using puppeteer
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.