This tutorial will teach you how to deploy a Python 3.8-based Cloud Function using GitLab CI.
If you encounter a variable you don't recognize while reading, take a look here.
Variable name | Description |
---|
import kotlin.math.* | |
/** | |
* Returns [num] evenly spaced samples, calculated over the interval [0, [max]]. | |
*/ | |
fun linspace(num: Int, max: Double): DoubleArray | |
= DoubleArray(num) { it * max / (num - 1.0) } | |
/** | |
* Returns a sequence of numbers starting from [start], incrementing by [stop] and stopping before [stop]. |
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 |
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; |
I hereby claim:
To claim this, I am signing this object:
Created with <3 with dartpad.dev.
Created with <3 with dartpad.dev.
Created with <3 with dartpad.dev.
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(const MaterialApp( | |
home: Tela(), | |
)); | |
} | |
class Tela extends StatelessWidget { | |
const Tela({super.key}); |