Skip to content

Instantly share code, notes, and snippets.

View janduplessis883's full-sized avatar
🎯
Focusing

Jan du Plessis janduplessis883

🎯
Focusing
  • London
  • 14:37 (UTC +01:00)
View GitHub Profile
@janduplessis883
janduplessis883 / autonote.py
Last active April 14, 2023 14:27
AutoNote Jupyter Notebook Code Snippet Manager
# AutoNote version 3.8 (MySQL Database)
import json
import uuid
import mysql.connector
from IPython.display import display, clear_output, Javascript, HTML
from ipywidgets import Button, Output, HBox, Textarea, Checkbox, widgets, ButtonStyle
import os
from datetime import date
import autonote_config as ac
import colorsys
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@janduplessis883
janduplessis883 / Matt Harrison Effective Pandas.ipynb
Last active April 28, 2023 20:58
Matt Harrison Code Along - Pandas Chaining and Type Management
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@janduplessis883
janduplessis883 / 4 New Pandas Functions.ipynb
Created May 2, 2023 13:12
4 New Pandas Function to use .query() .nlargest() .groupby() and .cut()
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@janduplessis883
janduplessis883 / Framingham Cardiovascular Risk Logistic Regression.ipynb
Created May 10, 2023 16:44
Framingham Cardiovascular Risk Logistic Regression
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@janduplessis883
janduplessis883 / Data Viz Notebook.ipynb
Created May 11, 2023 18:15
Data Visulisation Lecture Notebook
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@janduplessis883
janduplessis883 / Linear Regression with Neural Network.ipynb
Created May 20, 2023 23:50
Linear Regression with Neural Network
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@janduplessis883
janduplessis883 / custom.css
Created June 30, 2023 22:58
POP Light Theme for Jupyter Notebook
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
.CodeMirror pre, .CodeMirror-dialog, .CodeMirror-dialog .CodeMirror-search-field, .terminal-app .terminal {
font-family: 'Inter';
font-size: 12pt;
}
body {
font-family: 'Inter', sans-serif !important;
color: #263333; /* change to the color you want */
}
h1 {
@janduplessis883
janduplessis883 / jupyter_notebook_theme.css
Created December 14, 2023 17:20
Custom Jupyter Notebook Theme based on Pop Lite
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
.CodeMirror pre, .CodeMirror-dialog, .CodeMirror-dialog .CodeMirror-search-field, .terminal-app .terminal {
font-family: 'Inter';
font-size: 12pt;
}
body {
font-family: 'Inter', sans-serif !important;
color: #263333; /* change to the color you want */
}
h1 {
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.