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:async'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter/services.dart'; | |
class TextCursor extends StatefulWidget { | |
const TextCursor({Key? key, | |
this.duration = const Duration(milliseconds: 500), | |
this.resumed = false, |
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
from MySQLdb import _mysql | |
from tensorflow import keras | |
from tensorflow.keras import layers, losses | |
from tensorflow.keras.models import Model | |
import numpy as np | |
import tensorflow as tf | |
import random | |
mysql_host = 'host' |
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 math | |
import matplotlib.pyplot as plt | |
from matplotlib.lines import Line2D | |
from matplotlib.patches import Arc | |
def get_angle_plot(line1, line2, offset=1, color=None, origin=(0, 0), len_x_axis = 1, len_y_axis = 1): |