Skip to content

Instantly share code, notes, and snippets.

View Yrds's full-sized avatar
⌨️
Keyboard > mouse

Yuri dos Santos Yrds

⌨️
Keyboard > mouse
View GitHub Profile
const vect = [1, 2, 3, 4, 5, 6, 7, 8];
const evenNumbers = vect.filter(number => number % 2 == 0);
console.log(evenNumbers); //[2, 4, 6, 8]
https://gamepadviewer.com/?p=1&s=5&map={%22mapping%22%3A[{%22targetType%22%3A%22buttons%22%2C%22target%22%3A%222%22%2C%22disabled%22%3Afalse%2C%22choiceType%22%3A%22buttons%22%2C%22choice%22%3A%223%22}%2C{%22targetType%22%3A%22buttons%22%2C%22target%22%3A%223%22%2C%22disabled%22%3Afalse%2C%22choiceType%22%3A%22buttons%22%2C%22choice%22%3A%222%22}%2C{%22targetType%22%3A%22buttons%22%2C%22target%22%3A%2213%22%2C%22disabled%22%3Afalse%2C%22choiceType%22%3A%22axes%22%2C%22choice%22%3A%227%22%2C%22choiceOperand%22%3A%22%2B%22}%2C{%22targetType%22%3A%22buttons%22%2C%22target%22%3A%2214%22%2C%22disabled%22%3Afalse%2C%22choiceType%22%3A%22axes%22%2C%22choice%22%3A%226%22%2C%22choiceOperand%22%3A%22-%22}%2C{%22targetType%22%3A%22buttons%22%2C%22target%22%3A%2215%22%2C%22disabled%22%3Afalse%2C%22choiceType%22%3A%22axes%22%2C%22choice%22%3A%226%22%2C%22choiceOperand%22%3A%22%2B%22}%2C{%22targetType%22%3A%22axes%22%2C%22target%22%3A%222%22%2C%22disabled%22%3Afalse%2C%22choiceType%22%3A%22%22%2C%22positive%22%3A{%22choice
Agent registered
[CHG] Controller 00:1A:7D:DA:71:13 Pairable: yes
[bluetooth]# default-agent
Default agent request successful
[bluetooth]# agent on
Agent is already registered
[bluetooth]# power on
Changing power on succeeded
[CHG] Controller 00:1A:7D:DA:71:13 Powered: yes
[bluetooth]# scan on
@Yrds
Yrds / main.cpp
Created August 27, 2021 21:26
Hello world X11 modern c++
#include <X11/Xlib.h>
#include <unistd.h>
#include <memory>
#include <functional>
int main() {
//initialize Display connection with a smart pointer
auto dpy = std::unique_ptr<Display, std::function<void(Display*)>>(
XOpenDisplay(0), XFlush);