Skip to content

Instantly share code, notes, and snippets.

View MaxCodeXTC's full-sized avatar
🎯
Focusing

PT Philip MaxCodeXTC

🎯
Focusing
  • DeepCloud Inc.
  • S.E.A.
View GitHub Profile
@MaxCodeXTC
MaxCodeXTC / App.css
Created May 16, 2022 14:03 — forked from adrianhajdin/App.css
Movie App
@import url("https://fonts.googleapis.com/css?family=Roboto+Slab:100,300,400,700");
@import url("https://fonts.googleapis.com/css?family=Raleway:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");
* {
margin: 0;
border: 0;
box-sizing: border-box;
}
:root {
@import url("https://fonts.googleapis.com/css?family=Roboto+Slab:100,300,400,700");
@import url("https://fonts.googleapis.com/css?family=Raleway:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");
* {
margin: 0;
border: 0;
box-sizing: border-box;
}
:root {
@MaxCodeXTC
MaxCodeXTC / python_heroku.MD
Created February 5, 2022 14:00 — forked from bradtraversy/python_heroku.MD
Python & Postgres Heroku Deployment

Python Heroku Deployment

Steps to create a postgres database and deply a Python app to Heroku

Install guinicorn locally

pipenv install gunicorn
or
pip install gunicorn
@MaxCodeXTC
MaxCodeXTC / index.html
Created December 13, 2021 17:12 — forked from gitdagray/index.html
HTML and CSS for Javascript DOM Tutorial
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Page</title>
<style>
* {
margin: 0;
padding: 0;
@gitdagray
gitdagray / index.html
Created November 21, 2021 23:17
HTML and CSS for Javascript DOM Tutorial
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Page</title>
<style>
* {
margin: 0;
padding: 0;
@stephenleo
stephenleo / 00_SQL in Google Colab.md
Last active January 29, 2024 07:31
[Medium] SQL in Google Colab

SQL in Google Colab

All the code for the Medium Post

Open In Colab

@MaxCodeXTC
MaxCodeXTC / python_mysql.py
Created June 15, 2020 23:57 — forked from bradtraversy/python_mysql.py
Python & MySQL crash course for beginners
import mysql.connector
from mysql.connector import errorcode
config = {
'user': 'root',
'password': '',
'host': 'localhost',
'database': 'acme'
}
@bradtraversy
bradtraversy / python_mysql.py
Last active August 5, 2023 12:47
Python & MySQL crash course for beginners
import mysql.connector
from mysql.connector import errorcode
config = {
'user': 'root',
'password': '',
'host': 'localhost',
'database': 'acme'
}
  • repo -> repository
  • clone -> bring a repo down from the internet (remote repository like Github) to your local machine
  • add -> track your files and changes with Git
  • commit -> save your changes into Git
  • push -> push your changes to your remote repo on Github (or another website)
  • pull -> pull changes down from the remote repo to your local machine
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.