Categorías
hoy aprendí ...

… a separar los adjuntos en Thunderbir de manera masiva

Buscando a la forma de separar (detach) los archivos adjuntos de un gran grupo de emails usando Thunderbird llegué con la extensión AttachmentExtractor. Corre como la seda.

Categorías
Tiempo Fluido

TF / Módulos: diagramas jQuery

Create An Editable Organization Chart with jQuery orgChart Plugin | Free jQuery Plugins – http://www.jqueryscript.net/chart-graph/Create-An-Editable-Organization-Chart-with-jQuery-orgChart-Plugin.html
Simple SVG Flow Chart Plugin with jQuery – flowSVG | Free jQuery Plugins – http://www.jqueryscript.net/chart-graph/Simple-SVG-Flow-Chart-Plugin-with-jQuery-flowSVG.html
jQuery Plugin To Generate SVG Based Flowchart Diagram | Free jQuery Plugins – http://www.jqueryscript.net/chart-graph/jQuery-Plugin-To-Generate-SVG-Based-Flowchart-Diagram.html
Drag’n’drop Flow Chart Plugin With jQuery And jQuery UI – flowchart.js | Free jQuery Plugins – http://www.jqueryscript.net/chart-graph/Drag-drop-Flow-Chart-Plugin-With-jQuery-jQuery-UI-flowchart-js.html
Flowchart – http://gojs.net/latest/samples/flowchart.html
Navigating the Maze that is a Library | Rich McCue v4.0 – https://richmccue.com/2010/08/03/navigating-the-maze-that-is-a-library/
JavaScript Diagram Editor – https://jgraph.github.io/mxgraph/javascript/
ucdavis/wayfinding: jQuery plugin for interactive svg maps – https://github.com/ucdavis/wayfinding
tinyhippos/jWorkflow: Dude, Where’s My Workflow? – https://github.com/tinyhippos/jWorkflow
WebCola – Javascript Constraint-Based Graph Layout | jQuery Plugins – http://jquery-plugins.net/webcola-javascript-constraint-based-graph-layout
cola.js: Constraint-based Layout in the Browser – http://marvl.infotech.monash.edu/webcola/
D3.js – JavaScript Visualization Library for HTML and SVG | jQuery Plugins – https://github.com/mbostock/d3/wiki/Gallery
FlowChart.js – SVG Flow Chart Diagrams with Javascript | jQuery Plugins – http://jquery-plugins.net/flowchart-js-svg-flow-chart-diagrams-with-javascript
JS Sequence Diagrams | jQuery Plugins – http://jquery-plugins.net/js-sequence-diagrams

 

Categorías
hoy aprendí ...

… a obtener las imágenes de videos de youtube

En realidad lo había aprendido el año pasado cuando hice el feed del canal de youtube, pero lo olvidé y volví a aprender hoy.

    • http://img.youtube.com/vi/THE-VIDEO-ID/0.jpg or
      http://img.youtube.com/vi/THE-VIDEO-ID/default.jpg – full size thumb
    • http://img.youtube.com/vi/THE-VIDEO-ID/mqdefault.jpg – medium default
    • http://img.youtube.com/vi/THE-VIDEO-ID/maxresdefault.jpg – high res
    • http://img.youtube.com/vi/THE-VIDEO-ID/1.jpg – small thumb
    • http://img.youtube.com/vi/THE-VIDEO-ID/2.jpg – small thumb
    • http://img.youtube.com/vi/THE-VIDEO-ID/3.jpg – small thumb

Gracias a http://www.joshuawinn.com/get-the-thumbnails-of-a-youtube-video-standard-url-and-file-names/

Bonus: tiene una explicación de uso para WP muy interesante.

Categorías
hoy aprendí ...

… a hacer un troceado de cadena en phyton

La idea es utilizar la primer palabra de un string.

Ejemplo:

titulo = "Prueba de troceado"titulo_partes = titulo.split()
estilo = titulo_partes[0] # devuelve "Prueba"

E insertarlo en un template HTML

Gracias a http://www.dotnetperls.com/split-python

Categorías
hoy aprendí ...

… a hacer un rewrite

Para el sitio del audiovisual, la idea es reemplazar url/v/XXXXXX por url/video.php?id=XXXXXX 

RewriteEngine on
RewriteRule ^v/(.*) /video.php?id=$1 [L

Gracias a http://corz.org/server/tricks/htaccess2.php