Nesta avaliação, você deverá implementar um sistema simples de gerenciamento de biblioteca utilizando TypeScript e os conceitos de Programação Orientada a Objetos. Crie os arquivos necessários para implementar as classes e interfaces solicitadas, seguindo os requisitos abaixo.
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
{ | |
"success": true, | |
"timestamp": 1674038943, | |
"Abase": "EUR", | |
"date": "2023-01-18", | |
"rates": { | |
"AED": 3.986738, | |
"AFN": 98.049483, | |
"ALL": 117.015434, | |
"AMD": 431.79791, |
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(MaterialApp( | |
debugShowCheckedModeBanner: false, | |
title: "IMCApp", | |
home: MeuApp(), | |
)); | |
} |
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
# -*- coding:utf-8 -*- | |
from flask import Flask, render_template, url_for, request, redirect | |
from flask_sqlalchemy import SQLAlchemy | |
from datetime import datetime | |
app = Flask(__name__) | |
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///crud.db' | |
db = SQLAlchemy(app) |
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
Category | Title | URL | |
---|---|---|---|
Programming | CS50’s Introduction to Game Development from Harvard University | https://www.class-central.com/course/edx-cs50-s-introduction-to-game-development-11504 | |
Programming | CS50’s Mobile App Development with React Native from Harvard University | https://www.class-central.com/course/edx-cs50-s-mobile-app-development-with-react-native-11505 | |
Programming | CS50’s Web Programming with Python and JavaScript from Harvard University | https://www.class-central.com/course/edx-cs50-s-web-programming-with-python-and-javascript-11506 | |
Programming | Functions, Methods, and Interfaces in Go from University of California, Irvine | https://www.class-central.com/course/coursera-functions-methods-and-interfaces-in-go-12050 | |
Programming | Concurrency in Go from University of California, Irvine | https://www.class-central.com/course/coursera-concurrency-in-go-12047 | |
Programming | Getting Started with Go from University of California, Irvine | https://www.class-central.com/course/coursera-getting-started-with-go-1204 |
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
main() { | |
final List<Map<String, dynamic>> menu = [ | |
{"icon": "gradient", "description": "GRADIENTS"}, | |
{"icon": "crop_16_9", "description": "BUTTONS"}, | |
{"icon": "view_agenda", "description": "CARDS"}, | |
{"icon": "view_headline", "description": "MENU"}, | |
{"icon": "style", "description": "TEXT STYLE"}, | |
{"icon": "input", "description": "INPUTS"}, | |
{"icon": "assignment", "description": "FORMS"}, | |
{"icon": "date_range", "description": "DATEPICKER"}, |
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
main() { | |
final List<Map<String, dynamic>> menu = [ | |
{"icon": "gradient", "description": "GRADIENTS"}, | |
{"icon": "crop_16_9", "description": "BUTTONS"}, | |
{"icon": "view_agenda", "description": "CARDS"}, | |
{"icon": "view_headline", "description": "MENU"}, | |
{"icon": "style", "description": "TEXT STYLE"}, | |
{"icon": "input", "description": "INPUTS"}, | |
{"icon": "assignment", "description": "FORMS"}, | |
{"icon": "date_range", "description": "DATEPICKER"}, |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta name="scaffolded-by" content="https://github.com/google/stagehand"> | |
<title>bolo</title> | |
<link rel="stylesheet" href="styles.css"> |
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:async'; | |
import 'dart:html'; | |
Future main() async { | |
try{ | |
final response = await HttpRequest.getString('https://rebounce.online/api/time'); | |
print('Request was successful'); | |
print(response); | |
}catch(error){ | |
print('The request was not successful'); |
NewerOlder