Version: 2.1.1
Platform: x86_64
First, install or update to the latest system software.
sudo apt-get update
sudo apt-get install build-essential chrpath libssl-dev libxft-dev
| from datetime import datetime | |
| from os import system | |
| import requests | |
| import json | |
| ## Please install ffmpeg before running this script and make sure it's in your PATH | |
| ## brew install ffmpeg | |
| ## Please install requests before running this script | |
| ## pip3 install requests |
| import json | |
| import logging | |
| from flask import Flask, g | |
| from flask_oidc import OpenIDConnect | |
| import requests | |
| logging.basicConfig(level=logging.DEBUG) | |
| app = Flask(__name__) |
| def getDate() { | |
| def date = new Date() | |
| def formattedDate = date.format('yyyyMMddHHmmss') | |
| return formattedDate | |
| } | |
| // | |
| import org.gradle.api.tasks.testing.logging.TestExceptionFormat | |
| import org.gradle.api.tasks.testing.logging.TestLogEvent | |
| // | |
| // |
| function myenvs() { | |
| if [[ $# -ne 1 ]]; then | |
| export $(cat .env | xargs) | |
| else | |
| export $(cat $1 | xargs) | |
| fi | |
| } |
| python3 -c "print(' βββββ \n ββββββββββββ ___________________________ \n βββββ ββββββββββ / \ \n ββββββββββ βββ βββ | Do you know comeu bola? | \n βββββββββ ββββββββββ | _____________________________/ \n ββββββ ββββββββββββ |/ \n ββββ βββββ β ββ \n ββββββββββββββββββ βββββββββ \n ββββββββββββββ ββββββ βββ \n ββββββββββββββββββββββββ ββββ \nβ βββββββββββββββββββ \nββββββ ββββββββββββββ \n ββββββββββββ \n βββββββββββββ \n ββββ βββ β \n ββ ββ \n ββββββ βββββββββ \nβ β ββββββ \n βββββ \n\n', end='')" |
| CREATE TABLE Professores ( | |
| matricula int unique, | |
| nome varchar(300) unique not null, | |
| rg int unique not null, | |
| sexo char not null check (sexo in ('m', 'f')), | |
| idade int check (idade >= 21 and idade <= 80), | |
| titulacao varchar(11) check (titulacao in ('graducado', 'especialista', 'mestre', 'doutor')), | |
| categoria varchar(11) check (categoria in ('auxiliar', 'assistente', 'adjunto', 'titular')), | |
| nroTurmas int check (nroTurmas >= 0), | |
| Program Portal ; | |
| uses graph; | |
| Type | |
| // Generic types | |
| position = record | |
| x: integer; | |
| y: integer; | |
| end; | |
| import javax.microedition.midlet.*; | |
| import javax.microedition.lcdui.*; | |
| import java.util.*; | |
| public class Main extends MIDlet { | |
| private Display display; | |
| private Form frmHour; | |
| private StringItem hour; |
| {% extends "baseSemNavbar.html" %} | |
| {% load inputtags %} | |
| {% block title %} | |
| <title>Consultar Colaboradores</title> | |
| {% endblock %} | |
| {% block scripts %} | |
| <script> |