Skip to content

Instantly share code, notes, and snippets.

View ismet55555's full-sized avatar
💥
This n' That

Ismet Handzic ismet55555

💥
This n' That
View GitHub Profile
@ismet55555
ismet55555 / flask_workflow.png
Last active June 22, 2023 18:35
Flask Workflow Outline
flask_workflow.png
@ismet55555
ismet55555 / python_logger_setup.py
Last active January 27, 2023 06:02
Python Logger Setup
"""Logger Setup"""
###################################################################
# NOTES:
# - Stop using print() already
#
# - Simply import this file to setup the logger
# - Only has to be called on time during load
# - Example:
# from some_app import python_logger_setup
@ismet55555
ismet55555 / jenkins_docker_setup.md
Last active December 7, 2020 15:34
Jenkins Setup in Docker
@ismet55555
ismet55555 / tmux_basics.md
Last active May 23, 2024 21:22
tmux Basics
@ismet55555
ismet55555 / linux_partition_scheme.md
Last active December 8, 2023 15:55
Linux Partition Scheme

Common Linux Partitioning Scheme

Mount Description Optional Type Type Location General Rule Example 100GB
EFI Boot loaders for UEFI firmware No EFI Primary Beginning 1 GB 1 GB
/boot OS kernel and boot files No ext4 Primary Beginning 1.5 GB 1.5 GB
/ Where Linux installs system software No ext4 Logical Beginning %7 Disk Space (Minimum) 10 GB
/var Files which system writes data to Yes ext4 Logical Beginning 15 GB (Minimum) 20 GB
Swap Virtual memory No Swap Logical Beginning 1.5x System RAM 24 GB
/home User personal files and s
@ismet55555
ismet55555 / WiFi_Region_Codes.md
Created November 10, 2020 22:24
WiFi Region Codes

WiFi Region Codes

  • US United States
  • CA Canada
  • JP3 Japan
  • DE Germany
  • NL Netherlands
  • IT Italy
  • PT Portugal
  • LU Luxembourg
@ismet55555
ismet55555 / Timezones.md
Last active November 10, 2020 22:24
Timezone Designations

Timezone Designations

  • Africa/Abidjan
  • Africa/Accra
  • Africa/Addis_Ababa
  • Africa/Algiers
  • Africa/Asmara
  • Africa/Asmera
  • Africa/Bamako
  • Africa/Bangui
@ismet55555
ismet55555 / Locale_List.md
Last active November 10, 2020 22:24
Locale Designations

Locale Designations

  • af_NA: "Afrikaans (Namibia)",
  • af_ZA: "Afrikaans (South Africa)",
  • af: "Afrikaans",
  • ak_GH: "Akan (Ghana)",
  • ak: "Akan",
  • sq_AL: "Albanian (Albania)",
  • sq: "Albanian",
  • am_ET: "Amharic (Ethiopia)",
@ismet55555
ismet55555 / Keyboard_Layout.md
Last active November 10, 2020 22:26
Keyboard Layout Designations

Keyboard Layout Designations

  • us USA
  • ad Andorra
  • af Afghanistan
  • ara Arabic
  • al Albania
  • am Armenia
  • az Azerbaijan
  • by Belarus
@ismet55555
ismet55555 / ssh_key_auto_distribute.sh
Last active October 23, 2022 03:35
SSH Key Automatic Distribution
#!/bin/bash
###############################################################################
# Automatic SSH Public Key Distributor Script
###############################################################################
#
# This script automates the distribution of your public SSH key
# Once the public SSH key is on the remote system, you don't have to
# use a manual password to enter that remote system.
#