Show unused dependencies
mvn dependency:analyze
Show infos to one specific plugin (available goals with phases, etc.)
mvn help:describe -Dplugin=org.sonarsource.scanner.maven:sonar-maven-plugin -Ddetail
Source: https://www.youtube.com/watch?v=5WXYw4J4QOU
POST
, GET
, PUT
, DELETE
!= CRUD/applications
or /applications/123
/customers
vs. /newsletter-customers
and /registered-customers
PUT
for Create: Can be used when the Client has the ability to create an identifier for the Resource himself. But it has to contain a full replacement of the dataset: PUT /applications/123
Source: https://www.youtube.com/watch?v=5WXYw4J4QOU
POST
, GET
, PUT
, DELETE
!= CRUD/applications
or /applications/123
/customers
vs. /newsletter-customers
and /registered-customers
PUT
for Create: Can be used when the Client has the ability to create an identifier for the Resource himself. But it has to contain a full replacement of the dataset: PUT /applications/123
User Space vs. Kernel Space
System Call vs. Signal
Static linked vs. Dynamically linked
DockerEE Basic - 80 Euro pro Maschine
Storage Driver
Docker Datacenter
# Show a preview of the selected method/class: "Quick Definition Lookup" | |
Ctrl + Shift + I | |
# Switch to another open tab | |
Ctrl + Tab | |
# Close a specific tab within this Switcher (Ctrl + Tab) | |
Choose tab in Switcher > Backspace or Delete | |
# Evaluate Expression (in a dialog) |
-- Current Date as Timestamp | |
CURRENT_TIMESTAMP | |
-- Current Date as Date | |
SYSDATE | |
-- Insert multiple rows | |
insert into countries select rownum, 'Name'||rownum from dual connect by rownum <= 1000000; | |
-- Delete all rows from a table |
# Exclude files or directories from duplication check | |
sonar.cpd.exclusions=**/AssemblyInfo.cs,**/*.g.cs,**/Mappings/*.cs |