#Make-A-Twitter-Bot Workshop
Session led by Allison Parrish
##Some of my bots
- Power Vocab Tweet (markov chains)
- Library of Emoji (context-free grammars)
- Egress Methods (CMU pronouncing dictionary)
- Eventually Bot
import 'dart:math'; | |
/// Block Party Technical Exercise using Dart | |
/// By Ross Llewallyn | |
/// Completed in about 45 minutes | |
/// | |
/// Run (assuming you have Dart on your machine) using: `dart maxPairTest.dart` | |
/// Run on DartPad here: https://dartpad.dev/?id=c85169d3058f229a27edc250a063fecc | |
/// GitHub Gist here: https://gist.github.com/EnduringBeta/c85169d3058f229a27edc250a063fecc |
import 'dart:math'; | |
import 'package:flutter/material.dart'; | |
@immutable | |
class ExpandableFab extends StatefulWidget { | |
const ExpandableFab({ | |
super.key, | |
this.initialOpen, | |
this.distance, |
#Make-A-Twitter-Bot Workshop
Session led by Allison Parrish
##Some of my bots