Skip to content

Instantly share code, notes, and snippets.

View tyllyn's full-sized avatar
😴
Always ready to nap

Joshua Petry tyllyn

😴
Always ready to nap
View GitHub Profile
@arawrshi
arawrshi / 00 - pw - saves.md
Last active January 16, 2025 00:14
Palworld - Convert saves to json and back
@kyledrake
kyledrake / ferengi-plan.txt
Last active July 23, 2025 20:52
How to throttle the FCC to dial up modem speeds on your website using Nginx
# The blog post that started it all: https://neocities.org/blog/the-fcc-is-now-rate-limited
#
# Current known FCC address ranges:
# https://news.ycombinator.com/item?id=7716915
#
# Confirm/locate FCC IP ranges with this: http://whois.arin.net/rest/net/NET-165-135-0-0-1/pft
#
# In your nginx.conf:
location / {
@nessthehero
nessthehero / YouTube CKEditor Plugin
Last active December 25, 2015 21:29
YouTube CKEditor Plugin
ckeditor
-plugins
--youtube
---dialogs
----youtube.js
---icons
----youtube.png
---plugin.js
@messified
messified / php-interview.md
Last active July 1, 2024 05:15
PHP Engineer Interview: What you should know

PHP Developer Interview: What you should know

1. What’s the difference between " self " and " this " ?

Use $this to refer to the current object. Use self to refer to the current class. In other words, use $this->member for non-static members, use self::$member for static members.

Source: When to use self vs this -stackoverflow