A set of Django framework pre-deployment preparation mandatory steps based on best practices for security.
See: https://docs.djangoproject.com/en/5.2/howto/deployment/
It can be used as a TODO list template for any relevant project.
Note:
A set of Django framework pre-deployment preparation mandatory steps based on best practices for security.
See: https://docs.djangoproject.com/en/5.2/howto/deployment/
It can be used as a TODO list template for any relevant project.
Note:
| ## Personal global gitignore template collected from: | |
| ## https://github.com/github/gitignore/ | |
| ## | |
| ## - Current Languages and Frameworks ignore patterns | |
| ## - CVS | |
| ## - Linux | |
| ## - MacOS | |
| ## - Windows | |
| ## - JetBrains | |
| ## - Vim |
| " >> load plugins | |
| call plug#begin(stdpath('data') . 'vimplug') | |
| " Telescope requirements... | |
| Plug 'nvim-lua/plenary.nvim' | |
| Plug 'nvim-lua/popup.nvim' | |
| Plug 'nvim-telescope/telescope.nvim' | |
| " Telescope | |
| Plug 'nvim-telescope/telescope-fzy-native.nvim', {'do': 'make'} |
| #!/usr/bin/env bash | |
| # | |
| # DESC: Setup personal github account | |
| # | |
| ## Define github user email | |
| email='[email protected]' | |
| ## Generate SSH key pairs |
| #!/bin/bash | |
| # Select the Nerd Font from https://www.nerdfonts.com/font-downloads | |
| # and add them to the list bellow. | |
| # Chmod the script and run it. | |
| # Select from list. Done. | |
| # Testing with ShellCheck | |
| echo "[-] Download The Nerd fonts [-]" | |
| echo "#######################" | |
| echo "Select Nerd Font" |
| #!/usr/bin/env bash | |
| ################ Description: ################### | |
| # This script will disable all opt-out under | |
| # Ubuntu 22.04 (Codename: Jammy Jellyfish). | |
| # At first the telemetry domains will be resolved | |
| # to the local host and second all telemetry services | |
| # will be removed from the system. | |
| # The following work has a system-wide effect not just |
| #!/usr/bin/env bash | |
| ## ~/.shell/.aliasrc | |
| ## Included in ~/.bashrc | |
| ## Includes all other configs and paths | |
| ## TERM | |
| # sudo update-alternatives --config x-terminal-emulator | |
| ## Define folder that holds the alias files |
| #!/usr/bin/env python | |
| # coding: utf-8 | |
| # #### Step 1 - Imports | |
| # In[4]: | |
| import requests | |
| import pandas as pd |
| ;;; package --- init.el | |
| ;; Author: Tom Geo | |
| ;; Keywords: emacs configuration tutorial | |
| ;; URL: https://github.com/ | |
| ;; This file is not part of GNU Emacs. | |
| ;;; Commentary: |
| #!/usr/bin/env bash | |
| ## TITLE: Install and setup basic Artix - ZFS - OpenRc - rEFInd | |
| ## TODO: Make proper install scripts from this gist | |
| ## EFI SETUP: https://wiki.archlinux.org/index.php/EFI_system_partition | |
| ## ARTIX: https://wiki.artixlinux.org/Main/InstallationOnZFS | |
| ## REFIND: https://www.rodsbooks.com/refind/installing.html#linux | |
| ## INSTALL: https://wiki.artixlinux.org/Main/Installation | |
| ## ARCHZFS: https://www.youtube.com/watch?v=kPNcRSSaYQo |