Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am skybrian on github.
  • I am skybrian (https://keybase.io/skybrian) on keybase.
  • I have a public key ASDuNo6oD_oqwbWJcDOXYhWqFDLFXrGC7pMYbT76N-lIngo

To claim this, I am signing this object:

@skybrian
skybrian / main.dart
Last active March 2, 2020 04:01
Hello, Flutter World
import 'package:flutter/material.dart';
void main() => runApp(App());
class App extends StatelessWidget {
@override
Widget build(BuildContext ctx) {
return MaterialApp(home: new Home());
}
}
@skybrian
skybrian / attempt1.txt
Last active July 27, 2020 21:12
GPT3 (AI Dungeon) on the Titanic
Prompt:
Q: Who was president in 1982?
A: Ronald Reagan.
Q: What does "Jongleur" mean?
A: "Jongleur" is a French word meaning "Juggler".
Q: Who is Bilbo Baggins?
A: He is a fictional character in the book "The Hobbit". He is a hobbit who goes on a quest to defeat a dragon.
@skybrian
skybrian / html_piano_keyboard.md
Created March 26, 2023 03:57
ChatGPT session to build an HTML Piano Keyboard

Model: GPT4

Could you write HTML to draw 12 rectangles horizontally, representing a piano keyboard? The cells should have a different CSS class for white notes and black notes.

To create a piano keyboard with 12 rectangles horizontally, you can use HTML and CSS. Here's a simple example:

<!DOCTYPE html>
<html lang="en">
<head>