Skip to content

Instantly share code, notes, and snippets.

View PraneethKarnena's full-sized avatar
🎯
Focusing

Praneeth Karnena PraneethKarnena

🎯
Focusing
View GitHub Profile
@PraneethKarnena
PraneethKarnena / Public_Time_Servers.md
Created April 6, 2020 14:32 — forked from mutin-sa/Top_Public_Time_Servers.md
List of Top Public Time Servers

Google Public NTP [AS15169]:

time.google.com

time1.google.com

time2.google.com

time3.google.com

@PraneethKarnena
PraneethKarnena / start_redis_server_mac.sh
Created April 13, 2020 06:36
Start Redis Server On Mac Installed Using Brew
redis-server /usr/local/etc/redis.conf
@PraneethKarnena
PraneethKarnena / bootstrap_center_content_inside_row.html
Created April 19, 2020 13:31
Bootstrap - Center Content Inside Row
<div class="col-md-4 d-flex justify-content-center"></div>
@PraneethKarnena
PraneethKarnena / settings.py
Last active November 2, 2020 18:13
Django production-grade configuration settings
# settings.py - Django 2.2
SECURE_CONTENT_TYPE_NOSNIFF = True
SECURE_BROWSER_XSS_FILTER = True
SECURE_SSL_REDIRECT = True
SESSION_COOKIE_SECURE = True
CSRF_COOKIE_SECURE = True
EMAIL_USE_TLS = True
SERVER_EMAIL = '[email protected]'
@PraneethKarnena
PraneethKarnena / nginx.conf
Last active November 2, 2020 17:30
Nginx production-grade configuration
user nginx;
worker_processes 2;
worker_rlimit_nofile 65535;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 65535;
@PraneethKarnena
PraneethKarnena / index.html
Created September 2, 2020 17:34
Suspended page
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="txt1">ACCOUNT SUSPENDED</div>
<div class="txt2">This account has been suspended.</div>
<div class="logo"><img src="http://blog.codepen.io/wp-content/uploads/2012/06/Black-Large.png" width="200px"></div>
<div id="orbit-system">
@PraneethKarnena
PraneethKarnena / socks_proxy.sh
Created October 2, 2020 07:24
Socks Proxy Server - Bash Command
#!/bin/bash
ssh -D 8123 -f -C -q -N praneeth@<IP-Address>
@PraneethKarnena
PraneethKarnena / django_best_practices.md
Last active June 6, 2022 01:11
Django Best Practices

Django Best Practices - Powered by Two Scoops of Django

  • Use Django-Cookiecutter for a base project template
  • App name should be a plural of the main model in the app, like subscriptions, payments
  • Always use BaseModel with id (UUID), created_at & updated_at. Every model sub-classes this model
  • Always use AbstractUser all the time, even though you don't need one
  • Always use multiple settings.py files, like base.py, production.py
  • Use DJANGO_SETTINGS_MODULE variable in your .env file
  • Always use a .env file for managing keys and other secret info
  • Always have multiple requirements.txt files: requirements/base.txt, requirements/dev.txt
@PraneethKarnena
PraneethKarnena / sshd
Created October 31, 2020 06:53
SSH settings
# $OpenBSD: sshd_config,v 1.103 2018/04/09 20:41:22 tj Exp $
# This is the sshd server system-wide configuration file. See
# sshd_config(5) for more information.
# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
# The strategy used for options in the default sshd_config shipped with
# OpenSSH is to specify options with their default value where
# possible, but leave them commented. Uncommented options override the
@PraneethKarnena
PraneethKarnena / nginx_example.com.conf
Last active January 28, 2023 09:34
Nginx Configuration For A Website
server {
listen 80;
listen [::]:80;
server_name teenarp.com www.teenarp.com;
return 301 https://www.teenarp.com$request_uri;
expires max;
}