Skip to content

Instantly share code, notes, and snippets.

View ajunquit's full-sized avatar
馃彔
Working from home

Alejandro Junqui ajunquit

馃彔
Working from home
  • Alejandro Junqui
  • Ecuador
  • 13:32 (UTC -05:00)
  • LinkedIn in/ajunquit
View GitHub Profile
@ajunquit
ajunquit / cap8-ex1.js
Created October 28, 2023 12:04
Cap 8. Consuming the REST API with React: Exercise 1 - Weather API
import logo from './logo.svg';
import './App.css';
import React, { useState } from 'react';
function App() {
const [temp, setTemp] = useState('');
const [desc, setDesc] = useState('');
const [icon, setIcon] = useState('');
const [isReady, setReady] = useState(false);
@ajunquit
ajunquit / cap7-multiples-exercises.js
Last active October 28, 2023 12:05
Cap 7. Getting Started with React
-- ejercicio 1 useState (update counter separately)
import { useState } from 'react';
export default function MyApp() {
return (
<div>
<h1>Counters that update separately</h1>
<MyButton />
<MyButton />

Buscar articulo "Implementaci贸n de Office LTSC 2021"

1.- Descargar la herramienta de implementaci贸n de Office desde el Centro de descarga de Microsoft.

Escoger el archivo de la version Enterprise 2021 Archivo: configure.xml

<Configuration>

  <Add OfficeClientEdition="64" Channel="PerpetualVL2021">
 
@ajunquit
ajunquit / react-ionic.md
Last active August 30, 2023 03:15
Steps to create a project with react and ionic

Install the last version stable (L: Long T: Term S: Support) of nodejs.

Go to URL => https://nodejs.org/es

Then run the file downloaded.

After the installation check the version with the command.

_ node -v

Install ionic client in local machine.

>_ npm install -g @ionic/cli