- List directories only:
$ ls -d */
- List hidded files only:
$ ls -a
- Linux search for word and show entire line
$ grep --after-context=15 --before-context=1 'Exception' error.log
version: '2' | |
services: | |
zipkin: | |
image: openzipkin/zipkin | |
container_name: zipkin | |
environment: | |
- STORAGE_TYPE=mem | |
- RABBIT_URI=amqp://localhost | |
ports: | |
- 9411:9411 |
- Validate the JSON Data file: https://jsonlint.com/ , https://www.jsonschemavalidator.net/
- Generate Java Objects for JSON Data: https://www.site24x7.com/tools/json-to-java.html
- Generate JSON schema from JSON Data: https://jsonschema.net/
- Generate Java Objects for JSON schema: http://www.jsonschema2pojo.org/
Intellij Plugin to generate Java Objects for JSON Data: https://plugins.jetbrains.com/plugin/8634-robopojogenerator
Private Key Format when using
ssh-keygen -t rsa -b 4096 -f ~/.ssh/check
-----BEGIN OPENSSH PRIVATE KEY-----
b3BlbnNzaC1rZXktdjEAAAAACmFlczI1Ni1j
...
-----END OPENSSH PRIVATE KEY-----
This format is not accepted some of applications.
We have a use case to catch the replication event of a resource in the authoring and perform some manipulation on it. We are leveraging org.osgi.service.event.EventHandler
to catch this event.
We have observed, occasionally this event is not getting caught.
We tried to troubleshoot the issue and found the cause of the issue to be the event getting blacklisted.
Updating the org.apache.felix.eventadmin.impl.EventAdmin
fixed our issue. But as per the below documentation. This OSGi configuration marked as deprecated.
Create a Personal Access Token from https://github.com/settings/tokens and use this token as Password while add the Github account information in SourceTree.
SourceTree:
- Go to Account and select Github.
- Use Authentication Type as "Basic" and add your Github username and Password (Personal Access Token)
- HTTPS is to be used Protocol
for i in $(seq 1 15); do git stash drop stash@{11}; done |
- Unable load CF modal editor with the error,
The query read or traversed more than 100000 nodes.
Create index for the query mentioned, using http://oakutils.appspot.com/generate/index - Modal not loading all the fields that were added previously, due to the error\
20.04.2023 13:47:53.780 *ERROR* [[0:0:0:0:0:0:0:1] [1681978673159] GET /mnt/overlay/dam/cfm/models/editor/content/editor.html/conf/project/settings/dam/cfm/models/location HTTP/1.1] org.apache.sling.engine.impl.SlingRequestProcessorImpl service: Uncaught SlingException
org.apache.sling.api.request.TooManyCallsException: /libs/granite/ui/components/coral/foundation/form/field/field.jsp
at org.apache.sling.engine.impl.request.RequestData.service(RequestData.java:558) [org.apache.sling.engine:2.7.10.B0002]
at org.apache.sling.engine.impl.filter.SlingComponentFilterChain.render(SlingComponentFilterChain.java:45) [org.apache.sling.engine:2.7.10.B0002]
at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterC