Skip to content

Instantly share code, notes, and snippets.

View juanibrex's full-sized avatar
🎯
Focusing

Juani Brex juanibrex

🎯
Focusing
View GitHub Profile
@juanibrex
juanibrex / email-con-preguntas-para-presupuesto-web.txt
Created September 28, 2021 15:54 — forked from maugelves/email-con-preguntas-para-presupuesto-web.txt
Correo electrónico con preguntas básicas para la elaboración del presupuesto de un proyecto web.
Hola <nombre del cliente>:
Ante todo muchas gracias por ponerte en contacto y por confiar en nuestros servicios para el desarrollo de tu web.
Necesitaría que por favor respondas las siguientes preguntas para realizar un presupuesto acorde a las necesidades de tu proyecto.
====================
Sobre su negocio:
- ¿A qué se dedica tu empresa/proyecto/emprendimiento?
@juanibrex
juanibrex / Contract Killer 3.md
Created April 10, 2018 00:44
The latest version of my ‘killer contract’ for web designers and developers

Contract Killer

The popular open-source contract for web professionals by Stuff & Nonsense

  • Originally published: 23rd December 2008
  • Revised date: March 15th 2016
  • Original post

@juanibrex
juanibrex / Pencil Project Hotkeys
Last active August 17, 2020 14:34
Pencil Project Shortcuts
# Pencil Project Shortcuts
## General Shortcuts
+ New Document: Ctrl + n
+ Open: Ctrl + o
+ Save: Ctrl + s
+ Save as: Ctrl + Shift + s
+ Export: Ctrl + Shift + e
+ Print: Ctrl + p
@juanibrex
juanibrex / excel_BuscarV-al-reves.txt
Last active August 2, 2016 13:47
Variante a buscarv cuando el valor a buscar esta a la izquierda del valor base
=INDICE($A$2:$A$11;COINCIDIR(D2;$B$2:$B$11;0))
Usamos INDICE y COINCIDIR ya que los números auxiliares en la tabla original están a la derecha de los nombres. Si estuvieran a la izquierda podríamos usar la función BUSCARV.
## Fuente:
http://jldexcelsp.blogspot.com.ar/2007/11/ordenar-texto-en-excel-con-frmulas.html
excel, buscarv, tip, formula
-inurl:(htm|html|php) intitle:"index of" +"last modified" +"parent directory" +description +size +(wma|mp3) "weezer"
@juanibrex
juanibrex / Sublime-Text_user_preference.json
Last active March 2, 2016 20:34
Configuración personal del sublime text
{
"bold_folder_labels": true,
"caret_extra_bottom": 2,
"caret_extra_top": 2,
// "caret_extra_width": 3, //Desmasiado ancho
"caret_style": "phase",
"color_scheme": "Packages/Theme - Cobalt2/cobalt2.tmTheme",
"draw_white_space": "all",
"font_size": 11,
"highlight_line": true,
// Reset para menu con estructura ul>li
menu{
margin-top:0;
margin-bottom:0;
list-style:none;
padding-left:0;
}
@juanibrex
juanibrex / centrar-absoluta.css
Created November 14, 2015 03:13
Centrar un elemento absolutamente respecto a su padre
.padre{
position: relative;
}
.padre .hijo{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
@juanibrex
juanibrex / Operaciones-Git
Last active August 29, 2015 14:27 — forked from jelcaf/Operaciones-Git
Git Tips - Mini-trucos de Git para facilitarme la tarea
#############################################
# Push de la rama actual
git push origin $rama_actual
#############################################
# Volver a un commit anterior, descartando los cambios
git reset --HARD $SHA1
#############################################
# Ver y descargar Ramas remotas