A Pen by Jose Estrada on CodePen.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const littleToBigEndian = (data) => | |
data | |
.slice(0, 8) | |
.match(/.{1,2}/g) | |
.reverse() | |
.join(""); | |
const bigEndian = (data) => | |
data.map((fourBytes) => | |
fourBytes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin box-shadow($top, $left, $blur, $color, $inset: false) { | |
@if $inset { | |
-webkit-box-shadow:inset $top $left $blur $color; | |
-moz-box-shadow:inset $top $left $blur $color; | |
box-shadow:inset $top $left $blur $color; | |
} @else { | |
-webkit-box-shadow: $top $left $blur $color; | |
-moz-box-shadow: $top $left $blur $color; | |
box-shadow: $top $left $blur $color; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="es"> | |
<head> | |
<meta name="autor" content="Jose Estrada"> | |
<meta name="description" content="Lista de colonias de Hermosillo"> | |
<meta name="keywords" content="lista, colonias, hermosillo"> | |
<meta charset="UTF-8"> | |
<title>Colonias de Hermosillo</title> | |
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="es"> | |
<head> | |
<meta name="autor" content="Jose Estrada"> | |
<meta name="description" content="Lista de municipio del Estado de Sonora"> | |
<meta name="keywords" content="lista, municipios, sonora"> | |
<meta charset="UTF-8"> | |
<title>Municipios del Estado de Sonora</title> | |
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="es"> | |
<head> | |
<meta name="autor" content="Jose Estrada"> | |
<meta name="description" content="Lista de estados de la República Mexicana"> | |
<meta name="keywords" content="lista, estados, mexico"> | |
<meta charset="UTF-8"> | |
<title>Estados de la República Mexicana</title> | |
</head> |