Skip to content

Instantly share code, notes, and snippets.

View emmacv's full-sized avatar
:shipit:
Everything is permitted

Emmanuel Canto Vazquez emmacv

:shipit:
Everything is permitted
View GitHub Profile
@emmacv
emmacv / ClearInputBuff.cpp
Created August 30, 2023 03:36 — forked from leimao/ClearInputBuff.cpp
Clearing input buffer in C++ completely
#include <iostream>
#include <limits>
using namespace std;
int main(){
char var[10];
bool valid = false;
while(!valid){
cout << "Enter a string 9 characters long: ";
@emmacv
emmacv / AdbCommands
Created July 15, 2023 18:44 — forked from ernestkamara/AdbCommands
Adb useful commands list
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
== Shell