Skip to content

Instantly share code, notes, and snippets.

@rxaviers
rxaviers / gist:7360908
Last active January 4, 2026 05:25
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:
@CHIZI-0618
CHIZI-0618 / PuerNya_sing-box_fakeip_client_config.jsonc
Last active January 4, 2026 05:24
sing-box ๅธฆๆœ‰ Proxy Providers ็š„ๅฎขๆˆท็ซฏ้…็ฝฎ็คบไพ‹
{
"log": {
"level": "info",
"output": "sing-box.log",
"timestamp": true
},
"dns": {
"servers": [
{
"tag": "cloudflare",
@rueycheng
rueycheng / GNU-Make.md
Last active January 4, 2026 05:20
GNU Make cheatsheet
@MichaelLawton
MichaelLawton / deleteAmazonSavedItems.js
Last active January 4, 2026 05:19
Removes all Amazon saved for later items on the cart page. It will only remove visible items. You might want to scroll first to make more items visible. To use paste code in developer console (Ctrl+Shift+J or Cmd+Opt+J in Chrome) then press enter.
function deleteSavedItems() {
var query = document.querySelectorAll("#sc-saved-cart input[value=Delete]")
if (query.length) {
query[0].click();
}
if (query.length > 1) {
setTimeout(deleteSavedItems,100);
}
else {
console.log('Finished');
@EverythingSmartHome
EverythingSmartHome / All open windows and doors
Last active January 4, 2026 05:14
A collection of useful templates for Home Assistant dashboards
{{ states.binary_sensor
| selectattr('attributes.device_class', 'in', ['door','window'])
| selectattr('state', 'equalto', 'on')
| list | count }}
@rydurham
rydurham / Dockerfile
Created September 7, 2025 03:14
Automating Laravel Wayfinder in Docker without Vite
FROM php:8.4-alpine
LABEL maintainer="Ryan Durham <[email protected]>"
# Set up a www-data user with UID 1000 and GID 1000
ARG NAME=www-data
ENV NAME=${NAME}
RUN deluser www-data && \
adduser -s /bin/sh -D -u 1000 -g '' ${NAME} ${NAME} && \
chown -R ${NAME}:${NAME} /home/${NAME}
@pabloestradac
pabloestradac / GSOC_Panel_Summary.md
Last active January 4, 2026 05:08
Summary of the project of panel data estimations of Google Summer of Code 2020.

GSoC 2020 - Panel Data Spatial Econometrics

This post summarizes the work of the PySAL Project on Panel Data Spatial Econometrics. The work is divided in the following sections. First, I explain the utilities used to handle panel data in spreg. Second, I show the diagnostics implemented for spatial - panel estimations. Finally, I detail the different models that can be estimated.

The notebook Panel_example.ipynb offers an overview of the new estimations that can be useful from the user perspective.

Utilities

The utilities for the panel data estimation are located in the file panel_utils.py.

@DakotaLMartinez
DakotaLMartinez / instructions.md
Last active January 4, 2026 05:06
Adding an SSH key to GitHub (Mac OS X or Linux)
@marckohlbrugge
marckohlbrugge / x.sh
Created January 3, 2026 08:43
Requires jq. Simple command to work around X blocking bots. Returns LLM-friendly summary of a user account or post. Put in bin/ and optionally instruct Claude or your favorite LLM to use it when trying to fetch X links.
#!/bin/bash
# Fetch tweet or user profile in an LLM-friendly format using fxtwitter API
set -e
if [ -z "$1" ]; then
echo "Usage: x <twitter-url-or-username>"
echo "Examples:"
echo " x https://x.com/marckohlbrugge/status/2005972157445333371"
echo " x https://x.com/marckohlbrugge"
@shoui520
shoui520 / readmore.md
Last active January 4, 2026 05:01
Chinese Yomichan Setup

Yomitan setup for Chinese

https://learnjapanese.moe

Yomitan (formerly Yomichan) is a browser extension created for Japanese which enables its users to quickly and efficiently look up words on a webpage.
While it is made for Japanese, it is possible to use it for other languages, including Chinese.

Getting Yomitan

Yomitan is available for both Chromium and Firefox based browsers. You can find the respective versions below.