Skip to content

Instantly share code, notes, and snippets.

View estebanrfp's full-sized avatar
🎯
learning ...

Esteban Fuster Pozzi estebanrfp

🎯
learning ...
View GitHub Profile
@estebanrfp
estebanrfp / ground1.json
Last active December 24, 2021 09:31
terrain
{
"tags": null,
"ignoreAlpha": false,
"maxSimultaneousLights": 4,
"mode": 0,
"id": "node",
"name": "node",
"checkReadyOnEveryCall": false,
"checkReadyOnlyOnce": false,
"state": "",
@estebanrfp
estebanrfp / index.html
Created July 4, 2020 23:02
JS Bin [add your bin description] // source https://jsbin.com/zotiyuk
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="[add your bin description]">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<script src="https://cdn.jsdelivr.net/npm/gun/gun.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gun/lib/upload.js"></script>
</head>
@estebanrfp
estebanrfp / menu-json-en.json
Last active June 14, 2020 01:39
gun.eco json menu
{
"navigation": [
{
"Getting Started": "/docs/",
"pages": [
{ "Introduction": "/docs/Introduction",
"pages": [
{ "Offline-First": "/docs/Introduction#offline-first" },
{ "Distributed": "/docs/Introduction#distributed" }
]
@estebanrfp
estebanrfp / spanish.js
Last active May 28, 2020 16:18
spanish.js
export default {
"es": {
language_name: "Spanish",
iris_messenger: "Iris Messenger",
whats_your_name: "¿Cuál es tu nombre?",
new_user_go: "Ir",
already_have_an_account: "¿Ya tienes una cuenta?",
back: "volver",
scan_private_key_qr_code: "Escanee el código QR de clave privada",
paste_private_key: "Pegar una clave privada",
@estebanrfp
estebanrfp / esnextbin.md
Created February 1, 2019 05:05
esnextbin sketch
@estebanrfp
estebanrfp / cloudSettings
Last active August 21, 2018 08:50
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-08-21T08:50:25.661Z","extensionVersion":"v3.0.0"}
@estebanrfp
estebanrfp / index.pug
Created July 7, 2018 11:48
Simple forms
//mixin for selects
mixin select(selectId, options)
select(id=selectId class="form-field")
each obj in options
option(value= obj) ${obj}
//mixin for checkboxes
mixin checkbox(text, name)
div.form-field
input(class="checkbox" type= "checkbox", id= name, name= name)
@estebanrfp
estebanrfp / index.html
Created April 5, 2018 23:40 — forked from giodamelio/index.html
IPFS Simple Static Site
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello IPFS!</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<h1>Hello IPFS!</h1>
</body>
@estebanrfp
estebanrfp / IndexedDB101.js
Created March 23, 2018 00:33 — forked from JamesMessinger/IndexedDB101.js
Very Simple IndexedDB Example
// This works on all devices/browsers, and uses IndexedDBShim as a final fallback
var indexedDB = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB || window.shimIndexedDB;
// Open (or create) the database
var open = indexedDB.open("MyDatabase", 1);
// Create the schema
open.onupgradeneeded = function() {
var db = open.result;
var store = db.createObjectStore("MyObjectStore", {keyPath: "id"});
@estebanrfp
estebanrfp / IndexedDB101.js
Created March 23, 2018 00:33 — forked from JamesMessinger/IndexedDB101.js
Very Simple IndexedDB Example
// This works on all devices/browsers, and uses IndexedDBShim as a final fallback
var indexedDB = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB || window.shimIndexedDB;
// Open (or create) the database
var open = indexedDB.open("MyDatabase", 1);
// Create the schema
open.onupgradeneeded = function() {
var db = open.result;
var store = db.createObjectStore("MyObjectStore", {keyPath: "id"});