Skip to content

Instantly share code, notes, and snippets.

View santiblanko's full-sized avatar
🎯
Focusing

santiblanko santiblanko

🎯
Focusing
View GitHub Profile
Dios es mi Padre.
La Naturaleza es mi Madre.
La Tierra es mi Hogar.
El Universo es mi Morada.
El Mundo es mi Patria.
La Selva es mi Templo.
El Vecino es mi Hermano.
El Enemigo es mi Maestro.
El Silencio es mi Guía.
La Disciplina es mi Aprender a Vivir.
If you need support or need help with the plugin contact with santiago.blanco@meltstudio.co
Privacy Policy
Effective date: April 20, 2021
This page informs you of our policies regarding the collection, use, and disclosure of personal data when you use our Service and the choices you have associated with that data.
We use your data to provide and improve the Service. By using the Service, you agree to the collection and use of information in accordance with this policy. Unless otherwise defined in this Privacy Policy, terms used in this Privacy Policy have the same meanings as in our Terms and Conditions.
Information Collection And Use
We collect several different types of information for various purposes to provide and improve our Service to you.
9:48 p.m.
apiVersion: v1
kind: Service
metadata:
name: frontend-shape-service
spec:
ports:
- port: 80
targetPort: 3000
selector:
<template>
<div>
<div class="content">
<div class="row mt-4">
<div class="col-md-12">
<div class="row mt-3">
<div class="col-md-4 offset-md-4">
<div class="block block-fx-pop">
<div class="block-content">
<div class="form-group" v-if="error">
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
import router from './router'
Vue.config.productionTip = true
Vue.router = router
import ElementUI from 'element-ui';
@santiblanko
santiblanko / temp_hum_fuzzifier_example.py
Created March 30, 2019 22:03 — forked from mvidalgarcia/temp_hum_fuzzifier_example.py
Example of fuzzy logic with skfuzzy library
import numpy as np
import skfuzzy as fuzz
CURRENT_TEMP = 15
CURRENT_HUM = 50
x_temp = np.arange(-20, 41, 1)
x_hum = np.arange(0, 101, 1)
x_sys = np.arange(12, 36, 1)
@santiblanko
santiblanko / gist:d6bd03dc95b7b9919c7c0aa211a20e90
Created February 7, 2019 01:35
DOCKER + AWS + GEOSERVER + BEANSTALK
{
"AWSEBDockerrunVersion": "1",
"Image": {
"Name": "kartoza/geoserver"
},
"Ports": [
{
"ContainerPort": "8080",
"HostPort": "80"
}