This file contains hidden or 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
| t4b@t4b-desktop:~$ gdb prgm/overgrowth/Overgrowth/overgrowth.bin.x86_64 | |
| GNU gdb (GDB) 7.1-ubuntu | |
| Copyright (C) 2010 Free Software Foundation, Inc. | |
| License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> | |
| This is free software: you are free to change and redistribute it. | |
| There is NO WARRANTY, to the extent permitted by law. Type "show copying" | |
| and "show warranty" for details. | |
| This GDB was configured as "x86_64-linux-gnu". | |
| For bug reporting instructions, please see: | |
| <http://www.gnu.org/software/gdb/bugs/>... |
This file contains hidden or 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
| t4b@t4b-desktop:~$ gdb prgm/overgrowth/Overgrowth/overgrowth.bin.x86_64 | |
| GNU gdb (GDB) 7.1-ubuntu | |
| Copyright (C) 2010 Free Software Foundation, Inc. | |
| License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> | |
| This is free software: you are free to change and redistribute it. | |
| There is NO WARRANTY, to the extent permitted by law. Type "show copying" | |
| and "show warranty" for details. | |
| This GDB was configured as "x86_64-linux-gnu". | |
| For bug reporting instructions, please see: | |
| <http://www.gnu.org/software/gdb/bugs/>... |
This file contains hidden or 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
| import FreeCAD, FreeCADGui, Part | |
| import math | |
| def evalFunction(suppliedFunction, n): | |
| """This function uses eval to evaluate suppliedFunction. | |
| It does in no way check whether suppliedFunction is evil, thus it is itself evil! | |
| """ | |
| return eval(suppliedFunction) |
This file contains hidden or 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
| t4b@desktop:~$ sudo mdadm --detail --scan | |
| /dev/md0: | |
| Version : 0.90 | |
| Creation Time : Thu Oct 28 18:09:21 2010 | |
| Raid Level : raid1 | |
| Array Size : 1953511360 (1863.01 GiB 2000.40 GB) | |
| Used Dev Size : 1953511360 (1863.01 GiB 2000.40 GB) | |
| Raid Devices : 2 | |
| Total Devices : 1 | |
| Preferred Minor : 0 |
This file contains hidden or 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
| /dev/sdh1: | |
| Magic : a92b4efc | |
| Version : 00.90.00 | |
| UUID : 7f599700:b35189a1:bae3ca27:aeeaa62f (local to host lukas-desktop) | |
| Creation Time : Thu Oct 28 18:09:21 2010 | |
| Raid Level : raid1 | |
| Used Dev Size : 1953511360 (1863.01 GiB 2000.40 GB) | |
| Array Size : 1953511360 (1863.01 GiB 2000.40 GB) | |
| Raid Devices : 2 | |
| Total Devices : 2 |
This file contains hidden or 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
| To do: | |
| High priority: | |
| Updating instead of downloading everything | |
| Low priority: | |
| Maybe add some numbering capabilities in comicsClass.populate instead of just in comicsClass.populatePages? | |
| Add the possibility to use Beautiful Soup to get the values from the html? |
This file contains hidden or 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 | |
| # converts latex to .png. It doesn't do this directly, there are temporary files saved in $dir | |
| # To make a LaTeX-Document suitable for this, you should include | |
| # \pagestyle{empty} | |
| # or there will be loads of whitespace around the thing you actually want. | |
| # Usage: | |
| # latex2png file [density] | |
| # file: latex file |
This file contains hidden or 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/python3.3 | |
| import argparse, os, subprocess | |
| #settings | |
| setting_hostList=['agathe','a10','lukas-c', 'dummy'] | |
| addresses={ 'agathe':'192.168.1.2', | |
| 'a10':'192.168.1.21', | |
| 'lukas-c':'192.168.1.3', | |
| 'dummy':'192.168.1.15'} | |
| usernames={ 'agathe':'t4b', |
This file contains hidden or 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
| \documentclass[a4paper,12pt]{article} | |
| \usepackage[ngerman]{babel} | |
| \usepackage{amsmath,amsfonts,amssymb} | |
| \usepackage[utf8x]{inputenc} | |
| \usepackage{graphicx} | |
| \usepackage{calc} | |
| %\usepackage[cm]{fullpage} | |
| \usepackage{fullpage} |
This file contains hidden or 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 | |
| # use xinput to get hardware id, xinput --list-props id to get order of | |
| # hardware buttons for your mouse | |
| # hardware software | |
| # 1 large one left left click | |
| # 2 both large ones middle click | |
| # 3 large one right right click | |
| # 4 trackball down scroll up | |
| # 5 trackball up scroll down |