Rust for Beginners - Watched all 35 videos The book Rust and WebAssembly Rust Playground IDE Rust Cookbook of getting started snippets
nginx config
Nginx.conf # For more information on configuration, see: # * Official English Documentation: http://nginx.org/en/docs/ # * Official Russian Documentation: http://nginx.org/ru/docs/ user nginx;...
Docker compose file
At the root of the project create a file: docker-compose.yml version: '3' services: api: image: conference/api container_name: conference_api build: context: . ports: ...
Useful Docker commands
Docker Version docker -v List Docker images docker image list Download an image docker pull nginx:1.13.8 Remove docker image docker rmi {image id} Run an image and then interact with th...
To dockerize a visual studio project
If creating a new project, then Enable docker support during project creation OR Create a file in the project root called Dockerfile (no extension) Inside the file FROM microsoft/aspnetcor...
Remote desktop and stepping though code using 'F11' key
Problem The F11 key is commonly used during a debugging session, to step through lines of code. So you can imaging the suprise when one of your most used keys fails to work as expected and oddly on...
Work items and branching strategy
Work items User Story A user story should always belong to whoever requested the work to be completed (usually someone wearing the Product Owner metaphorical ‘hat’) - That said, it is not a requi...
RaspberryPi NUT server with QNAP integration
References https://www.howtoraspberry.com/2020/11/how-to-monitor-ups-with-raspberry-pi https://www.howtoraspberry.com/2021/05/how-to-configure-an-orderly-shutdown/ https://blog.fosketts.net/2015...
Architecture Decision Record
Architecture Decision Record template | Issue | Status | Date | |-------------------|-----------------|--------------------| | Whats the issue? | Is it decided?...
How to share network folder
How to share network folder Excerpt from : https://www.makeuseof.com/set-up-network-shared-folder-ubuntu-with-samba/ Want to share files with multiple devices on a single network? Create a shared...