Skip to content

Instantly share code, notes, and snippets.

@cryptods8
cryptods8 / framedl-wordlist.txt
Created May 9, 2024 13:57
Framedl wordlist
abaci
aback
abaft
abase
abash
abate
abbey
abbot
abeam
abets
@CHSuworatrai
CHSuworatrai / VMware vSphere 6.x Licence Keys
Created April 8, 2021 09:20 — forked from DVSB/VMware vSphere 6.x Licence Keys
VMware vSphere 6 and 7 Licence Keys
VMware vSphere 6 Enterprise Plus
1C20K-4Z214-H84U1-T92EP-92838
1A2JU-DEH12-48460-CT956-AC84D
MC28R-4L006-484D1-VV8NK-C7R58
5C6TK-4C39J-48E00-PH0XH-828Q4
4A4X0-69HE3-M8548-6L1QK-1Y240
VMware vSphere with Operations Management 6 Enterprise
4Y2NU-4Z301-085C8-M18EP-2K8M8
1Y48R-0EJEK-084R0-GK9XM-23R52
@walkermatt
walkermatt / debounce.py
Created June 4, 2012 21:44
A debounce function decorator in Python similar to the one in underscore.js, tested with 2.7
from threading import Timer
def debounce(wait):
""" Decorator that will postpone a functions
execution until after wait seconds
have elapsed since the last time it was invoked. """
def decorator(fn):
def debounced(*args, **kwargs):
def call_it():
@Blackshome
Blackshome / bathroom-humidity-exhaust-fan.yaml
Last active May 17, 2024 08:34
bathroom-humidity-exhaust-fan.yaml
blueprint:
name: Bathroom Humidity Exhaust Fan
description: >
# ๐Ÿšฟ Bathroom Humidity Exhaust Fan
**Version: 2.3**
Step into the future of freshness - customize it your way and let the automated fan system handle the humidity control for you! ๐ŸŒฟ๐Ÿšฟ
@rxaviers
rxaviers / gist:7360908
Last active May 17, 2024 08:34
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:
@omkz
omkz / rabbit.md
Last active May 17, 2024 08:33
How to Install RabbitMQ on Ubuntu 18.04

Copy the following script and save it in your server as rabbit.sh:

#!/bin/sh
## If sudo is not available on the system,
## uncomment the line below to install it
# apt-get install -y sudo
sudo apt-get update -y
## Install prerequisites
sudo apt-get install curl gnupg -y
@Quramy
Quramy / README.md
Created August 3, 2022 08:49
Thinking GraphQL Client cache

GraphQL Client ใซใŠใ‘ใ‚‹ Cache ใฎ่ฉฑ

Client Caching

Relay ใ‚„ Apollo ใฎใ‚นใ‚ฟใƒณใ‚น:

  • Performance ้ƒฝๅˆใฎใฟใงใ‚ใ‚Œใฐใ€Document Cache ใงใ‚‚ๅๅˆ†ใ€‚
  • Cached Data ใฎไธ€่ฒซๆ€งใ‚’ไฟๆŒใ™ใ‚‹ใ“ใจใ‚’่€ƒใˆใ‚‹ใจใ€Document Cache ใงใฏไธๅๅˆ†ใงใ‚ใ‚Šใ€ๆญฃ่ฆๅŒ–ใŒๅฟ…่ฆ

https://relay.dev/docs/principles-and-architecture/thinking-in-graphql/#client-caching

@OrionReed
OrionReed / dom3d.js
Last active May 17, 2024 08:27
3D DOM viewer, copy-paste this into your console to visualise the DOM topographically.
// 3D Dom viewer, copy-paste this into your console to visualise the DOM as a stack of solid blocks.
// You can also minify and save it as a bookmarklet (https://www.freecodecamp.org/news/what-are-bookmarklets/)
(() => {
const SHOW_SIDES = false; // color sides of DOM nodes?
const COLOR_SURFACE = true; // color tops of DOM nodes?
const COLOR_RANDOM = false; // randomise color?
const COLOR_HUE = 190; // hue in HSL (https://hslpicker.com)
const MAX_ROTATION = 180; // set to 360 to rotate all the way round
const THICKNESS = 20; // thickness of layers
const DISTANCE = 10000; // ยฏ\\_(ใƒ„)_/ยฏ
@arafathusayn
arafathusayn / Emoji-on-Ubuntu.md
Last active May 17, 2024 08:27
Guide to enable system-wide Emoji support on Ubuntu ๐Ÿคฉ

1. Install Fonts

sudo apt install fonts-noto-color-emoji

2. Add Font Configuration

  • Open ~/.config/fontconfig/conf.d/01-emoji.conf file in an editor.
  • Copy-paste the lines below:
@ahwillia
ahwillia / msplines.py
Last active May 17, 2024 08:26
Generate M-spline functions in Python
"""
Python code to generate M-splines.
References
----------
Ramsay, J. O. (1988). Monotone regression splines in action.
Statistical science, 3(4), 425-441.
"""
import numpy as np