Skip to content
View diegue-exe's full-sized avatar
๐Ÿ˜‡
Workin'
๐Ÿ˜‡
Workin'
  • Biko2
  • Pamplona, Navarra
  • 06:26 (UTC +02:00)
Block or Report

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 junior frontend developer actualmente trabajando en @biko2 ๐Ÿฃ

๐Ÿ•ต๏ธโ€โ™€๏ธ 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

  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