Skip to content

Instantly share code, notes, and snippets.

@kbotnen
kbotnen / del1.py
Last active October 10, 2023 17:39
Del 1
#!/usr/bin/env python
# coding: utf-8
# ## Introduksjon til python
# Hva er python og hva kan det brukes til?
#
# ## Kalkulator
# In[ ]:
@kbotnen
kbotnen / 6_may_2020_translation_bokmal.txt
Last active May 6, 2020 09:32
Some munki translation
/* Apple Software Updates Pending title */
"Important Apple Updates" = "Viktige Apple oppdateringer";
/* Install now button title */
"Install now" = "Installer nå";
/* Later button title */
"Later" = "Senere";
/* Pending Apple Updates warning */
#!/bin/bash
#
# MySQL Backup Script
# Dumps mysql databases to a file for another backup tool to pick up.
#
# MySQL code:
# GRANT SELECT, RELOAD, LOCK TABLES ON *.* TO 'user'@'localhost'
# IDENTIFIED BY 'password';
# FLUSH PRIVILEGES;
#