Created with <3 with dartpad.dev.
This file contains 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 os | |
import functools | |
import typing | |
Node: typing.TypeAlias = None | dict[str, "Node"] | |
Tree: typing.TypeAlias = dict[str, Node] | |
This file contains 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(const MaterialApp( | |
home: Tela(), | |
)); | |
} | |
class Tela extends StatelessWidget { | |
const Tela({super.key}); |
Created with <3 with dartpad.dev.
Created with <3 with dartpad.dev.
I hereby claim:
- I am enzo-santos on github.
- I am enzosantos (https://keybase.io/enzosantos) on keybase.
- I have a public key whose fingerprint is 14B6 E2D1 64CE 684C 565E 7666 8951 8C8B 0201 9FF0
To claim this, I am signing this object:
This file contains 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' as math; | |
/// Represents a complex number in the form [a] + [b]i. | |
class Complex { | |
/// The origin of the complex plane. | |
static const Complex zero = Complex(0, i: 0); | |
/// The real part of this number. | |
final double a; |
This file contains 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 bs4 | |
import requests | |
from typing import Dict, List | |
class MobileTwitterParser: | |
""" | |
Parses information from the main page of a Twitter account. | |
This parses information based on the mobile version of the Twitter webpage |
NewerOlder