Jq
Count elements with certain criteria
Count elements with certain criteria
Enterprise strategy
Estimation This is a helpful table for estimate stories. If you don’t have a reference story, or other strategy to estimate a story just go through this tabl...
Backward compatibility Allows the consumer code to use a new version of a schema and process messages with an old version of the schema. Allows the followin...
Use az in a company with SSL inspection If you see this:
variables STR="Hello World!" echo $STR echo ${STR}
SSL Inspection SSL inspection (Man in the middle) is a technique used to intercept and analyze encrypted SSL/TLS traffic between a client and a server. This...
Set and read variables Set: set variablename=thatsaname Read: %variablename%
Run When you select at least one character and press F5, only the selection is run.
Export import a table into json and vice versa Export get table -name member -file fulldata.member.json;
Persist data Its is normal for a small project to start with an in-memory storage. The next evolution-step would be persist the data. But instead of using ...
Advantages The big advantage of containers is the non existing virtualisation layer. The running application within a docker container actually runs directly...
Switch kubernetes context kubectl config get-contexts
Backup Mount same filesystem on every node Add a repository path on every node by put this into every elasticsearch.yml file: # Specifies the root ...
Scaling One of the purpose of elasticsearch is to make lucene scalable. The environment where you run elasticsearch should naturally be scalable. Never let ...
The steps are similar to rolling-restart
Search in Kibana You can type into the search bar something like: log.level: "ERROR" and not message: "Self registration failed"
Make a backup of the cluster stop non-essential indexing (if possible) disable shard allocation stop and update one node start the node re-enabl...
Option - Scroll Search a. Takes a snapshot of results b. statefull c. use scroll-ID & TTL of scroll. d. Best practice is to delete the scroll and not...
Using regex in Excel Only available in preview. https://techcommunity.microsoft.com/blog/microsoft365insiderblog/new-regular-expression-regex-functions-in-e...
add tag locally git tag v1.0.1
Using ssh Following this manual
Git branching strategies
Shows git stats git log --numstat --since 01-01-2019
gource is a nice tool to visualize git history.
How to install Either run pip install pre-commit Or download pyz file from https://github.com/pre-commit/pre-commit/releases and run: python %homedrive%%home...
Question / Answers Q: What are the key responsibilities of a devops engineer?
Question / Answer What is your intrinsic motivation to write software? No correct/wrong answer
Steps I did to use Jekyll on this GitHub pages following this manual:
Quicklists To create a quicklist go to File -> settings -> Appearance & Behaviour -> Quick-Lists. Here you can create a new Quicklist like: Git ...
Skip auto format // @formatter:off some custom formatted code that should be kept as is. // @formatter:on
Shortcuts
get env variable ${__BeanShell(System.getenv("customer-preference-url"))}
what is kafka? It is realtime event-streaming platform.
Gives info about the file system df -h . Lists all disks any their usages. Give a great overview about your used diskspace
```markdown Syntax highlighted code block
Install maven
OpenStreetMap editors I am using Vespucci on my android and ID for browser. I am still not sure if I should go the JOSM path as it looks like a very complica...
Search Press F4 to search within an email in front of you. Ctrl+f is reserved for forwarding the mail.
New project // 20.03.2020
Collections The Highest logical container for grouping stuff. You can share/import/export a collection.
They have the ending .ps1
Run renovate locally cd into the directory where config.js is located and run: ```
Troubleshooting Import open api specification into SOAPUI If you don’t see the Project -> Import swagger menu: The soapui-swagger-plugin-2.2-dist.jar is s...
GDRP = DSGVO (Datenschutz Grundverordnung)
Cruft and technical debts This is a presentation to explain the business how important built-in quality is. It is copied from: Source presentation
GTD Thats the official book by David Allen. It helps to organize all the small tasks which are getting thrown at you.
Glossary GWP (Gross written premium) The total premium on insurance underwritten by an insurer or reinsurer during a specified period, before deduction of re...
Malware is the overall name and can be split into:
Points Every correct answer/choice will give points. Worst thing to do is to not answer a question. There are no “minus points”.
Anti money laundering and Combat terrorism financing (AML/CTF)
The PARA method is a simple framework for structured, engaging conversations. It keeps you focused and invites the other person to participate.
P.A.R.A. is a universal organisation system developed by Tiago Forte. It stands for Projects · Areas · Resources · Archives — four top-level categories that ...
career coaching
I was in some situations where things got wrong and a lot of people were affected. Some key takeaways from those situations:
sla -> service level agreement -> Contractually agreement with an external consumer of your system.
Time Calendar If you want to create a meeting for only reminding purpose (like: UAT not available during this time period), or to show you are on vacation, ...
DSG gets effectiv on 01.08.2023
Java Swagger-Diff To compare different swagger files. This tool loads the swagger file and compares the interpreted content rather than just do a file-diff.
Back Requirements Engineering Template
Terraform
Red team engagement
VeraCode static scan Order a veracode profile and some credentials to access it Build a pipeline to build your app and send it to veracode Trigger a f...
Containers are like next stage of virtualization of hardware. They virtualize the operating system. Its kinda what a VM running on a physical computer is con...
Online version
Paths To get the absolute path of a file you need to shift-right click on a file and click on getPath:
YAML is case-sensitive. Files should have the .yml extension. Spaces are used for indentation and not tabs. Comments are attributed using the # char...