Skip to content

Instantly share code, notes, and snippets.

View n2o's full-sized avatar
🕵️‍♂️
...

Christian Meter n2o

🕵️‍♂️
...
View GitHub Profile
@n2o
n2o / wordpress-posts-by-category-shortcode.md
Last active December 3, 2024 10:12
Wordpress Shortcode: Get posts by category and sort them in a grid or slider

Let's assume we have a post type employee and some categories. We want to get all employees, who are assigned to a specific category to add them via a shortcode. The shortcode should have two attributes: category and layout. The category attribute should accept a comma-separated list of category slugs or IDs. The layout attribute should define the output layout: grid or slider.

Here is an example of how to create a shortcode to list employees by category:

/**
 * Listing of employees by category
 *
 * Example: [employee category="Physiotherapie" layout="grid"]
 * - layout="grid": Displays the employees in a grid (default)
@n2o
n2o / sitemap.md
Created October 23, 2024 12:13
Automatic sitemap.xml for NextJS with Internationalization

This script creates a sitemap based on the page.tsx-files found in your app-directory.

Create a file called sitemap.ts inside of your app/ directory of your NextJS application.

Then fill it with this script:

import { globby } from "globby"
import type { MetadataRoute } from "next"
@n2o
n2o / picowifi.md
Created July 14, 2024 21:10
Raspberry Pi Pico W as Wifi Access Point

Pico W as Wifi Access Point

This script spins up the Pico W as a Wifi Access Point. It assigns itself the IP 192.168.4.1 and assigns new Clients some IP starting at 192.168.4.16 or so.

import network
from machine import Pin

led = Pin("LED", Pin.OUT)
@n2o
n2o / strapi.md
Created May 4, 2023 13:50
Strapi: The missing Docs

Strapi: The missing Docs

Strapi is a great project, but lacks of a good documentation concerning customization. This gist presents some of my findings / experiments to customize strapi.

users-permissions plugin

Add policies to existing routes

My use-case: find and findOne need to be active to keep nested queries on other user-relations. But if I allow authenticated users to access these routes, they can access all users. So I customize these routes with my own policies:

@n2o
n2o / strapi_testing_grantPrivileges.md
Created February 16, 2023 16:06
Grant Privileges to a Role in Strapi (e.g. for testing)

To give access to a role from the users-permissions model in Strapi v4, you need to create a permission and add it to the role.

Useful for testing. Gives authenticated users access to the provided routes.

import request from "supertest";
import { setupStrapi, stopStrapi } from "../../../../tests/helpers/strapi";
import { createUser } from "../../../../tests/user/factory";

let user;
@n2o
n2o / strapi.ts
Created December 8, 2022 11:41
Strapi v4 Testing: setup and tearDown in TypeScript
// Taken from https://codesandbox.io/s/wg9317
// Thanks, you helped me a lot! https://github.com/haysclark
import strapi, { Strapi } from "@strapi/strapi";
import { compile } from "@strapi/typescript-utils";
import * as fs from "fs";
let instance: Strapi;
export const setupStrapi = async (): Promise<Strapi> => {
@n2o
n2o / nasm_m1.md
Last active August 27, 2024 23:04
Compiling x86_64 assembly program on M1 Mac

If you have an M1 Mac and want to compile and execute x86_64 assembly code, make sure you install Rosetta 2 and nasm (brew install nasm).

Than, take a 64 Bit assembly program, e.g. from this tutorial page (https://cs.lmu.edu/~ray/notes/nasmtutorial/) in Section "Your First Program" for macOS, save it to a file called hello.asm.

Compile, link and execute the program:

nasm -f macho64 hello.asm
ld hello.o -o hello -macosx_version_min 11.0 -L /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib -lSystem

./hello

@n2o
n2o / mattermost-permission-fix.md
Last active August 24, 2024 12:09
Fix mattermost permissions when deployed with helm

Fix Mattermost Permission Problem

This solution is based the code snippet provided @nsteinmetz in this issue.

If you deployed mattermost via the helm chart, you might experience the same problem as we at @schnaq did: the mounted volumes belong to root but not to the mattermost user. This is a problem if you want to install settings, or new plugins (e.g. the playbook or the focalboard).

To fix this, we checked the id of the mattermost user in our running pod:

@n2o
n2o / jwt_creation.py
Last active August 31, 2021 13:40
Erzeuge ein Schlüsselpaar, erstelle einen JWT, signiere ihn und decodiere ihn wieder
# Vorher: pip install jwt[crypto]
import jwt
# Hier ein Beispiel mit einem Testtoken, er wurde mit folgenden Befehlen erstellt:
#
# ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key
# openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub
testing_private_key = """