Skip to content

Instantly share code, notes, and snippets.

View UlisesGascon's full-sized avatar
😎
Focus on FOSS Projects!

Ulises Gascón UlisesGascon

😎
Focus on FOSS Projects!
View GitHub Profile
@UlisesGascon
UlisesGascon / watchPosition_demo.html
Last active November 21, 2015 20:29 — forked from strongwave/watchPosition_demo.html
A Demo Drawing Google Map using watchPosition API for HTML5
<!DOCTYPE html>
<html lang="es">
<head>
<title>Geo_Watch</title>
<meta charset=utf-8>
<style>
#mapa {
width: 400px;
height: 300px;
<!DOCTYPE html>
<html lang="es">
<head>
<title>Demo: Geolocalización</title>
<meta charset="utf-8" />
<style>
#mapa {
width: 100%;
height: 300px;
margin: 0;
<!DOCTYPE html>
<html lang="es">
<head>
<title>Agenda de Contactos en LocalStorage</title>
<meta charset=utf-8>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" integrity="sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ==" crossorigin="anonymous">
<style>
#contenedor {
width: 360px;
}
<!DOCTYPE html>
<html lang="es">
<head>
<title>File HTML5</title>
<meta charset=utf-8>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" integrity="sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ==" crossorigin="anonymous">
<style type="text/css">
#contenedor {
width: 360px;
}
@UlisesGascon
UlisesGascon / package.json
Created November 23, 2015 17:12 — forked from addyosmani/package.json
npm run-scripts boilerplate
{
"name": "my-app",
"version": "1.0.0",
"description": "My test app",
"main": "src/js/index.js",
"scripts": {
"jshint:dist": "jshint src/js/*.js'",
"jshint": "npm run jshint:dist",
"jscs": "jscs src/*.js",
"browserify": "browserify -s Validating -o ./dist/js/build.js ./lib/index.js",
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>Llegando a Fictizia desde el Metro</title>
<style>
html, body {
height: 100%;
margin: 0;
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>Llegando a Fictizia desde tu posición</title>
<style>
html,
body {
<!DOCTYPE html>
<html lang="es">
<head>
<title>Agenda Avanzada de Contactos en LocalStorage</title>
<meta charset=utf-8>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" integrity="sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ==" crossorigin="anonymous">
<style>
#contenedor {
width: 420px;
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Título</title>
</head>
<body>
</body>
</html>
@UlisesGascon
UlisesGascon / ArduinoCompatibleEnOSX.md
Created February 8, 2016 15:04
Como dar soporte a los Arduinos compatibles que no van correctamente firmados en OS X
  • Reinicia la maquina y presiona CMD+R para entrar en Recovery Mode
  • Abre la terminal
  • Ejecuta este código para eliminar las restricciones sobre la firma de dispositivos USB.
csrutil enable --without kext
  • Reinicia y arranca normalmente.