CCCamilo Camachoincambutnotnewton.hashnode.dev·Nov 2, 2021 · 1 min readComo instalar Google Chrome en un Windows Server por consolaPasos: Copiar$LocalTempDir = $env:TEMP; $ChromeInstaller = "ChromeInstaller.exe"; (new-object System.Net.WebClient).DownloadFile('http://dl.google.com/chrome/install/375.126/chrome_installer.exe', "$LocalTempDir\$ChromeInstaller"); & "$LocalTempD...00
CCCamilo Camachoincambutnotnewton.hashnode.dev·Sep 23, 2021 · 1 min readEnable className completion VScode in 5 stepsGo to settings Go to emmet under the Extensions section. Click on 'Edit in settings.json'. Write the following inside the 'emmet.includeLanguages' tag. Otherwise, paste the whole statement. "emmet.includeLanguages": { "javascript":"javascriptreact" }...00
CCCamilo Camachoincambutnotnewton.hashnode.dev·Mar 30, 2021 · 2 min readNative vs Web vs Hybrid applicationsNative application The native application is developed and optimized specifically for the specific operating system and development platform of the manufacturer (Android, iOS, etc). This type of application is 100% adapted to the functionalities and ...00
CCCamilo Camachoincambutnotnewton.hashnode.dev·Mar 24, 2021 · 4 min readWeb scraping con python y cargar datos a firebaseasumiendo que previamente tienen instalado python3 en su equipo... comencemos Creamos un entorno virtual (virtual enviroment) en consola(terminal): python3 -m venv nombre_carpeta Activamos el entorno virtual (virtual enviroment) source nombre_carp...00
CCCamilo Camachoincambutnotnewton.hashnode.dev·Mar 7, 2021 · 10 min readCreating an App using AR and SwiftIn this tutorial, we will learn the necessary AR tools and techniques in Swift that will allow us to create an application that decorates your floor with some wood textured tiles. The final application will look like this: Let start. Step 1- Creatin...00