Skip to content

Instantly share code, notes, and snippets.

View mixcas's full-sized avatar
🎶
hacking for kpop

Carlos Solares mixcas

🎶
hacking for kpop
View GitHub Profile
@imthenachoman
imthenachoman / Developing a GAS Powered Google Workspace Add-on And Launching It To The Marketplace.md
Last active April 4, 2025 23:42
Developing a GAS Powered Google Workspace Add-on And Launching It To The Marketplace
@adactio
adactio / minimal-serviceworker.js
Last active August 18, 2023 09:15
An attempt at a minimal viable service worker.
// Licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
// http://creativecommons.org/publicdomain/zero/1.0/
// HTML files: try the network first, then the cache.
// Other files: try the cache first, then the network.
// Both: cache a fresh version if possible.
// (beware: the cache will grow and grow; there's no cleanup)
const cacheName = 'files';
@meirbon
meirbon / Dell XPS 15 9560 Manjaro Setup instructions
Last active February 1, 2025 11:52
Small, quick guide to set up Manjaro on the XPS 15 9560
# 1. First of all of course get Manjaro:
https://manjaro.org/get-manjaro/
# I recommend using Etcher to copy the image to your USB:
https://etcher.io/
# 2. Before installing make sure:
# - Secure boot is disabled in BIOS
# - Your SSD, HDD or NVME drive is set to AHCI instead of RAID
# - Fastboot should be on Auto or minimal, but this shouldn't matter to much
@ast
ast / iwantmyname.sh
Created May 15, 2017 12:55
Shell script that detects changes to your public ip address and updates your iwantmyname.com nameservers.
#!/usr/local/bin/bash
# Q: What is this?
# A: It's a shell script that updates what ip address your iwantmyname.com domain resolves to.
# I use it from cron.
# Q: What do I have to do?
# A: Add your username and password. Change the domain. Add it to your crontab.
set -e
@mikeyrayvon
mikeyrayvon / wp-auto-install.sh
Last active July 19, 2018 03:15
Download, config, and install Wordpress locally with MAMP and WP-CLI
# Auto Install Wordpress locally with MAMP and WP-CLI on Mac
#
# supply new directory name for Wordpress install as first argument
# supply git clone path as second argument to install theme from git repo
#
# you may need to add this line to your .bash_profile for mysql commands
# export PATH=$PATH:/Applications/MAMP/Library/bin/
#
# assumes that wp-cli.phar is in the bin/ directory of the php version of your MAMP install
#
@gabonator
gabonator / password.txt
Last active October 21, 2025 12:12
HiSilicon IP camera root passwords
Summary of passwords by sperglord8008s, updated November 1. 2020. For login try "root", "default", "defaul" or "root"
00000000
059AnkJ
4uvdzKqBkj.jg
7ujMko0admin
7ujMko0vizxv
123
1111
1234
@alirobe
alirobe / reclaimWindows10.ps1
Last active October 22, 2025 05:28
This Windows 10 Setup Script turns off a bunch of unnecessary Windows 10 telemetery, bloatware, & privacy things. Not guaranteed to catch everything. Review and tweak before running. Reboot after running. Scripts for reversing are included and commented. Fork of https://github.com/Disassembler0/Win10-Initial-Setup-Script (different defaults). N.…
###
###
### UPDATE: For Win 11, I recommend using this tool in place of this script:
### https://christitus.com/windows-tool/
### https://github.com/ChrisTitusTech/winutil
### https://www.youtube.com/watch?v=6UQZ5oQg8XA
### iwr -useb https://christitus.com/win | iex
###
### OR take a look at
### https://github.com/HotCakeX/Harden-Windows-Security
@tsiege
tsiege / The Technical Interview Cheat Sheet.md
Last active October 13, 2025 20:38
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

ANNOUNCEMENT

I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!






\

@BFTrick
BFTrick / install-wp.sh
Last active February 17, 2025 22:11
Download & Install WordPress via Curl
curl -O https://wordpress.org/latest.zip
unzip latest.zip
mv wordpress site
rm latest.zip