Skip to content

Instantly share code, notes, and snippets.

View Hary309's full-sized avatar
💭
I may be slow to respond.

Piotr Krupa Hary309

💭
I may be slow to respond.
View GitHub Profile
@imaNNeo
imaNNeo / main.darrt
Created December 3, 2021 21:26
PieChart dyanmic radius
import 'package:fl_chart/fl_chart.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@MetGang
MetGang / Stritch-swap-v2.cpp
Created November 24, 2019 21:53
Stritch swap v2
// Stritch swap v2
// Live demo https://godbolt.org/z/gXEqjX
#include <iostream>
#include <type_traits>
#include <tuple>
#include <new>
template <typename T>
concept Trivial = std::is_trivial_v<T>;
@MattPD
MattPD / cpp.std.coroutines.draft.md
Last active March 29, 2024 17:40
C++ links: Coroutines (WIP draft)
@MetGang
MetGang / C++Tricks.md
Last active January 13, 2023 15:41
C++ Tricks