Skip to content

Instantly share code, notes, and snippets.

@SMUsamaShah
SMUsamaShah / libretro_genre_to_json.sh
Last active July 27, 2024 02:47
Bash script to convert libretro genre metadata .dat files to json (works on miyoo mini)
#!/bin/sh
input_file="gba.dat"
output_file="output.json"
# declare -A crc_to_genre
# declare -A name_to_genre
inside_game_block=false
crc_to_genre_json=""
@devops-school
devops-school / README.md
Created July 4, 2023 05:31
Sample Resume: DevOps Engineer

Your Name

Address: [Address], [City, State, ZIP]
Phone: [Phone Number]
Email: [Email Address]

Objective

Highly skilled and motivated Site Reliability Engineer (SRE) with [X] years of experience in designing, building, and maintaining highly scalable and reliable systems. Seeking a challenging position where I can leverage my expertise in automation, monitoring, incident response, and infrastructure management to ensure the availability, performance, and efficiency of critical applications and services.

Education

@amiorin
amiorin / README.md
Last active July 27, 2024 02:45
How to configure Home Row Mods with KMonad on macOS

Intro

Karabiner and KMonad are great open source software. Don't forget to support the authors and contributors.

If you want to try home row mods on OSX, don't use Karabiner but KMonad. KMonad is harder at the beginning but then it is easier than Karabiner. Creating layers in KMonad is trivial and without drawbacks, while it is impossible in Karabiner without drawbacks.

You need to compile a PR of the project. Install https://github.com/pqrs-org/Karabiner-DriverKit-VirtualHIDDevice/releases/download/v2.1.0/Karabiner-DriverKit-VirtualHIDDevice-2.1.0.pkg

@devops-school
devops-school / README.md
Created July 4, 2023 05:33
Sample Resume: DevSecOps Engineer

Your Name

Address: [Address], [City, State, ZIP]
Phone: [Phone Number]
Email: [Email Address]

Objective

Highly skilled and motivated DevSecOps Engineer with [X] years of experience in designing, implementing, and securing CI/CD pipelines, cloud infrastructure, and applications. Seeking a challenging position where I can utilize my expertise in DevOps, security, and automation to drive secure and efficient software development and deployment practices.

Education

@techgod143
techgod143 / Lyfe fd ofc
Last active July 27, 2024 02:32
Lyfe fd ofc
const {
forwardOrBroadCast, bot,
parsedJid,
getBuffer,
genThumbnail,
@wpmudev-sls
wpmudev-sls / forminator-skip-steps-in-pagination-form.php
Last active July 27, 2024 02:30
Forminator - Skip Steps in Pagination Form
<?php
/**
* Plugin Name: [Forminator] Skip Steps in Pagination Form
* Plugin URI: https://premium.wpmudev.org
* Description: With this snippet and some extra configurations in your form is possible to skip steps according to user-selected choices in a control field - works with checkboxes, radio buttons and selects.
* Author: Glauber Silva @ WPMUDEV
* Author URI: https://premium.wpmudev.org
* Jira Task: FOR-428 and SLS-263 and SLS-2035
* License: GPLv2 or later
*
@ahem
ahem / loadimage.js
Created October 18, 2016 12:59
Load and decode images with webworker
/* global createImageBitmap */
function loadImageWithImageTag(src) {
return new Promise((resolve, reject) => {
const img = new Image;
img.crossOrigin = '';
img.src = src;
img.onload = () => { resolve(img); };
img.onerror = () => { reject(img); };
});
@miranda-zhang
miranda-zhang / linux.md
Last active July 27, 2024 02:18
Linux Command Cheat Sheet, Ubuntu, CentOS

Linux Command Cheatsheet

Linux Keyboard shortcuts

open terminal: Ctrl+Alt+T

Ctrl + C is used to kill a process with signal SIGINT , in other words it is a polite kill .

Ctrl + Z is used to suspend a process by sending it the signal SIGTSTP , which is like a sleep signal, that can be undone and the process can be resumed again.

@rxaviers
rxaviers / gist:7360908
Last active July 27, 2024 02:16
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: πŸ˜„ :smile: πŸ˜† :laughing:
😊 :blush: πŸ˜ƒ :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
πŸ˜† :satisfied: 😁 :grin: πŸ˜‰ :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: πŸ˜€ :grinning:
πŸ˜— :kissing: πŸ˜™ :kissing_smiling_eyes: πŸ˜› :stuck_out_tongue:
@sundowndev
sundowndev / GoogleDorking.md
Last active July 27, 2024 02:11
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"