Skip to content

Instantly share code, notes, and snippets.

View ksurendra's full-sized avatar

Suren K ksurendra

View GitHub Profile
@ksurendra
ksurendra / jakartaee-projects.csv
Last active December 21, 2018 22:25
Eclipse JakartaEE Projects List
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 6.
No,Eclipse Foundation Project Name,Scope,Related Oracle Java EE Project,JSR
1,Eclipse Project for JAX-WS,Eclipse Project for JAX-WS provides the API and TCK for,Java API for XML-Based Web Services (JAX-WS) 2.2,JSR 224
2,Eclipse Project for Interceptors,"Eclipse Project for Interceptors provides the API and TCK for Interceptors, starting from the specification defined by JSR-318",Interceptors 1.2,JSR 318
3,Eclipse Project for JASPIC,"Eclipse Project for JASPIC provides the API and TCK for Java Authentication Service Provider Interface for Containers, starting from the specification defined by JSR-196.",Java Authentication Service Provider Interface for Containers 1.1,JSR 196
4,Eclipse Project for Interceptors,"Eclipse Project for Interceptors provides the API and TCK for Interceptors, starting from the specification defined by JSR-318.",Interceptors 1.2,JSR 318
5,Eclipse Project for JASPIC,"Eclipse Project for JASPIC provides the API and TCK for Java Authentication Service Provider Interface for Containers, st
@ksurendra
ksurendra / JAQStack-SeattleCodeCamp-Sep2018.pptx
Last active October 8, 2018 13:38
The JAQ Stack Presentation Slides At Seattle Code Camp Sep 2018
@ksurendra
ksurendra / USDZ Sample 1
Last active July 22, 2019 19:00
Universal Scene Description Zip - USDZ Sample Files
@ksurendra
ksurendra / Component - az.component.html
Created September 21, 2018 22:18
Complete Angular Example
<div class="row">
<div class="col-md-4" *ngFor="let key of blobsList | keys">
<p><img src="{{blobsList[key].blobURL}}" height="100" width="100"></p>
<p><a class="btn btn-default" href="#">{{blobsList[key].blobName}}</a></p>
</div>
</div>
@ksurendra
ksurendra / Java-8-Path-Example.java
Last active August 6, 2018 16:27
Example usage of Java Path
import java.nio.file.Path;
import java.nio.file.Paths;
List<TagBean> superCategories = new ArrayList<>();
List<TagBean> categories = new ArrayList<>();
List<TagBean> channels = new ArrayList<>();
List<TagBean> shows = new ArrayList<>();
String filePath = "/etc/tags/namespace/shows/super-category/category/channel/show/show-name"
@ksurendra
ksurendra / AEMGetAllPropertiesOfAnAsset
Last active September 11, 2023 10:09
Get all properties of an Asset from AEM
Resource resource;
ValueMap mainProperties;
ValueMap assetMetadataProperties;
Resource metadataResource;
ValueMap jcrProperties;
Resource jcrdataResource;
ValueMap allProperties;
for (Hit hit : result.getHits()) {
//LOGGER.info("nHit path="+hit.getPath()+", title="+hit.getTitle()); resource = hit.getResource();
@ksurendra
ksurendra / filter.xml
Created May 16, 2018 14:59
vlt export command script and filter.xml using the same destination folder on adobe experience manager (aem)
<?xml version="1.0" encoding="UTF-8"?>
<workspaceFilter version="1.0">
<filter root="/content">
<exclude pattern="/content/jcr:system"/>
<exclude pattern="/content/var/classes"/>
<exclude pattern="^.*/rep:accessControl"/>
</filter>
</workspaceFilter>