This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# coding: utf-8 | |
# ## Introduksjon til python | |
# Hva er python og hva kan det brukes til? | |
# | |
# ## Kalkulator | |
# In[ ]: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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 */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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; | |
# |