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/python | |
import os | |
import sys | |
import argparse | |
parser = argparse.ArgumentParser(description='List with cygwin') | |
parser.add_argument('-a', '--all', action='store_true', help='include all files') | |
parser.add_argument('-A', '--almost-all', action='store_true', help='include all files except . and ..') | |
args = parser.parse_args(sys.argv[1:]) |
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 | |
# Copyright (C) 1996-2011, 2012 Free Software Foundation, Inc. | |
# This file is part of the GNU C Library. | |
# The GNU C Library is free software; you can redistribute it and/or | |
# modify it under the terms of the GNU Lesser General Public | |
# License as published by the Free Software Foundation; either | |
# version 2.1 of the License, or (at your option) any later version. | |
# The GNU C Library is distributed in the hope that it will be useful, |
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 | |
# | |
# Post-init script for FreeNAS on Western Digital PR2100/PR4100 | |
# wdhws v1.0 by TFL | |
# | |
# BSD 3 LICENSE | |
# | |
# thanks unix stackexchange question 231975 | |
setup_tty() { |
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 -*- | |
""" perform recursive uploads using cadaver | |
cadaver does not support recursive directory upload. | |
This script will upload a given path to a given URL | |
""" |
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
print "==== VRAAG 12 ====" | |
for monsterhp in [300, 600, 850, 900, 1100, 3500]: | |
t = 0 | |
print "new monster",monsterhp | |
while monsterhp > 0: | |
if t % 4 == 0: | |
monsterhp -= 35 | |
# print " warriorhit", monsterhp,"left" | |
if monsterhp <= 0: | |
print " warrior overkill", -monsterhp,t |
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
from math import ceil | |
import roman # pip install roman | |
N = 12500e3 | |
jaar = 1 | |
while N > 0: | |
n = roman.toRoman(jaar) | |
N = N-len(n)*250 | |
if jaar % 43 == 0: | |
N = ceil(N * .85) |