Skip to content

Instantly share code, notes, and snippets.

@demonio
demonio / dropimage.css
Last active November 24, 2020 13:28
Arrastra una imagen al label con el input[type="file"] y el js hará una cargar previa... :P
.dropimage {
position: relative;
border: 4px dashed grey;
min-height: 150px;
}
.dropimage:after {
color: grey;
content: "Drop image";
font-size: 30px;
@demonio
demonio / tags.css
Created April 17, 2020 19:03
Crea etiquetas que parecen etiquetas con solo añadir la clase tag a un enlace.
.tag:before {
border-top: 10px solid transparent;
border-right: 8px solid #767676;
border-bottom: 10px solid transparent;
content: "";
height: 0;
position: absolute;
top: 0;
left: -8px;
@demonio
demonio / partidas.php
Created March 10, 2020 10:47
Una forma simple de listar eventos de partidas.
<?php
$url_partidas = '';
$json = file_get_contents($url_partidas);
$a = json_decode($json);
#echo '<pre>' . print_r($a, 1) . '</pre>';
?><!DOCTYPE html>
<html>
<title>Partidas NETCON</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
@demonio
demonio / parrilla.php
Created March 10, 2020 10:44
Una forma de ver los eventos de partidas y charlas en modo parrilla.
<?php
$url_partidas = '';
$url_charlas = '';
$json = file_get_contents($url_partidas);
$partidas = json_decode($json);
#echo '<pre>' . print_r($a, 1) . '</pre>';
$json = file_get_contents($url_charlas);
$charlas = json_decode($json);
foreach ($charlas as $charla) {
@demonio
demonio / link_anti_bot.html
Last active December 15, 2018 10:41
Una medida para restringir el acceso a los bots a enlaces sensibles
@demonio
demonio / default.phtml
Created July 23, 2017 22:37
Sockets para KumbiaPHP
<!DOCTYPE html>
<html id="important">
<head>
<link href="/css/material-icons.css" rel="stylesheet">
<link href="/css/materialize.min.css" rel="stylesheet">
<link href="/css/hacks.css" rel="stylesheet">
<link href="/css/helpers.css" rel="stylesheet">
<link href="/css/style.css" rel="stylesheet">
<?=Css::inc()?>
@demonio
demonio / index.phtml
Created February 26, 2017 12:15
METODO ANTI-SPAM DE CAMPO OCULTO
<h1>Configure su página Web</h1>
<h2>Solicite un presupuesto sin compromiso</h2>
<p>Escoja el producto que más se adecue a sus necesidades y un experto se pondrá en contacto son usted para definir los detalles y empezar a trabajar. No espere un día más para lanzar su proyecto y hacerse visible.</p>
<form action="/index/contact" method="post">
<select class="span1" name="web">
<option value="1">1.0</option>
<option value="1_5">1.5</option>
<option value="2">2.0</option>
<option value="3">3.0</option>
@demonio
demonio / kuwy.css
Last active July 5, 2018 16:56
KuWy 2.0 from KumbiaPHP developers
.kuwy .kuwy-menu
{
background:#EEE;
padding:4px;
}
.kuwy .kuwy-menu .kuwy-btn
{
display:inline-block;
padding:0 4px;
@demonio
demonio / style.css
Created November 25, 2016 17:56
Marca de agua KumbiaPHP
/* MARCA DE AGUA KUMBIAPHP */
.powered
{
background: url('/img/logo.png') no-repeat 0 18px;
bottom: 4px;
height: 69px;
opacity: 0.1;
position: fixed;
right: 4px;
width: 433px;
@demonio
demonio / kumbia_exception.php
Last active October 4, 2016 14:05
Excepción al correo
<?php
[...]
/**
* Maneja las excepciones no capturadas
*
* @param Exception $e
* */
public static function handleException($e)