Skip to content

Instantly share code, notes, and snippets.

View phreakin's full-sized avatar

Phreakin phreakin

View GitHub Profile
@phreakin
phreakin / xbox_games_list.csv
Created July 28, 2025 08:19
Xbox.com_Games_List
title cover_sm cover_md cover_lg cover_orig icon banner background is_preorder original_price discount_price is_free discount subtitle edition released genre subgenre developer publisher is_xbox ix_xbox_one is_xbox_one_s is_addon is_dlc is_game_pass is_game_pass_ultimate is_game_pass_pc is_cloud_gaming is_ea_play is_ubisoft_plus rating rating_details has_trial is_active is_validated created_at updated_at
ACA NEOGEO PULSTAR
ACA NEOGEO PUZZLE BOBBLE
ACA NEOGEO PUZZLE BOBBLE 2
ACA NEOGEO PUZZLED
ACA NEOGEO RAGNAGARD
ACA NEOGEO REAL BOUT FATAL FURY
ACA NEOGEO REAL BOUT FATAL FURY 2
ACA NEOGEO REAL BOUT FATAL FURY SPECIAL
ACA NEOGEO RIDING HERO
@phreakin
phreakin / light-form-theme-light.css
Last active May 26, 2025 13:37
CSS color theme that applies to all form elements inside .theme-light scope
/* ===================================================================
Universal Light Theme Form Stylesheet
- Applies to all form elements inside .theme-light scope
- Modular, safe, and override-friendly
=================================================================== */
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code&display=swap');
@phreakin
phreakin / dark-form-theme-scaffold.css
Last active May 26, 2025 13:39
CSS color theme that applies to all form elements inside .theme-dark scope
/* ===================================================================
Universal Dark Theme Form Stylesheet
- Applies to all form elements inside .theme-dark scope
- Modular, safe, and override-friendly
=================================================================== */
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code&display=swap');
@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',