Software development

  • Connect a USB Drive to Your Cloud
  • Linux Email Notifications for Cron Jobs and Bash Scripts
  • Flask, Docker, Pycharm - Setting up development environment
  • Automate Postgres psql authentication

    ❯ cat ~/.pgpass
    localhost:5432:*:postgres:pass
    
    > cat ~/.zshrc | grep PGHOST
    export PGHOST=localhost
    

    #soft #postgresql

    Simple, short, and well-organized course. It will give you a quick insight into the basics of prompting techniques.

    Short course ChatGPT Prompt Engineering for Developers

    #ai #soft

    Downloading backups from remote hosts

    rsync -a --progress --delete -e 'ssh -p 223' user@host:/dir1 local_dir
    
    - v verbose
    

    #soft #linux