Skip to content

Instantly share code, notes, and snippets.

anonymous
anonymous / GAME_MASTER_v0_1.protobuf
Created July 16, 2016 16:31
Pokemon Go decoded GAME_MASTER protobuf file v0.1
Result: 1
Items {
TemplateId: "BADGE_BATTLE_ATTACK_WON"
Badge {
BadgeType: BADGE_BATTLE_ATTACK_WON
BadgeRanks: 4
Targets: "\nd\350\007"
}
}
Items {
@dylanPowers
dylanPowers / broadcasted_stdin.dart
Last active August 29, 2015 14:10
Running a process interactively in Dart
library broadcasted_stdin;
import 'dart:async';
import 'dart:io' as io;
class InteractiveProcess {
Future<int> get whenExits => _whenExits;
final BroadcastedStdin _stdin;
Future<int> _whenExits;