Once you have set up your prompt sections and custom segment in your zshrc, you then need to set Powerlevel9k to use Nerd Fonts and load the theme’s script.
POWERLEVEL9K_MODE='nerdfont-complete'
source ~/powerlevel9k/powerlevel9k.zsh-theme
import requests | |
import sqlite3 | |
from bs4 import BeautifulSoup | |
from requests_toolbelt.multipart.encoder import MultipartEncoder | |
CONN = sqlite3.connect('personas.db') | |
c = CONN.cursor() | |
c.execute(''' | |
CREATE TABLE IF NOT EXISTS personas ( | |
id INTEGER PRIMARY KEY AUTOINCREMENT, |
{ | |
"id": "64c1c7fdeff5f9367ba206f7", | |
"nodeId": "ari:cloud:trello::board/workspace/60c9a5d184f9ce7f7be5fe1b/64c1c7fdeff5f9367ba206f7", | |
"name": "Tesis", | |
"desc": "", | |
"descData": null, | |
"closed": false, | |
"dateClosed": null, | |
"idOrganization": "60c9a5d184f9ce7f7be5fe1b", | |
"idEnterprise": null, |
<!DOCTYPE html> | |
<html lang="es"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Lo sentimos, esta página no se encuentra disponible</title> | |
<link rel="preconnect" href="https://fonts.googleapis.com"> | |
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap" rel="stylesheet"> | |
</head> | |
<style> |
import ftplib | |
import time | |
USER = 'xxx' | |
PASSWORD = 'xxx' | |
HOST = '207.38.86.xx' | |
ROUTE = 'temporal' | |
def ftp_connect(HOST, USER, PASSWORD, ROUTE): |
import ftplib | |
try: | |
from credentials import USER, PASSWORD, HOST, ROUTE | |
except ModuleNotFoundError: | |
USER = 'xxx' | |
PASSWORD = 'xxx' | |
HOST = '207.38.86.xx' | |
ROUTE = 'temporal' |
import ftplib | |
import csv | |
import pandas as pd | |
from credentials import ( | |
HOST, | |
USER, | |
PASSWORD, | |
ROUTE | |
) |
A cheat-sheet for creating web apps with the Django framework using the Python language. Most of the summaries and examples are based on the official documentation for Django v2.0.
No debería tomar más de 5 min en hacer estos ejercicios (Puedes usar cronómetro, e ir viendo resultados)
Construye una lista que contenga tramos horarios, en intervalos de 30 min. Que empiece a las 8 am y termine a las 8pm O sea un cuadro con un bloque que empiece a las 8, luego 8.30, 9, 9 30.. así hasta las 8pm La empresa tiene disponibilidad de 8 motociclistas cada 30 min Cuando alguien haga click sobre una de estas cajitas debería tomar un recurso de motociclista O sea un contador que empiece en 8 y luego baje a 7, a demás de marcar la caja en verde Si el mismo usuario da click en la misma caja, debe liberar el recurso, si se encontraba en verde, debe liberar el recurso,