Skip to content

Instantly share code, notes, and snippets.

@ivanskodje
ivanskodje / Rutine for likebehandling.md
Created November 27, 2023 16:08
MAL: Rutine for Likebehandling i SELSKAP AS

Rutine for Likebehandling i SELSKAP AS

1. Grunnleggende Prinsipper

Alle arbeidstakere, både fast ansatte og innleide, skal behandles likt med hensyn til lønns- og arbeidsvilkår. Rutinen tar sikte på å sikre overholdelse av arbeidsmiljølovens krav om likebehandling.

2. Vurdering av Vilkår ved Inntak av Innleide Arbeidstakere

Ved inntak av en ny innleid arbeidstaker, vil SELSKAP AS foreta en sammenligning av vilkårene for den aktuelle rollen hos innleier med tilsvarende roller i SELSKAP AS. Sammenligningsgrunnlaget vil inkludere, men er ikke begrenset til, lønn, arbeidstid, overtidsbetingelser, pauser, ferie og feriepenger, samt eventuelle andre relevante vilkår.

3. Dokumentasjon og Oppfølging

For hver innleid arbeidstaker vil det bli laget en kort rapport som dokumenterer sammenligningen av vilkårene.

@ivanskodje
ivanskodje / choco-install-windows.ps1
Last active March 26, 2024 17:23
Automated windows installation with choco
# How to Run in PowerShell / WindowsTerminal as Administrator:
# Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://gist.githubusercontent.com/ivanskodje/19a5975d4517de159c2531417ee89d23/raw/b00f172bd468b891ec6d5bda9623955137284435/choco-install-windows.ps1'))
function main {
InstallChocolatey
Essentials
ConfigureWindows
Development
DevOps
Productivity
@CroneKorkN
CroneKorkN / gist:476778bb669dcb7610ba7f8ac5a930bb
Last active February 24, 2024 13:31
zfs arc hit ratio monitor
#!/bin/bash
# author: louwrentius
# source: http://louwrentius.com/zfs-on-linux-monitor-cache-hit-ratio.html
INTERVAL="$1"
if [ -z $INTERVAL ]
then
INTERVAL=5
@fntlnz
fntlnz / self-signed-certificate-with-custom-ca.md
Last active April 19, 2024 12:30
Self Signed Certificate with Custom Root CA

Create Root CA (Done once)

Create Root Key

Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!

openssl genrsa -des3 -out rootCA.key 4096