Skip to content

Instantly share code, notes, and snippets.

View phreakin's full-sized avatar

Phreakin phreakin

View GitHub Profile
@phreakin
phreakin / parse_facebook_archive.py
Last active April 25, 2025 05:16
A python script to parse Facebook messenger data from your downloaded Facebook data and creates searchable html files of them
import os
import json
import re
import shutil
from pathlib import Path
from datetime import datetime
from argparse import ArgumentParser
from html import escape
MY_NAME = "YOUR NAME AS IT IS ON FB HERE"
@phreakin
phreakin / FontAwesome 5 all icons in list.txt
Created June 15, 2023 04:33 — forked from cristianstan/FontAwesome 5 all icons in list.txt
FontAwesome 5 cheatsheet all icons in PHP array.php
fab fa-500px
fab fa-accessible-icon
fab fa-accusoft
fab fa-acquisitions-incorporated
fas fa-ad
fas fa-address-book
fas fa-address-card
fas fa-adjust
fab fa-adn
fab fa-adobe
// Functions first
@import "bootstrap/scss/functions";
// Required Bootstrap imports
@import "bootstrap/scss/variables";
@import "bootstrap/scss/mixins";
// Optional components
@import "bootstrap/scss/utilities";
@import "bootstrap/scss/reboot";
// Base Colors
$primary: #8a81fd !default;
$secondary: #1f1f1f !default;
$success: #4ffdb3 !default;
$info: #68a8fd !default;
$warning: #fcb24f !default;
$danger: #fc5c4f !default;
$light: #f8f8f2 !default;
$dark: #282a36 !default;
$gray: #555555 !default;
// Dracula Theme
$primary: #bd93f9 !default;
$secondary: #6272a4 !default;
$success: #50fa7b !default;
$info: #8be9fd !default;
$warning: #f1fa8c !default;
$danger: #ff5555 !default;
$light: #f8f8f2 !default;
$dark: #282a36 !default;
$gray: #44475a !default;
module.exports = {
plugins: {
tailwindcss: {
config: './tailwind.config.js',
css: [
'./resources/css/site.css',
'./resources/css/tailwind.css',
],
@phreakin
phreakin / tailwind.config.js
Created May 17, 2023 19:20
tailwind.config.js
let defaultTheme = require('tailwindcss/defaultTheme');
let colors = require('tailwindcss/colors');
let tailwindMultiTheme = require('tailwindcss-multi-theme');
let tailwindBrandColors = require('tailwindcss-brand-colors');
module.exports = {
content: [
'./resources/**/*.antlers.html',
'./resources/**/*.antlers.php',
'./resources/**/*.blade.php',
'./resources/**/*.vue',
@phreakin
phreakin / colors.scss
Last active May 17, 2023 04:05
Tons Of CSS Color Stuff. League, Team, Themes, Seasonal,etc
// Root Colors
$root{
$primary: #3b82f6;
$secondary: #64748b;
$success: #10b981;
$info: #3b82f6;
$warning: #f59e0b;
$danger: #ef4444;
$light: #f9fafb;
$dark: #1f2937;
@phreakin
phreakin / pint.json
Created May 15, 2023 12:44
pint.json
{
"preset": "laravel",
"rules": {
"blank_line_before_statement": {
"statements": [
"return",
"try"
]
},
"concat_space": {
@phreakin
phreakin / material.css
Created May 13, 2023 06:38
material.css
.material-red.lighten-5 {
background-color: #ffebee;
}
.material-red-text.text-lighten-5 {
color: #ffebee;
}
.material-red-border.border-lighten-5 {
border-color: #ffebee;