spanish

Registro 002 - Organizando el Código: Clean Architecture en Acción para tu Proyecto Flutter

Registro 002 - Organizando el Código: Clean Architecture en Acción para tu Proyecto Flutter

Como hemos visto luego de planear ya podemos comenzar escribir nuestro codigo, y si bien no quisiera entrar en temas muy iniciales de flutter y demas, si podemos obviar algunas cosas que necesitamos para comenzar: Prerequisitos Comenzaremos con que es importante tener Flutter instalado y Android Studio, entre otros pasos que puedes revisar aquí, primeramente para crear nuestro proyecto: flutter create {nombre de directorio} --project-name {nombre de nuestro app} Enter fullscreen mode Exit fullscreen mode Luego agregaremos las librerias que utilizaremos en nuestro proyecto: flutter pub add supabase_flutter bloc flutter_bloc dartz get_it dio flutter_gen google_fonts error_stack cached_network_image equatable flutter_dotenv flutter_screenutil…
Read More
New York’s flood warning drones screamed at residents in ‘incomprehensible’ Spanish

New York’s flood warning drones screamed at residents in ‘incomprehensible’ Spanish

New York City has implemented a new drone warning system to alert residents to hazardous weather conditions. Unfortunately, the drones need to work on their Spanish.A resident spotted one of the new drones issuing a flood warning on Wednesday to NYC neighborhoods in English and Spanish, but the Spanish words that came out of the drones were “incomprehensible,” according to a resident who shared .As a Spanish speaker, I can confidently say that this is incomprehensible. The city couldn’t find a single person who spoke Spanish to deliver this alert? https://t.co/uI9ERCuDmV— Josefa Velásquez (@J__Velasquez) August 6, 2024The drones had no…
Read More
Creando un Tetris con JavaScript IV: canvas

Creando un Tetris con JavaScript IV: canvas

Introducción En esta nueva entrega de la serie, veremos cómo mostrar el tablero y la pieza que está bajando en ese momento en pantalla. Para ello, tendremos que dibujarlo en el navegador, y la opción que tenemos para hacerlo es el elemento Canvas de HTML. class Canvas { static SEPARATION = 2; #_painting = false; #_element = null; #_board = null; #_piece = null; constructor(element, board) { element.width = 5 + ( board.cols * Board.PIXEL_SIZE ); element.height = 5 + ( board.rows * Board.PIXEL_SIZE ); this._board = board; this._element = element; } // más cosas... } Enter fullscreen mode Exit…
Read More
No widgets found. Go to Widget page and add the widget in Offcanvas Sidebar Widget Area.