This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Monster {} | |
class Slime extends Monster {} | |
class Wolf extends Monster {} | |
final w = Wolf(); | |
void main() { | |
print([Slime, Wolf].any((Type t) => w is t)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:math'; | |
class PassphraseSet { | |
List<String> choices; | |
num index; | |
PassphraseSet({required this.choices, required this.index}); | |
@override | |
String toString() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(context) { | |
return MaterialApp( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
final Color darkBlue = Color.fromARGB(255, 18, 32, 47); | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
@override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
final Color darkBlue = Color.fromARGB(255, 18, 32, 47); | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
@override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
final Color darkBlue = Color.fromARGB(255, 18, 32, 47); | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
@override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
final Color darkBlue = Color.fromARGB(255, 18, 32, 47); | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
@override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{"name": "Refurbish the old bus"}, | |
{"name": "1 or more Golden Tools"}, | |
{"name": "Glittering Bundle Remove"}, | |
{"name": "Rebuild the bridge to the quarry"}, | |
{"name": "Dance with a date at the Flower Dance"}, | |
{"name": "Reach level 40 in the mines"}, | |
{"name": "Reach level 60 in the mines"}, | |
{"name": "5 Heart Relationship"}, | |
{"name": "Dunk the Mayor's short in the communal soup"}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker image rm -f github-api:v1 | |
docker build . --file dev.dockerfile --tag github-api:v1 | |
docker run -v ~/Projects/github-api:/usr/src/app -it github-api:v1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{"name": "Absorb a dragon's soul"}, | |
{"name": "Return the golden claw to its rightful owner"}, | |
{"name": "Non-combat skill to level 40"}, | |
{"name": "Forge a greatsword and use it to kill an enemy"}, | |
{"name": "Obtain a dragon mask"}, | |
{"name": "Walk/Run/Ride from Whiterun to Solitude (or vice versa)"}, | |
{"name": "Serve your sentence in jail"}, | |
{"name": "Break out of jail"}, | |
{"name": "Kill an enemy after landing a ranged atack, a melee attack, and casting a spell on them."}, |
NewerOlder