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
| %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
| % Set Helvetica Font in Text and Math in LaTeX % | |
| %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
| \renewcommand{\familydefault}{\sfdefault} | |
| \usepackage[scaled=1]{helvet} | |
| \usepackage[helvet]{sfmath} | |
| \everymath={\sf} |
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
| gewichtBlechLeer=8552; | |
| gewichtBlechNass=10403; | |
| gewichtBlechTrocken=input('Gewicht des Blech mit trockener Probe [g]: ') | |
| probeNass=(gewichtBlechNass - gewichtBlechLeer) | |
| probeTrocken=(gewichtBlechTrocken - gewichtBlechLeer) | |
| Wassergehalt=((probeNass - probeTrocken)/float(probeNass))*100 | |
| print('Wassergehalt: {} %'.format(Wassergehalt)) |
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
| wassergehalt=input('Wassergehalt Probe in %: ') | |
| masseProbe=input('Masse der Probe (vor Einstellung) in g: ') | |
| wasserMengeZugabe=(masseProbe*((35-wassergehalt)/(float(100-36)))) | |
| print('Zuzugebende Wassermenge: {} g'.format(wasserMengeZugabe)) |
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
| masseTiegelLeer=input('Tiegelmasse leer (g): ') | |
| masseTiegelTrocken=input('Tiegelmasse Trockensubstanz (g): ') | |
| masseTiegelGlueh=input('Tiegelmasse nach dem Gluehen (g): ') | |
| gluehverlust=((masseTiegelTrocken - masseTiegelGlueh)/(float(masseTiegelTrocken - masseTiegelLeer)) *100) | |
| print('Gluehverlust : {} %'.format(gluehverlust)) |
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
| probenMasse=input('Probenmasse: ') | |
| probenVolumen=input('Probenvolumen: ') | |
| dichte=probenMasse/float(probenVolumen) | |
| print('Dichte: {}'.format(dichte)) |
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
| leichtfraktion=input('Leichtfraktion: ') | |
| gesamtfraktion=input('Gesamtfraktion: ') | |
| wiedergewinnungsrate=(leichtfraktion/float(gesamtfraktion)*100) | |
| print('Wiedergewinnungsrate: {} %'.format(wiedergewinnungsrate)) |
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
| % LaTeX | |
| % Farbeeinstellungen fuer das Paket moderncv in Version [2010/08/03 v0.12 modern curriculum vitae document class] | |
| % benötigt xcolor für RGB farben | |
| \AtBeginDocument{\recomputelengths} | |
| \AtBeginDocument{\definecolor{firstnamecolor}{rgb}{0,0,0}} | |
| \AtBeginDocument{\definecolor{familynamecolor}{rgb}{0,0,0}} | |
| \AtBeginDocument{\definecolor{addresscolor}{RGB}{2,154,157}} | |
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
| //------------------------------------------------------------------------------ | |
| // | |
| // Persoenliches Buyscript von | |
| // konz_HNO3 | |
| // | |
| //------------------------------------------------------------------------------ | |
| alias toknife "slot2; slot1; slot3" | |
| // Ausruestung | |
| bind "kp_del" "buy defuser;toknife" | |
| bind "kp_ins" "buy vest; buy vesthelm;toknife" |
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
| #8-ball / decision ball | |
| # | |
| use strict; | |
| use vars qw($VERSION %IRSSI); | |
| use Irssi qw(command_bind signal_add); | |
| use IO::File; | |
| $VERSION = '0.21'; | |
| %IRSSI = ( | |
| authors => '', |
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/zsh | |
| #Skript um kurze Nachrichten an eine Emailadresse zu senden | |
| #benötigt ein konfigurertes ssmtp | |
| #Change ME: | |
| EMAIL="your@email.adresse" | |
| #properbly don't change me: | |
| PFAD=$(dirname $0); | |
| for i in $(seq 106 149) |
OlderNewer