- Proper logger with a default log level.
- Unit testing of code. Unit tests have a chance to fail. Unit tests which can only pass are not useful.
- Environment variables.
- Strict linting rules.
-
JSDocfor code. - Proper
README. - Extensive
.gitignoreto ignore everything unneeded. -
Dockerfilefile anddocker-composefile included.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Simple exmple of a SQL Function for postgres. The function increments a given int by 1. | |
| CREATE FUNCTION increment (age int) | |
| RETURNS int | |
| LANGUAGE plpgsql | |
| AS $$ | |
| declare | |
| incremented_age int; | |
| BEGIN | |
| incremented_age = age +1; |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
|---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *{ | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } | |
| .card-slider{ | |
| width: 100%; | |
| float: left; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| repositoryOwner(login: "larapollehn") { | |
| ... on ProfileOwner { | |
| pinnedItemsRemaining | |
| itemShowcase { | |
| items(first: 5) { | |
| totalCount | |
| edges { | |
| node { | |
| ... on RepositoryInfo{ |
* ul {
text-align: center;
list-style: inside;
}