Aug
                
                
                02
            Postgresql Cheatsheet
            
                Published 08:08 Aug 02, 2020 by @ezra.
            
            
                #Programming# PostgreSQL cheatsheet
Install:
sudo apt update
sudo apt install postgresql postgresql-contrib
PSQ...
            
            
            
        
            
            Aug
                
                
                02
            Bootstrap Cheatsheet
            
                Published 08:08 Aug 02, 2020 by @ezra.
            
            
                #Programming# Bootstrap Cheatsheet
Install bootstrap with either local download or CDN
<!-- Latest compiled and...
            
            
            
        
            
            Aug
                
                
                02
            Django Cheatsheet
            
                Published 08:08 Aug 02, 2020 by @ezra.
            
            
                #Programming# Django Cheatsheet
https://docs.djangoproject.com/en/3.2/topics/
Table of Contents:
- Installing Djan...
            
            
            
        
            
            Aug
                
                
                02
            Git Cheatsheet
            
                Published 08:08 Aug 02, 2020 by @ezra.
            
            
                #Programming# 
for seeing conflicted files:
  git diff --name-only --diff-filter=U
...
            
            
            
        
            
            Aug
                
                
                02
            Python packaging Cheatsheet
            
                Published 08:08 Aug 02, 2020 by @ezra.
            
            
                #Programming# Python Packaging
[ ] In your __init__.py files export that classes and functions you want to export...
            
            
            
        
            
            Aug
                
                
                02
            Unittest Cheatsheet
            
                Published 08:08 Aug 02, 2020 by @ezra.
            
            
                #Programming# Unittest
Unittest is an test frameowrk written for python. Unittest supports some important concepts...
            
            
            
        
            
            Aug
                
                
                02
            Freelance notes Cheatsheet
            
                Published 08:08 Aug 02, 2020 by @ezra.
            
            
                #Programming# Freelance Notes
Notes from Jamie Brindles Book
Chapter 1: The Surplus Mindset
In freelancing the pr...
            
            
            
        
            
            Aug
                
                
                02
            Media queries Cheatsheet
            
                Published 08:08 Aug 02, 2020 by @ezra.
            
            
                #Programming# Media Queries
/* Mobile Small  --------------------------------------------------------- */
@media s...
            
            
            
        
            
            Aug
                
                
                02
            Sqlite Cheatsheet
            
                Published 08:08 Aug 02, 2020 by @ezra.
            
            
                #Programming# SQLite
Installing update
$ sudo apt install sqlite3
And to run the sqlite program you do
$ sqlite3...
            
            
            
        
            
            Aug
                
                
                02
            Mongodb Cheatsheet
            
                Published 08:08 Aug 02, 2020 by @ezra.
            
            
                #Programming# MongoDB
MongoDB is an open-source document database and leading NoSQL database. MongoDB is written i...
            
            
            
        
            
            Aug
                
                
                02
            Data table Cheatsheet
            
                Published 08:08 Aug 02, 2020 by @ezra.
            
            
                #Programming# Data Table
While working with data tables if you want to populate the table from an ajax call, you h...
            
            
            
        
            
            Aug
                
                
                02
            Python sqlite Cheatsheet
            
                Published 08:08 Aug 02, 2020 by @ezra.
            
            
                #Programming# Sqlite - Python Driver
import sqlite3
from sqlite3 import Error
try:
    conn = sqlite3.connect(...