Skip to content

Instantly share code, notes, and snippets.

View ErrorPro's full-sized avatar
🎯
Focused

Ven Korolev ErrorPro

🎯
Focused
  • Amsterdam
View GitHub Profile
@teocci
teocci / MultipleDevicesOverTCP.md
Last active November 8, 2025 21:40
How to connect multiple Android devices with ADB over TCP

#How to connect multiple Android devices with ADB over TCP

From your device, if it is rooted

According to a post on xda-developers, you can enable ADB over Wi-Fi from the device with the commands:

su
setprop service.adb.tcp.port 5555
stop adbd
start adbd
@steveluscher
steveluscher / graphql-js-migration-guide.md
Last active September 26, 2016 13:01
GraphQL 0.6.0 migration guide

GraphQL 0.6.0 migration guide

This version of graphql-js introduces a breaking change to the method signature of the resolve() method.

Previously, resolve() had this method signature:

type GraphQLResolveInfo = {
  fieldName: string,
 fieldASTs: Array,