Skip to content
View diegue-exe's full-sized avatar
😇
Workin'
😇
Workin'
  • JAKALA
  • Pamplona, Navarra
  • 00:39 (UTC +02:00)

Block or report diegue-exe

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
diegue-exe/README.md

Hola! Soy Diegue.

Un front-end developer actualmente trabajando en @JAKALA 🐣

🕵️‍♀️ Estos son algunos de los lenguajes, herramientas y metodologías que conozco!

React, React Native, Extreme Programming, Atomic Design, Hexagonal Architecture, Agile, TDD, BDD...

🥰 Me gusta mucho el diseño e intento incorporarlo como puedo en todo lo que hago.

Ponte en contacto conmigo 💌

Tratare de responderte lo antes posible! 😇

Pinned Loading

  1. Compilation of Windows utilities Compilation of Windows utilities
    1
    # Windows utilities
    2
    ## Startup folder location
    3
    ``C:\Users\{username}\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup``
    4
    ## Windows 10 & 11 default environment variables
    5
    | VARIABLE | WINDOWS 10
  2. Delete Windows %temp% files | Batch ... Delete Windows %temp% files | Batch Script
    1
    @echo off
    2
    cd /D %temp%
    3
    for /d %%D in (*) do rd /s /q "%%D"
    4
    del /f /q *
    5
    exit