Skip to content

Instantly share code, notes, and snippets.

@GuilhermeRios
GuilhermeRios / JcrQueryLibrary.md
Created June 3, 2020 19:59 — forked from floriankraft/JcrQueryLibrary.md
Some useful JCR queries (XPATH, SQL2) for AEM/CQ development.

SQL2

All nodes with a specific name

SELECT * FROM [nt:unstructured] AS node
WHERE ISDESCENDANTNODE(node, "/search/in/path")
AND NAME() = "nodeName"

All pages below content path

@GuilhermeRios
GuilhermeRios / aem-debug
Last active March 7, 2020 16:30 — forked from gabrielwalt/aem-debug
Run AEM in debug mode
java -jar aem-author-4502.jar -debug 58242
@GuilhermeRios
GuilhermeRios / resize-image-keep-aspect-ratio.php
Created January 30, 2020 16:24 — forked from paulund/resize-image-keep-aspect-ratio.php
Resize a image to a max width and height and keep aspect ratio.
<?php
public function getImageSizeKeepAspectRatio( $imageUrl, $maxWidth, $maxHeight)
{
$imageDimensions = getimagesize($imageUrl);
$imageWidth = $imageDimensions[0];
$imageHeight = $imageDimensions[1];
$imageSize['width'] = $imageWidth;