Skip to content

Instantly share code, notes, and snippets.

View crushcafeteria's full-sized avatar

Nelson Ameyo crushcafeteria

  • Nairobi, Kenya
View GitHub Profile
@rkjha
rkjha / wordpress_nginx_config.conf
Last active March 17, 2023 10:23
a sample wordpress config for nginx
server {
listen 80;
root /home/username/example.com;
index index.php index.html;
server_name example.com;
location / {
try_files $uri $uri/ /index.php?q=$uri&$args;
@sepehr
sepehr / readable_random_string.php
Last active January 10, 2025 04:19
PHP: Human-readable Random String
<?php
/**
* Generates human-readable string.
*
* @param string $length Desired length of random string.
*
* retuen string Random string.
*/
function readable_random_string($length = 6)
@kevinSuttle
kevinSuttle / meta-tags.md
Last active April 9, 2025 13:51 — forked from lancejpollard/meta-tags.md
List of Usable HTML Meta and Link Tags