Basic IP information command for WSL
sudo curl https://gist.githubusercontent.com/Muaath5/85022d0063b9842826e43cd9660271f2/raw/0530d123056d30a3c0b25fef8a2ed62390d7403e/ipconfig > ipconfig
sudo chmod +x ./ipconfig
sudo mv ./ipconfig /usr/bin/local
// Copyright 2022 - Muaath Alqarni | |
#define _CRT_NO_DEPRECATE | |
#include <iostream> | |
#include <vector> | |
#define endl '\n'; | |
#define fast std::ios::sync_with_stdio(0),cin.tie(0),cout.tie(0); | |
using std::cin; | |
using std::cout; |
// Copyright 2022 | |
// Written by: mdubaisi, Muaath_5 | |
// A C++ console app to play chess with a friend offline | |
#include <bits/stdc++.h> | |
#define endl '\n' | |
#define E8 Pos('E', 8) | |
#define E1 Pos('E', 1) |
using System; | |
using System.Threading.Tasks; | |
using Telegram.Bot; | |
using Telegram.Bot.Args; | |
using Telegram.Bot.Types; | |
using Telegram.Bot.Types.Enums; | |
namespace ConsoleTgBot | |
{ | |
static class Program |