Skip to content

Instantly share code, notes, and snippets.

View jcchikikomori's full-sized avatar

John Cyrill Corsanes jcchikikomori

View GitHub Profile
@jcchikikomori
jcchikikomori / rarreg.key
Created January 23, 2023 01:42 — forked from MuhammadSaim/rarreg.key
RAWRKEY
RAR registration data
WinRAR
Unlimited Company License
UID=4b914fb772c8376bf571
6412212250f5711ad072cf351cfa39e2851192daf8a362681bbb1d
cd48da1d14d995f0bbf960fce6cb5ffde62890079861be57638717
7131ced835ed65cc743d9777f2ea71a8e32c7e593cf66794343565
b41bcf56929486b8bcdac33d50ecf773996052598f1f556defffbd
982fbe71e93df6b6346c37a3890f3c7edc65d7f5455470d13d1190
6e6fb824bcf25f155547b5fc41901ad58c0992f570be1cf5608ba9
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Javascript Quiz</title>
<script src="quiz.js" ></script>
</head>
<body >
@jcchikikomori
jcchikikomori / podman_pods_mariadb.ps1
Last active October 2, 2022 11:48 — forked from kameshsampath/podman_pods_mariadb.txt
Running mariadb as podman pods
podman pod kill db
podman pod rm db
# podman pod create db
podman run -dt --rm --pod new:db --name mariadb -e MARIADB_ROOT_USER=johnc -e MARIADB_ROOT_PASSWORD=johnc -p 3306:3306 -p 8082:8080 docker.io/bitnami/mariadb:latest
podman run -dt --rm --pod db --name adminer docker.io/adminer
# OPTIONAL
podman run -d -p 9443:9443 -p 8000:8000 --security-opt label=disable --name=portainer --restart=always -v /run/user/1000/podman/podman.sock:/var/run/docker.sock:Z -v portainer_data:/data docker.io/portainer/portainer-ce:2.13.1
@jcchikikomori
jcchikikomori / netflixSubForYoutube.js
Last active August 19, 2022 10:12
Youtube Netflix Subtitles (modified to optimize other videos that doesn't have line breaks)
// ==UserScript==
// @name YouTube Netflix Subtitles
// @namespace http://userstyles.org
// @description The famous Netflix subtitltes with the drop shadow for YouTube.
// @author @ang3lo_azedo
// @homepage https://userstyles.org/styles/206563
// @include https://www.youtube.com/watch*
// @run-at document-start
// @version 0.20211221154624
// ==/UserScript==
@jcchikikomori
jcchikikomori / HOWTO.md
Created July 17, 2022 13:13 — forked from cvan/HOWTO.md
How to serve a custom HTTPS domain on GitHub Pages with CloudFlare: *FREE*, secure and performant by default

Instructions

CloudFlare is an awesome reverse cache proxy and CDN that provides DNS, free HTTPS (TLS) support, best-in-class performance settings (gzip, SDCH, HTTP/2, sane Cache-Control and E-Tag headers, etc.), minification, etc.

  1. Make sure you have registered a domain name.
  2. Sign up for CloudFlare and create an account for your domain.
  3. In your domain registrar's admin panel, point the nameservers to CloudFlare's (refer to this awesome list of links for instructions for various registrars).
  4. From the CloudFlare settings for that domain, enable HTTPS/SSL and set up a Page Rule to force HTTPS redirects. (If you want to get fancy, you can also enable automatic minification for text-based assets [HTML/CSS/JS/SVG/etc.], which is a pretty cool feature if you don't want already have a build step for minification.)
  5. If you
@jcchikikomori
jcchikikomori / gaming-ports-for-huawei-EG8145V5.png
Last active July 25, 2023 15:39 — forked from renomureza/list-online-gaming-ports-for-mikrotik.txt
List of online gaming ports that can be used to optimize the HUAWEI EG8145V5 (Converge's OEM router)
gaming-ports-for-huawei-EG8145V5.png
{
"final_space": true,
"console_title": true,
"console_title_style": "folder",
"blocks": [
{
"type": "prompt",
"alignment": "left",
"horizontal_offset": 0,
"vertical_offset": 0,
@jcchikikomori
jcchikikomori / yay.txt
Created June 20, 2022 08:03
My Arch Linux WSL Packages
aalib
abseil-cpp
accountsservice
acl
adobe-source-code-pro-fonts
adwaita-icon-theme
alsa-lib
alsa-plugins
alsa-topology-conf
alsa-ucm-conf
@jcchikikomori
jcchikikomori / Homebrew Install Top Google Fonts.md
Last active November 17, 2022 15:37 — forked from petsto/Homebrew Install Top Google Fonts.md
Quickly install top Google fonts via Homebrew

List of some top fonts for easy terminal install via Homebrew Fonts Cask.

brew install --cask font-open-sans \
 font-noto-sans \
 font-roboto font-roboto-mono font-roboto-slab \
 font-montserrat \
 font-lato \
 font-fira-code \
 font-source-code-pro \
@jcchikikomori
jcchikikomori / README.md
Created March 2, 2022 10:09 — forked from djfdyuruiry/README.md
WSL 2 - Enabling systemd

Enable systemd in WSL 2

This guide will enable systemd to run as normal under WSL 2. This will enable services like microk8s, docker and many more to just work during a WSL session. Note: this was tested on Windows 10 Build 2004, running Ubuntu 20.04 LTS in WSL 2.

  • To enable systemd under WSL we require a tool called systemd-genie

  • Copy the contents of install-sg.sh to a new file /tmp/install-sg.sh:

    cd /tmp