Skip to content

Instantly share code, notes, and snippets.

View ElenaMLopez's full-sized avatar

Elena Mateos López ElenaMLopez

View GitHub Profile
@ElenaMLopez
ElenaMLopez / .gitignore
Created January 2, 2023 11:10 — forked from Akhu/.gitignore
Xcode 12 + Swift UI Gitignore
# Created by https://www.toptal.com/developers/gitignore/api/swiftpackagemanager,swift,xcode,macos
# Edit at https://www.toptal.com/developers/gitignore?templates=swiftpackagemanager,swift,xcode,macos
### macOS ###
# General
.DS_Store
.AppleDouble
.LSOverride
@ElenaMLopez
ElenaMLopez / CustomNavigationLink.swift
Created August 8, 2022 14:50 — forked from Arutyun2312/CustomNavigationLink.swift
IOS 14 NavigationLink Pop Bug Fix, using custom NavigationLink.
@ElenaMLopez
ElenaMLopez / CustomNavigationLink.swift
Created August 8, 2022 14:50 — forked from Arutyun2312/CustomNavigationLink.swift
IOS 14 NavigationLink Pop Bug Fix, using custom NavigationLink.
@ElenaMLopez
ElenaMLopez / ssh_in_mac.md
Created September 15, 2020 10:32
Configure your ssh in Mac Catalina
    1  ls -al ~/.ssh
    2  ls ~/.ssh
    3  cat known-host
    4  cd known-host
    5  clear
    6  ssh-keygen -t rsa -b 4096 -C <your.email@example.com>
    7  eval "$(ssh-agent -s)"
    8  open ~/.ssh/config
 9 touch ~/.ssh/config
@ElenaMLopez
ElenaMLopez / para_katas.md
Created February 20, 2019 10:10
Ejerciccios para katas de NodeGirls

Create a function batches that returns the maximum number of whole batches that can be cooked from a recipe.

/**
It accepts two objects as arguments: the first object is the recipe
for the food, while the second object is the available ingredients.
Each ingredient's value is number representing how many units there are.

`batches(recipe, available)`
*/
@ElenaMLopez
ElenaMLopez / index.html
Created February 11, 2019 09:28
Ejercicio del curos de JS avanzado de Fictizia
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<main>
@ElenaMLopez
ElenaMLopez / mediaqueries.md
Created October 7, 2018 08:04
Mediaquieries típicas

Mediaqueries tipicas a fecha del 2018:

/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
/* Styles */
}

/* Smartphones (landscape) ----------- */
@media only screen and (min-width : 321px) {
/* Styles */
@ElenaMLopez
ElenaMLopez / extensiones_vcode.md
Last active November 21, 2018 11:58
Lista de extensiones molonas para VCode
@ElenaMLopez
ElenaMLopez / DOCKER.md
Last active September 21, 2019 08:45 — forked from mrcodedev/DOCKER.md
Docker: installation and use

DOCKER: INSTALACIÓN Y USO

Vamos a empezar viendo primero que diferencias hay entre las máquinas virtuales y los contenedores de Docker, para ver porque son mejores los contenedores.

Virtual Machines Vs Containers

Virtual Machines

Es un sistema operativo completo, funcionando de manera aislada sobre otro sistema operativo completo. La tecnología de VMs permite compartir el hardware de modo que lo puedan utilizar varios sistemas operativos al mismo tiempo.