Skip to content

Instantly share code, notes, and snippets.

View alvarouribe's full-sized avatar
:octocat:
Coding

Alvaro alvarouribe

:octocat:
Coding
View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<title>polymer</title>
<script src="https://rawgit.com/webcomponents/webcomponentsjs/master/webcomponents-lite.js"></script>
<link rel="import" href="https://rawgit.com/Polymer/polymer/master/polymer.html">
</head>
<body>
<dom-module id="my-element">
<!DOCTYPE html>
<html>
<head>
<title>polymer</title>
<script src="https://rawgit.com/webcomponents/webcomponentsjs/master/webcomponents-lite.js"></script>
<link rel="import" href="https://rawgit.com/Polymer/polymer/master/polymer.html">
</head>
<body>
<dom-module id="my-element">
@alvarouribe
alvarouribe / gist:4627820
Last active November 26, 2020 13:53
Accesos Directos Sublime Text 2 - Espanol

Sublime Text 2 – Accesos Directos (PC y Linux)

“Toda la documentacion aca” :http://www.sublimetext.com/docs/2/.

Edicion

Ctrl+C (si no hay seleccion) Copia toda la linea
Ctrl+X (si no hay seleccion) Corta toda la linea
Ctrl+⇧+K Elimina la linea
Ctrl+↩ Inserta salto de linea en linea anterior
/**
* WkHtmlToPdf table splitting hack.
*
* Script to automatically split multiple-pages-spanning HTML tables for PDF
* generation using webkit.
*
* To use, you must adjust pdfPage object's contents to reflect your PDF's
* page format.
* The tables you want to be automatically splitted when the page ends must
* have a class name of "splitForPrint" (can be changed).
@alvarouribe
alvarouribe / email_attachment.php
Created October 3, 2012 06:51 — forked from michaelaguiar/email_attachment.php
PHP: Another Send Email Attachment
<?php
function emailAttachment($to, $fromName, $fromEmail, $subject, $message, $files) {
$headers = "From: $fromName<$fromEmail>";
// boundary
$semi_rand = md5(time());
$mime_boundary = "==Multipart_Boundary_x{$semi_rand}x";
// headers for attachment
$headers .= "\nMIME-Version: 1.0\n" . "Content-Type: multipart/mixed;\n" . " boundary=\"{$mime_boundary}\"";