Skip to content

Instantly share code, notes, and snippets.

View HenryKun55's full-sized avatar
:octocat:
Aways doing some t h i n g s

Flávio Henrique do Nascimento Andrade HenryKun55

:octocat:
Aways doing some t h i n g s
  • Belo Jardim, PE
  • X @fh_andn
View GitHub Profile
@georgealan
georgealan / react-native-android-studio-no-wsl2.md
Last active April 28, 2025 18:09
React Native no Emulador Android Studio com WSL2

REACT-NATIVE PROJECTS RUN IN WSL2 UBUNTU 22.04 WITH BACKEND API

📆 Article written day: 9/03/2020 📆 Article updated day: 6/18/2022

My System Specs:

  • Microsoft Windows 10 Enterprise Version 21H2 (OS Build 19044.1766)
  • WSL2 - Ubuntu 22.04 LTS
  • Android Studio Version: Chipmunk 2021.2.1 Patch 1
@alexpchin
alexpchin / socket-cheatsheet.js
Created December 15, 2015 16:58
A quick cheatsheet for socket.io
// sending to sender-client only
socket.emit('message', "this is a test");
// sending to all clients, include sender
io.emit('message', "this is a test");
// sending to all clients except sender
socket.broadcast.emit('message', "this is a test");
// sending to all clients in 'game' room(channel) except sender