Skip to content

Instantly share code, notes, and snippets.

@maplepy
maplepy / deployment.yaml
Last active October 30, 2025 15:20
IoT P3 - K8s App Deployment
# This is the manifest file for the app
# It contains the deployment, service and ingress of the app
# ==========================================================
# The namepace of the app
apiVersion: v1
kind: Namespace
metadata:
name: dev
@maplepy
maplepy / checkmoa.sh
Created December 6, 2022 11:55
Check for libft 42
#!/bin/bash
# Test all testers
#libft_folder="$HOME/42/tronc/libft"
libft_folder="."
# Check if folder exists
if [ -d "$libft_folder" ]; then
echo "directory \"$libft_folder\" exists, continuing"
else