- https://blog.ninja-squad.com/2023/11/09/angular-cli-17.0/
- https://blog.ninja-squad.com/2023/11/09/what-is-new-angular-17.0/
- https://blog.angular.io/introducing-angular-v17-4d7033312e4b
- https://netbasal.com/a-comprehensive-guide-to-angulars-defer-block-468c74048df4
- https://blog.ninja-squad.com/2023/10/11/angular-control-flow-syntax/
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
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| IFS=$'\n\t' | |
| if [ "$#" -lt 1 ]; then | |
| echo "Missing pod_name argument" | |
| echo "usage : $0 <pod_name> <async_profiler_event>" | |
| else | |
| pod_name=$1 | |
| # Basic events: wall, alloc, cpu, itimer lock. See https://krzysztofslusarski.github.io/2022/12/12/async-manual.html |
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
| #### | |
| # ZSH function to auto-switch to correct Node version | |
| # https://gist.github.com/callumlocke/30990e247e52ab6ac1aa98e5f0e5bbf5 | |
| # | |
| # - Searches up your directory tree for the closest .nvmrc, just like `nvm use` does. | |
| # | |
| # - If you are already on the right Node version, IT DOES NOTHING, AND PRINTS NOTHING. | |
| # | |
| # - Works correctly if your .nvmrc file contains something relaxed/generic, | |
| # like "4" or "v12.0" or "stable". |
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
| git branch -m old_branch new_branch # Rename branch locally | |
| git push origin :old_branch # Delete the old branch | |
| git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote |
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
| nationality.AD.H=Andorran | |
| nationality.AD=Andorran | |
| nationality.AE.H=Emirian | |
| nationality.AE=Emirian | |
| nationality.AF.H=Afghani | |
| nationality.AF=Afghani | |
| nationality.AG.H=Antiguan | |
| nationality.AG=Antiguan | |
| nationality.AI.H=Anguillan | |
| nationality.AI=Anguillan |
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
| country.= | |
| country.AD=Andorra | |
| country.AE=United Arab Emirates | |
| country.AF=Afghanistan | |
| country.AG=Antigua And Barbuda | |
| country.AI=Anguilla | |
| country.AL=Albania | |
| country.AN=Curacao | |
| country.AO=Angola | |
| country.AR=Argentina |
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
| package com.someco.cmis.examples; | |
| import java.io.ByteArrayInputStream; | |
| import java.io.InputStream; | |
| import java.math.BigInteger; | |
| import java.util.HashMap; | |
| import java.util.List; | |
| import java.util.Map; | |
| import org.apache.chemistry.opencmis.client.api.Document; |