Internet access desktop for development and experimentation with dummy data and access to Git repository and packages. Isolated desktop for testing on production data with access to Git repositories and filtered packages (e.g. using CodeArtifact), allow copy/paste. The developer experience would then be having two desktops open with copy/paste capability (might be able to copy/paste production data, as an accepted risk), moving code between the desktops through Git, and allow-listing packages for the production desktop.
Client-side design:
- Store refresh token as HTTP-only secure cookie
- Store ID token in memory
Client/server flow:
- Client sends POST request to
/auth/refresh
API - If user didn't authenticate yet, client gets
401
response (there is no refresh token cookie), and redirects to/auth/login
API- After user authenticates,
/auth/login
API sets refresh token cookie, and responds with ID token
- After user authenticates,
- Client calls APIs with ID token in Authorization header
- APIs authenticate calls using ID token
Related information:
sudo defaults write /Library/Preferences/FeatureFlags/Domain/UIKit.plist emoji_enhancements -dict-add Enabled -bool NO
Restart
Source: https://stackoverflow.com/a/53112628/1658138
OS | Input method |
---|---|
macOS | OPTION+SPACE (ALT+SPACE) |
Linux | Compose Space Space or AltGr+Space |
Windows | Alt+0+1+6+0 |
Some text editors use Ctrl+Shift+Space.
Copy with hidden files to an existing directory
cp -r <source>/. <destination>
pip uninstall -y -r <(pip freeze)
pipx install pip-licenses
pip-licenses --python /usr/bin/python -nv --output-file licenses.txt
pip-compile -P black==22.12.0 --upgrade requirements-dev.in
Bash command to perform an operation on multiple AWS CloudFormation stacks:
for stack in $(aws cloudformation describe-stacks --query Stacks[].StackName --output text); do echo $stack; done
List physical resource IDs of specific resource types in an AWS CloudFormation stack:
aws cloudformation list-stack-resources --stack-name STACK_NAME --query 'StackResourceSummaries[?ResourceType==`RESOURCE_TYPE`].PhysicalResourceId'
List services that support AWS PrivateLink VPC endpoints but do not support VPC endpoint policies:
aws ec2 describe-vpc-endpoint-services --query 'ServiceDetails[?VpcEndpointPolicySupported==`false`].{ServiceName:ServiceName, VpcEndpointPolicySupported:VpcEndpointPolicySupported}' --output table
cfn_nag_scan --output-format txt --input-path cdk.out/ --template-pattern '..*\.template\.json'
PyCharm => Preferences => Tools => External documentation => Module Name: aws_cdk
=> URL/Path Pattern: https://docs.aws.amazon.com/cdk/api/v2/python/{module.name}/{class.name}.html
tree --dirsfirst --matchdirs -I '.mypy_cache|cdk.out|node_modules|__pycache__|.git|.idea'
history -w /dev/stdout
aws cloud9 update-environment --environment-id $C9_PID --managed-credentials-action DISABLE
rm -vf ${HOME}/.aws/credentials
Archive
git archive --prefix=aws-cdk-project-structure-python/ -o aws-cdk-project-structure-python.zip HEAD
Tree
$ fd | as-tree
Diff two AWS CDK project trees
diff -qrub -x "cdk.out" -x "node_modules" -x ".git" -x "package-lock.json" -x "chalice.out" -x "__pycache__" -x ".idea" -x ".chalice" -x ".DS_Store" -x ".mypy_cache" aws-cdk-sam-chalice/ aws-cdk-project-structure-python/
sed -i .orig 's/1\.106\.1/1\.114\.0/g' requirements.txt
# If ~/.inputrc doesn't exist yet: First include the original /etc/inputrc
# so it won't get overriden
if [ ! -a ~/.inputrc ]; then echo '$include /etc/inputrc' > ~/.inputrc; fi
# Add shell-option to ~/.inputrc to enable case-insensitive tab completion
echo 'set completion-ignore-case On' >> ~/.inputrc
#:~:text=
https://github.com/tombonez/noTunes
pyenv-virtualenv - manage virtualenvs and conda environments
aws cloudtrail lookup-events --max-results 1 --query 'Events[0].CloudTrailEvent' | jq 'fromjson'
sudo pkill coreaudiod
category:="Israel Israeli" OR category:="Israel Israelit" start:>=today isrecurring:no
python -m SimpleHTTPServer 8000
defaults -currentHost write -g AppleFontSmoothing -int [0,1,2,3]
and restart
- URL shortener or TinyURL: https://lnkd.in/gJPWZsX3
- Social media app like Twitter: https://lnkd.in/guParNhY
- File sharing service like Dropbox: https://lnkd.in/gnSQ6rAd
- Video streaming service like Netflix: https://lnkd.in/gnHSyCj8
- Autocomplete feature of Google: https://lnkd.in/g3VFcaYN
- Messaging app like WhatsApp: https://lnkd.in/g5zJa_4W
- Online document editor like Google docs: https://lnkd.in/gBvztEqV
- Proximity service like Uber: https://lnkd.in/grtPbr6k
- Hotel booking service like Airbnb: https://lnkd.in/gWjrGwCM
- Web crawler: https://lnkd.in/gTkfCH8U
Without GenAI:
- Coding - 2 hours
- Debugging - 6 hours
With GenAI:
- Generate code - 5 minutes
- Debugging - 24 hours
Cloud automation tools like AWS CDK and Pulumi allow you to implement application’s architecture and domain logic using the same programming language.
Strategy
- Context
- Objective
- Mechanism
- Design decision
Mechanism
- Output => Objective
- Tool
- Adoption
- Inspection
- Iteration
- Input
Tool
- Use case => Output
- Stories and flows
- Requirements
- Architecture
Architecture
- Application
Application
- Repositories and pipeline
- Domain logic