Como aumentar la valocidad de tu Javascript

Publicado poralegg | En Javascript | Posted on 16-08-2009

2

Quiero recomendar esta presentacion de Nicholas C. Zakas en un Google Tech Talk. El video tiene una duración de casi 60 minutos y ahi explica numerosas técnicas para mejorar la performance de Javascript.

PHP Anywhere, un editor PHP online

Publicado poralegg | En Herramientas, Javascript, PHP | Posted on 03-08-2009

1

A lo mejor es muy famoso, pero acabo de encontrarme con este editor online y me ha parecido muy interesante.  Soporta varios lenguajes, correción de sintáxis y FTP.

phpanywherechico

Comparativa de librerias Lightbox

Publicado poralegg | En Javascript | Posted on 27-07-2009

1

Buscando en mis favoritos, me encontre con esta pagina que compara mas de 40 librerias para hacer galerías Lightbox. Es muy buena la recopilacion, creo que no se han olvidado ninguna.

Url:  http://planetozh.com/projects/lightbox-clones/

comparativa-lightbox

Hacer gráficas con Javascript

Publicado poralegg | En Graficas, Javascript | Posted on 26-06-2009

0

En anieto2k.com publican una lista de librerias para generar gráficas desde Javascript. De la lista solo he utilizado Google Chart.

  1. Flot [jQuery]
  2. fgCharting [jQuery]
  3. jQuery Sparklines [jQuery]
  4. jqPlot [jQuery]
  5. TufteGraph [jQuery]
  6. jQuery Google Charting [jQuery]
  7. ProtoChart [Prototype]
  8. JSXGraph [Prototype o jQuery]
  9. Protovis [Native JS]
  10. PlotKit [Nativa JS]

jQuery y la performance

Publicado poralegg | En JQuery, Javascript | Posted on 19-06-2009

0

El uso de JQuery se esta haciendo cada vez mas habitual.  Realmente es una gran libreria y hay mucho codigo por ahi para usar, pero muchas veces dejamos (dejo) de lado el tema performance y descarto algunas otras opciones. En este articulo de IBM hacen algunas comparaciones con otros librerias, como Mootools, Prototype o DOJO.

test1libsjs

Crop de imagenes con PHP y JS

Publicado poralegg | En Javascript, PHP | Posted on 04-06-2009

1

Muy buen ejemplo de como hacer un crop de una imagen, seleccionando directamente en la imagen.

Menues al estilo Mac Os con JQuery

Publicado poralegg | En JQuery, Javascript | Posted on 03-06-2009

0

jqDock es un plugin para JQuery que nos permite crear menues al estilo Mac Os. En la pagina se muestran varios demos con tipos de meu distintos.

jquery-dock-menu

Herencia en Javascript o algo asi.

Publicado poralegg | En Javascript | Posted on 27-03-2009

0

Leo en aNieto2k , que leen en Quizzpo, un interesante artículo sobre como lograr algo asi com herencia en JavaScript.

Compatibilidad de nombres entre CSS y Javascript

Publicado poralegg | En Javascript, PHP | Posted on 14-02-2009

0

Esta lista puede hacerte ahorrar algunos minutos de debug…

· background –> background
· background-attachment –> backgroundAttachment
· background-color –> backgroundColor
· background-image –> backgroundImage
· background-position –> backgroundPosition
· background-repeat –> backgroundRepeat
· border –> border
· border-bottom –> borderBottom
· border-bottom-color –> borderBottomColor
· border-bottom-style –> borderBottomStyle
· border-bottom-width –> borderBottomWidth
· border-color –> borderColor
· border-left –> borderLeft
· border-left-color –> borderLeftColor
· border-left-style –> borderLeftStyle
· border-left-width –> borderLeftWidth
· border-right –> borderRight
· border-right-color –> borderRightColor
· border-right-style –> borderRightStyle
· border-right-width –> borderRightWidth
· border-style –> borderStyle
· border-top –> borderTop
· border-top-color –> borderTopColor
· border-top-style –> borderTopStyle
· border-top-width –> borderTopWidth
· border-width –> borderWidth
· clear –> clear
· clip –> clip
· color –> color
· cursor –> cursor
· display –> display
· filter –> filter
· font –> font
· font-family –> fontFamily
· font-size –> fontSize
· font-variant –> fontVariant
· font-weight –> fontWeight
· height –> height
· left –> left
· letter-spacing –> letterSpacing
· line-height –> lineHeight
· list-style –> listStyle
· list-style-image –> listStyleImage
· list-style-position –> listStylePosition
· list-style-type –> listStyleType
· margin –> margin
· margin-bottom –> marginBottom
· margin-left –> marginLeft
· margin-right –> marginRight
· margin-top –> marginTop
· overflow –> overflow
· padding –> padding
· padding-bottom –> paddingBottom
· padding-left –> paddingLeft
· padding-right –> paddingRight
· padding-top –> paddingTop
· page-break-after –> pageBreakAfter
· page-break-before –> pageBreakBefore
· position –> position
· float –> styleFloat
· text-align –> textAlign
· text-decoration –> textDecoration
· text-decoration: blink –> textDecorationBlink
· text-decoration: line-through –> textDecorationLineThrough
· text-decoration: none –> textDecorationNone
· text-decoration: overline –> textDecorationOverline
· text-decoration: underline –> textDecorationUnderline
· text-indent –> textIndent
· text-transform –> textTransform
· top –> top
· vertical-align –> verticalAlign
· visibility –> visibility
· width –> width
· z-index –> zIndex

Fuente: http://blog.oridoki.com/

Funciones PHP en JavaScript con PHP.JS

Publicado poralegg | En Javascript, PHP | Posted on 06-02-2009

0

La interacción entre PHP y Javascript es una de las tareas (tediosas?), mas recurrentes de los programadores PHP. El proyecto PHP.JS creado por Kevin van Zonneveld, puede ser una buena herramienta para simplificar esta tarea.

Pagina del proyecto.