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 {
@MaxCodeXTC
MaxCodeXTC / grokking_to_leetcode.md
Created March 30, 2022 15:23 — forked from tykurtz/grokking_to_leetcode.md
Grokking the coding interview equivalent leetcode problems

GROKKING NOTES

I liked the way Grokking the coding interview organized problems into learnable patterns. However, the course is expensive and the majority of the time the problems are copy-pasted from leetcode. As the explanations on leetcode are usually just as good, the course really boils down to being a glorified curated list of leetcode problems.

So below I made a list of leetcode problems that are as close to grokking problems as possible.

Pattern: Sliding Window

@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;
@MaxCodeXTC
MaxCodeXTC / plot_confusion_matrix.png
Created August 5, 2021 07:25 — forked from hitvoice/plot_confusion_matrix.png
Generate matrix plot for confusion matrix with pretty annotations.
plot_confusion_matrix.png

SQL in Google Colab

All the code for the Medium Post

Open In Colab

@MaxCodeXTC
MaxCodeXTC / importJSON.gs
Created July 3, 2021 17:10 — forked from stefanjudis/importJSON.gs
API data in google sheets
/**
* Retrieves all the rows in the active spreadsheet that contain data and logs the
* values for each row.
* For more information on using the Spreadsheet API, see
* https://developers.google.com/apps-script/service_spreadsheet
*/
function readRows() {
var sheet = SpreadsheetApp.getActiveSheet();
var rows = sheet.getDataRange();
var numRows = rows.getNumRows();
eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJhdWQiOiI5MGMyYzEwNS1jMTQzLTQ0MzAtYjMzMi1jNWE0YzA1ZTVkMmQiLCJqdGkiOiIzMzcxMjRmMWNjMGI1NzA5YTUzNDY0YzZmZWZjM2YwNTNkYmU2OTc1MmMzYzE1NTE4OTU5NDU3MmFkMzNkNTk0YmY5YjgwMGIyMTg2NWQ0OSIsImlhdCI6MTYyMjcyNjM0MywibmJmIjoxNjIyNzI2MzQzLCJleHAiOjE2NTQyNjIzNDMsInN1YiI6IjEiLCJzY29wZXMiOltdfQ.DVc5ZERVy1z0Y8SLjRP7aV8NWYYjJCW_ny1b7RJPQvZ6zSy-IVVseqqMWIgL_rrOQO_k9Pa-3MOq1qTjHHQQkIrFo4QseWhYPdCboWHJ5lomfv1FdzzGVXUx_O5lNgWynhqHwJL93O2oX_0FAw62jacbMEiouqsI9dg7HtcGh-z3E7zQaM7DjyCWgToQxu2lr7QQpEpVAcY6k5e7QkWxiFU-OeC7gxkBOgvU4kIxu1fP-hCBD2ZVXHeCGXyR0TCkb7e6KcrVljwkAZ7toka8bfjlT_N95cVrPwNV5k9a1zrA6f5zm41tmatgK7V_sHYlBN7f9IhEaRSFzVmmsZ3cdGPLCYOT6WjHyxMPoazXcUK-D_ZtInGiydpN3-Qtj6A2vqWu2HlOhXIRCipz5lb3iUGiO7DpYhhY33vBtxNJ0jAnpx9_lIlwHZpnZmTTwz64Sk0IOQvRuccawBoP9fZh9iCVUE4RexcKHATWcrEtfJbtJwP2UYox7e7MseJPqkgs7oQZxkMdxXwaIhEgwXau9bm-NPJqnqXBz9Hag-jOqkkIlGQv42fC_BzNlM99LkkD2BqIdIGMm28KOMu-d3UnwAUH1xilXXodhtFLFA1iTKApJg5kHMUtcvr0qU0hYlfv-TP_X48NGe8Gg9gA3yH0XcoTiBzKTmMx62J5wDEp2Og
---
title: "Rmarkdown"
author: "me"
date: "7/17/2020"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.