(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| It is MS Windows specific. | |
| Adapt the paths, but use the same lower-/upper case scheme for maximum compatibility (m2eclipse or java itself - don't exactly remember which, but other variants broke my build reproducible - relies on exactly that way to write the path like in the M2_RUNTIME variable. You can determine the exact "syntax" for your system at the command line with the `dir` command). | |
| I use it to have jdk installed as non-admin at non-standard place, to use maven the in the same manner and to use maven over ssl-encrypted connections, when server certificates need to be accepted. The env.MAVEN_OPTS_JRE_TAB_VM_ARGS variable belongs to the JVM arguments tab in the Eclipse launch configuration dialog then. | |
| The other (default ones) settings in eclipse.ini stay... | |
| >8--- | |
| -vm | |
| h:/jdk1.6.0/bin/javaw.exe | |
| --launcher.XXMaxPermSize | |
| 256m | |
| -vmargs |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| * Downloaded or downloading | |
| ============================= | |
| **http://kickass.to/infiniteskills-learning-jquery-mobile-working-files-t7967156.html | |
| **http://kickass.to/lynda-bootstrap-3-advanced-web-development-2013-eng-t8167587.html | |
| **http://kickass.to/lynda-css-advanced-typographic-techniques-t7928210.html | |
| **http://kickass.to/lynda-html5-projects-interactive-charts-2013-eng-t8167670.html | |
| **http://kickass.to/vtc-html5-css3-responsive-web-design-course-t7922533.html | |
| *http://kickass.to/10gen-m101js-mongodb-for-node-js-developers-2013-eng-t8165205.html | |
| *http://kickass.to/cbt-nuggets-amazon-web-services-aws-foundations-t7839734.html |
How to Reindex AEM on a Clone Instance and Sync over the Changes
All Paths are under /libs/ unless specified
/apps/core/wcm/componentsfoundation/componentswcm/foundation/components| { | |
| "jcr:primaryType": "sling:Folder", | |
| "weretail.com": { | |
| "jcr:primaryType": "sling:Mapping", | |
| "sling:internalRedirect": [ | |
| "/content/we-retail/us/en" | |
| ], | |
| "weretail_com_content": { | |
| "jcr:primaryType": "sling:Mapping", |
Free O'Reilly books and convenient script to just download them.
Thanks /u/FallenAege/ and /u/ShPavel/ from this Reddit post
How to use:
download.sh file and put it into a directory where you want the files to be saved.cd into the directory and make sure that it has executable permissions (chmod +x download.sh should do it)./download.sh and wee there it goes. Also if you do not want all the files, just simply comment the ones you do not want.| Documentation | |
| ------------- | |
| AEM: http://docs.adobe.com | |
| Recent updates: https://docs.adobe.com/docs/en/aem/recent-documentation-updates.html | |
| AEM Docs daily changes: http://adobedocsdiff.headwire.com/sitediff/ | |
| API References |
| package com.nateyolles.aem; | |
| import org.apache.sling.api.resource.Resource; | |
| import org.apache.sling.api.resource.ResourceResolver; | |
| import org.apache.sling.commons.json.JSONException; | |
| import org.apache.sling.commons.json.JSONObject; | |
| import org.apache.sling.commons.json.jcr.JsonItemWriter; | |
| import javax.jcr.Node; | |
| import javax.jcr.RepositoryException; |