Skip to content

Instantly share code, notes, and snippets.

View jesusdsg's full-sized avatar
🏠
Working from home

Jesus Salcedo jesusdsg

🏠
Working from home
View GitHub Profile
@nicobytes
nicobytes / 58-markers-maps-ionic.md
Last active May 31, 2023 01:51
Multiples markers ionic google maps

1 Add SDK Google Maps

<script src="https://maps.googleapis.com/maps/api/js?key=KEY"></script>

2 Create div in html and declare

declare var google;

Aligning images

This is a guide for aligning images.

See the full Advanced Markdown doc for more tips and tricks

left alignment

@fmagrosoto
fmagrosoto / OrdenarJSONconJS.html
Last active June 25, 2024 16:22
Ordenar JSON por medio del valor de una de sus propiedades. La propiedad es pasada como parámetro.
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Ordena JSON</title>
<meta name="description" content="Ordenar un JSON en Javascript">
<meta name="author" content="Fernando Magrosoto V.">
<style>
body {
background-color: white;
@janily
janily / Breakpoints
Created January 16, 2014 11:36
Mobile-first CSS Media Queries Breakpoints
@media (min-width:320px) { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */ }
@media (min-width:480px) { /* smartphones, Android phones, landscape iPhone */ }
@media (min-width:600px) { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */ }
@media (min-width:801px) { /* tablet, landscape iPad, lo-res laptops ands desktops */ }
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */ }
@media (min-width:1281px) { /* hi-res laptops and desktops */ }