TAKINAS SITE
Or maybe poteito/baadf00b whatevs
hi i do silly things
My [OpenPGP] (FB03 576C BBA4 BC06) fingerprint: FA40271CE6E2FA1C68DF1EA5FB03576CBBA4BC06
My hobbies
- Breathing
- Maybe math
- Maybe computer thing
- Cats
- [Yarn]
My cool projects
- [ml.c] (unfinished) Simple ML framework I made in like 3 sitting
- [teo] Programming language designed for kids. (not really) powerful.
- [chocolate] Small assembly-like VM. (mainly for building abstraction on top)
Blogs
My social thing that is not really social
Quick copy
- C++ template (courtesy of [aryansh] quickest IO library and [nor's blog] )
(I don't use that much of pr & re, but when i do it is quite useful)#include "bits/stdc++.h"

using namespace std;

using str=string;
using ll = int64_t;
using ull = uint64_t;
using ld = long double;
using vi=vector<int>;
using vll=vector<ll>;
using pii=pair<int,int>;

#define m1(x) template<class T, class... U> void x(T&& a, U&&... b) 
#define m2(x) (int[]){(x forward<U>(b),0)...}
m1(pr) { cout << forward<T>(a); m2(cout << " " <<); cout << "\n"; } 
m1(re) { cin >> forward<T>(a); m2(cin >>); }
template<typename A, typename B> ostream& operator<<(ostream &os, const pair<A, B> &p) { return os << '(' << p.first << ", " << p.second << ')'; }

#ifdef DEBUG
#define dbg(x) x
#else
#define dbg(x) 0;
#endif

void solve() {
}

int main() {
 cin.tie(nullptr)->sync_with_stdio(false);
 // cout << setprecision(20) << fixed;
#ifdef DEBUG
 int _tests = 1;
 cin >> _tests;
 for (int _test = 1; _test <= _tests; ++_test) {
 cout << "Case #" << _test << ": ";
#endif
		solve();
#ifdef DEBUG
		cout<<'\n';
 }
#endif
}