studium 0.16.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of studium might be problematic. Click here for more details.

Files changed (887) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +3211 -0
  3. data/bin/ask_exam_question +7 -0
  4. data/bin/check_description_of_these_lectures +7 -0
  5. data/bin/curriculum_module_displayer +7 -0
  6. data/bin/cycle +7 -0
  7. data/bin/d10 +7 -0
  8. data/bin/d100 +7 -0
  9. data/bin/d15 +7 -0
  10. data/bin/d20 +7 -0
  11. data/bin/d25 +7 -0
  12. data/bin/d3 +7 -0
  13. data/bin/d30 +7 -0
  14. data/bin/d5 +7 -0
  15. data/bin/determine_curricula +7 -0
  16. data/bin/display_lecture_url +7 -0
  17. data/bin/exam_registration_at +7 -0
  18. data/bin/exam_statistics +7 -0
  19. data/bin/exams_per_month +9 -0
  20. data/bin/finished_exams_at_this_university +7 -0
  21. data/bin/flashcards +7 -0
  22. data/bin/from_curriculum_id_to_university +9 -0
  23. data/bin/location_to_this_exam_topic.rb +7 -0
  24. data/bin/mandatory_continuous_assessment +7 -0
  25. data/bin/mandatory_upcoming_courses +10 -0
  26. data/bin/n_ECTS +7 -0
  27. data/bin/n_exam_questions_already_answered +16 -0
  28. data/bin/nquestions +7 -0
  29. data/bin/nsolved +7 -0
  30. data/bin/open_last_exam_question_asked_file +7 -0
  31. data/bin/passed_exams +7 -0
  32. data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
  33. data/bin/pdf_for +7 -0
  34. data/bin/random_exam_topic +7 -0
  35. data/bin/report_solved_topics +7 -0
  36. data/bin/return_n_ects_from_this_file +7 -0
  37. data/bin/return_n_questions_solved_in_total +7 -0
  38. data/bin/rti_conflict +7 -0
  39. data/bin/search_for_n_ects +7 -0
  40. data/bin/show_lectures_on_the_commandline +7 -0
  41. data/bin/show_passed_exams_having_this_grade +7 -0
  42. data/bin/show_themes +7 -0
  43. data/bin/solved +9 -0
  44. data/bin/solved_ects +7 -0
  45. data/bin/studienkennzahl +7 -0
  46. data/bin/studium +7 -0
  47. data/bin/studium_skeleton +7 -0
  48. data/bin/ufind +7 -0
  49. data/bin/upcoming_exams +7 -0
  50. data/bin/week_parser +7 -0
  51. data/doc/ECTS_CONSIDERATIONS/ECTS_CONSIDERATIONS.md +82 -0
  52. data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +44 -0
  53. data/doc/README.gen +3164 -0
  54. data/doc/SQL_database_specification/SQL_database_specification.md +46 -0
  55. data/doc/deprecated_components/deprecated_components.md +46 -0
  56. data/doc/documentation_for_the_file_lecture_information/documentation_for_the_file_lecture_information.md +311 -0
  57. data/doc/elegant_colours/elegant_colours.md +21 -0
  58. data/doc/statistics/yearly_statistics.md +8 -0
  59. data/doc/todo/todo_for_the_graphical_parts_of_the_studium_gem_including_www_related_aspects.md +92 -0
  60. data/doc/todo/todo_for_the_studium_gem.md +55 -0
  61. data/img/STUDIES.png +0 -0
  62. data/lib/studium/autoinclude.rb +7 -0
  63. data/lib/studium/base/base.rb +3229 -0
  64. data/lib/studium/base/colours.rb +246 -0
  65. data/lib/studium/base/commandline_arguments_module/commandline_arguments_module.rb +115 -0
  66. data/lib/studium/base/prototype/prototype.rb +230 -0
  67. data/lib/studium/base/runmode_module/runmode_module.rb +103 -0
  68. data/lib/studium/c/README.md +2 -0
  69. data/lib/studium/c/a.out +0 -0
  70. data/lib/studium/c/obtain_random_entry.c +11 -0
  71. data/lib/studium/check_and_sanitize/README.md +15 -0
  72. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +141 -0
  73. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +118 -0
  74. data/lib/studium/check_and_sanitize/check_for_correct_themes_of_each_course.rb +100 -0
  75. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +194 -0
  76. data/lib/studium/check_and_sanitize/check_important_exams.rb +132 -0
  77. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +166 -0
  78. data/lib/studium/check_and_sanitize/find_duplicate_lectures.rb +124 -0
  79. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  80. data/lib/studium/check_and_sanitize/sanitize_lecture_information.rb +427 -0
  81. data/lib/studium/check_and_sanitize/sanitize_this_string_containing_the_lva_dates.rb +79 -0
  82. data/lib/studium/colours/colours.rb +587 -0
  83. data/lib/studium/colours/sfancy.rb +49 -0
  84. data/lib/studium/colours/sfile.rb +39 -0
  85. data/lib/studium/colours/simp.rb +40 -0
  86. data/lib/studium/colours/use_colours.rb +39 -0
  87. data/lib/studium/colours/use_this_colour_for_exam_questions_and_exam_answers.rb +80 -0
  88. data/lib/studium/commandline/commandline.rb +1839 -0
  89. data/lib/studium/constants/colours.rb +16 -0
  90. data/lib/studium/constants/constants.rb +533 -0
  91. data/lib/studium/constants/curricula_related_constants.rb +504 -0
  92. data/lib/studium/constants/exam_topics.rb +156 -0
  93. data/lib/studium/constants/file_lecture_information.rb +55 -0
  94. data/lib/studium/constants/image_constants.rb +272 -0
  95. data/lib/studium/constants/regexes.rb +58 -0
  96. data/lib/studium/constants/roebe_specific_constants.rb +216 -0
  97. data/lib/studium/constants/standalone_constants.rb +372 -0
  98. data/lib/studium/constants/web_constants.rb +28 -0
  99. data/lib/studium/css/project.css +267 -0
  100. data/lib/studium/curricula/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +384 -0
  101. data/lib/studium/curricula/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +238 -0
  102. data/lib/studium/curricula/curricula_from_this_website/curricula_from_this_website.rb +141 -0
  103. data/lib/studium/curricula/curriculum.rb +213 -0
  104. data/lib/studium/curricula/curriculum_as_string.rb +280 -0
  105. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +33 -0
  106. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  107. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  108. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  109. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +74 -0
  110. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  111. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  112. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  113. data/lib/studium/curricula/determine_curricula/constants.rb +11 -0
  114. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  115. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  116. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  117. data/lib/studium/curricula/determine_curricula/menu.rb +151 -0
  118. data/lib/studium/curricula/determine_curricula/misc.rb +403 -0
  119. data/lib/studium/curricula/determine_curricula/report.rb +143 -0
  120. data/lib/studium/curricula/determine_curricula/reset.rb +59 -0
  121. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  122. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  123. data/lib/studium/curricula/display_bachelor_curricula.rb +90 -0
  124. data/lib/studium/curricula/handle_curricula/README.md +9 -0
  125. data/lib/studium/curricula/handle_curricula/handle_curricula.rb +100 -0
  126. data/lib/studium/curricula/handle_curricula/misc.rb +798 -0
  127. data/lib/studium/curricula/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.rb +323 -0
  128. data/lib/studium/curricula/modules/display_on_the_commandline.rb +319 -0
  129. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +75 -0
  130. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +75 -0
  131. data/lib/studium/curricula/prepare_individual_curriculum.rb +304 -0
  132. data/lib/studium/curricula/random_curriculum_creator/random_curriculum_creator.rb +164 -0
  133. data/lib/studium/curricula/show_all_unfinished_courses_of_this_curriculum/show_all_unfinished_courses_of_this_curriculum.rb +116 -0
  134. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  135. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +554 -0
  136. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  137. data/lib/studium/curricula/sorted_individual_curricula.rb +121 -0
  138. data/lib/studium/ects/boku_ects_splitter.rb +128 -0
  139. data/lib/studium/ects/ects_per_university/ects_per_university.rb +179 -0
  140. data/lib/studium/ects/ects_scanner.rb +141 -0
  141. data/lib/studium/ects/ects_to_university_parser.rb +142 -0
  142. data/lib/studium/ects/last_entry_is_curriculum.rb +150 -0
  143. data/lib/studium/ects/n_ects_in_these_lectures.rb +196 -0
  144. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +50 -0
  145. data/lib/studium/ects/return_n_ects_from_this_file.rb +59 -0
  146. data/lib/studium/ects/return_n_ects_from_this_url.rb +197 -0
  147. data/lib/studium/ects/search_for_n_ects/OLD_search_for_n_ects.rb +0 -0
  148. data/lib/studium/ects/search_for_n_ects/search_for_n_ects.rb +719 -0
  149. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +232 -0
  150. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +276 -0
  151. data/lib/studium/ects/simple_total_ects_points.rb +135 -0
  152. data/lib/studium/ects/solved_ects/constants.rb +19 -0
  153. data/lib/studium/ects/solved_ects/reset.rb +51 -0
  154. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  155. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  156. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +106 -0
  157. data/lib/studium/ects/still_missing.rb +129 -0
  158. data/lib/studium/ects/sum_of_ects.rb +144 -0
  159. data/lib/studium/encoding/encoding.rb +109 -0
  160. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +100 -0
  161. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  162. data/lib/studium/exam_topics/advanced_biochemistry +927 -0
  163. data/lib/studium/exam_topics/advanced_biotechnology +234 -0
  164. data/lib/studium/exam_topics/advanced_cellbiology +219 -0
  165. data/lib/studium/exam_topics/advanced_chemistry +527 -0
  166. data/lib/studium/exam_topics/advanced_immunology +152 -0
  167. data/lib/studium/exam_topics/advanced_microbiology +44 -0
  168. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +109 -0
  169. data/lib/studium/exam_topics/advanced_virology +245 -0
  170. data/lib/studium/exam_topics/ageing +153 -0
  171. data/lib/studium/exam_topics/agrar_ecology +67 -0
  172. data/lib/studium/exam_topics/agrarmarkt +73 -0
  173. data/lib/studium/exam_topics/agrarphysik +35 -0
  174. data/lib/studium/exam_topics/alcohols +31 -0
  175. data/lib/studium/exam_topics/algorithms +77 -0
  176. data/lib/studium/exam_topics/allergie +76 -0
  177. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  178. data/lib/studium/exam_topics/allgemeine_mikrobiologie +1008 -0
  179. data/lib/studium/exam_topics/aminoacids +464 -0
  180. data/lib/studium/exam_topics/analytische_chemie_1 +133 -0
  181. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  182. data/lib/studium/exam_topics/anatomie +295 -0
  183. data/lib/studium/exam_topics/anorganische_chemie +350 -0
  184. data/lib/studium/exam_topics/anthropologie +138 -0
  185. data/lib/studium/exam_topics/antibodies_and_antigens +791 -0
  186. data/lib/studium/exam_topics/apoptosis +35 -0
  187. data/lib/studium/exam_topics/archaea +112 -0
  188. data/lib/studium/exam_topics/archaeo_viruses +7 -0
  189. data/lib/studium/exam_topics/architecture +8 -0
  190. data/lib/studium/exam_topics/artificial_intelligence +89 -0
  191. data/lib/studium/exam_topics/atomemissionsspektrometrie +6 -0
  192. data/lib/studium/exam_topics/audio +11 -0
  193. data/lib/studium/exam_topics/bacteriophages +266 -0
  194. data/lib/studium/exam_topics/basic_biochemistry +1008 -0
  195. data/lib/studium/exam_topics/basic_biotechnology +1011 -0
  196. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  197. data/lib/studium/exam_topics/basic_virology +1007 -0
  198. data/lib/studium/exam_topics/bauwesen +6 -0
  199. data/lib/studium/exam_topics/betriebssysteme +128 -0
  200. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  201. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +391 -0
  202. data/lib/studium/exam_topics/biochips +79 -0
  203. data/lib/studium/exam_topics/bioelektrochemie +57 -0
  204. data/lib/studium/exam_topics/biofilms +54 -0
  205. data/lib/studium/exam_topics/bioinformatics +511 -0
  206. data/lib/studium/exam_topics/biological_therapeutics +156 -0
  207. data/lib/studium/exam_topics/biologie +149 -0
  208. data/lib/studium/exam_topics/biomarkers +137 -0
  209. data/lib/studium/exam_topics/biomaterials +90 -0
  210. data/lib/studium/exam_topics/biomembranes +6 -0
  211. data/lib/studium/exam_topics/bionik +65 -0
  212. data/lib/studium/exam_topics/biophysik +34 -0
  213. data/lib/studium/exam_topics/biopolymers +10 -0
  214. data/lib/studium/exam_topics/bioprozesstechnik +149 -0
  215. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  216. data/lib/studium/exam_topics/birds +5 -0
  217. data/lib/studium/exam_topics/bodenkunde +384 -0
  218. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  219. data/lib/studium/exam_topics/cancerbiology +484 -0
  220. data/lib/studium/exam_topics/cell_cultures +229 -0
  221. data/lib/studium/exam_topics/cellbiology +1011 -0
  222. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  223. data/lib/studium/exam_topics/cellular_vesicles +11 -0
  224. data/lib/studium/exam_topics/cellulose +6 -0
  225. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +209 -0
  226. data/lib/studium/exam_topics/chemische_technologie_organischer_stoffe +25 -0
  227. data/lib/studium/exam_topics/chemisches_labor +60 -0
  228. data/lib/studium/exam_topics/chemokines_and_cytokines +45 -0
  229. data/lib/studium/exam_topics/chemotaxis_quorum_sensing_and_motility_in_prokaryotes +116 -0
  230. data/lib/studium/exam_topics/citric_acid_cycle +84 -0
  231. data/lib/studium/exam_topics/clinical_microbiology +516 -0
  232. data/lib/studium/exam_topics/computer_science +308 -0
  233. data/lib/studium/exam_topics/computer_vision_and_computer_graphics +13 -0
  234. data/lib/studium/exam_topics/crispr +51 -0
  235. data/lib/studium/exam_topics/cyanobacteria +44 -0
  236. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +579 -0
  237. data/lib/studium/exam_topics/databases_and_sql +126 -0
  238. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +70 -0
  239. data/lib/studium/exam_topics/dna_replication +67 -0
  240. data/lib/studium/exam_topics/ecogenetics +26 -0
  241. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  242. data/lib/studium/exam_topics/ecology +330 -0
  243. data/lib/studium/exam_topics/economy +218 -0
  244. data/lib/studium/exam_topics/electron_microscopy +7 -0
  245. data/lib/studium/exam_topics/elektronenmikroskopie +356 -0
  246. data/lib/studium/exam_topics/elektrophorese +132 -0
  247. data/lib/studium/exam_topics/elektrotechnik_und_elektrizit/303/244t +42 -0
  248. data/lib/studium/exam_topics/elisa +55 -0
  249. data/lib/studium/exam_topics/embryologie_und_entwicklung +650 -0
  250. data/lib/studium/exam_topics/endospores_and_spores +104 -0
  251. data/lib/studium/exam_topics/enzymes_and_cofactors +393 -0
  252. data/lib/studium/exam_topics/epigenetik +187 -0
  253. data/lib/studium/exam_topics/erste_hilfe +174 -0
  254. data/lib/studium/exam_topics/ethik +143 -0
  255. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +367 -0
  256. data/lib/studium/exam_topics/excel +7 -0
  257. data/lib/studium/exam_topics/fish +19 -0
  258. data/lib/studium/exam_topics/fluorescence_microscopy +10 -0
  259. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +92 -0
  260. data/lib/studium/exam_topics/forensik +11 -0
  261. data/lib/studium/exam_topics/forstwirtschaft +53 -0
  262. data/lib/studium/exam_topics/fortgeschrittene_genetik +643 -0
  263. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +218 -0
  264. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  265. data/lib/studium/exam_topics/fungi +119 -0
  266. data/lib/studium/exam_topics/genetische_krankheiten +198 -0
  267. data/lib/studium/exam_topics/genexpression +1008 -0
  268. data/lib/studium/exam_topics/genomics_and_metagenomics +280 -0
  269. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +954 -0
  270. data/lib/studium/exam_topics/geochemistry +67 -0
  271. data/lib/studium/exam_topics/geography +9 -0
  272. data/lib/studium/exam_topics/geologie_und_mineralogie +624 -0
  273. data/lib/studium/exam_topics/geometrie +56 -0
  274. data/lib/studium/exam_topics/geschichte +95 -0
  275. data/lib/studium/exam_topics/gluconeogenesis +72 -0
  276. data/lib/studium/exam_topics/glycogen +45 -0
  277. data/lib/studium/exam_topics/glycolysis +118 -0
  278. data/lib/studium/exam_topics/glykomik +121 -0
  279. data/lib/studium/exam_topics/glyoxylatzyklus +31 -0
  280. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  281. data/lib/studium/exam_topics/hormone +148 -0
  282. data/lib/studium/exam_topics/html +8 -0
  283. data/lib/studium/exam_topics/human_ecology +8 -0
  284. data/lib/studium/exam_topics/hygiene +224 -0
  285. data/lib/studium/exam_topics/imaging_and_microscopy +267 -0
  286. data/lib/studium/exam_topics/immunanalytik +94 -0
  287. data/lib/studium/exam_topics/immunologie +1011 -0
  288. data/lib/studium/exam_topics/informatik +117 -0
  289. data/lib/studium/exam_topics/innate_immunity +42 -0
  290. data/lib/studium/exam_topics/insekten +64 -0
  291. data/lib/studium/exam_topics/insulin_and_diabetes +57 -0
  292. data/lib/studium/exam_topics/java +618 -0
  293. data/lib/studium/exam_topics/javascript +20 -0
  294. data/lib/studium/exam_topics/klima +6 -0
  295. data/lib/studium/exam_topics/kryptographie +9 -0
  296. data/lib/studium/exam_topics/landtechnik +26 -0
  297. data/lib/studium/exam_topics/lebensmittel_und_getr/303/244nke +223 -0
  298. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  299. data/lib/studium/exam_topics/light_microscopy +19 -0
  300. data/lib/studium/exam_topics/linux_and_unix +36 -0
  301. data/lib/studium/exam_topics/lipids +141 -0
  302. data/lib/studium/exam_topics/macroeconomics +39 -0
  303. data/lib/studium/exam_topics/marketing +7 -0
  304. data/lib/studium/exam_topics/mathematics +297 -0
  305. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +254 -0
  306. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +437 -0
  307. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  308. data/lib/studium/exam_topics/metabolismus +478 -0
  309. data/lib/studium/exam_topics/meteorologie_und_atmosph/303/244re +120 -0
  310. data/lib/studium/exam_topics/microbial_ecology +36 -0
  311. data/lib/studium/exam_topics/microcontrollers +11 -0
  312. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +54 -0
  313. data/lib/studium/exam_topics/mikrobielle_physiologie +285 -0
  314. data/lib/studium/exam_topics/mitochondria +40 -0
  315. data/lib/studium/exam_topics/mixed +287 -0
  316. data/lib/studium/exam_topics/molecular_biology_of_plants +272 -0
  317. data/lib/studium/exam_topics/molekulare_medizin +133 -0
  318. data/lib/studium/exam_topics/nanotechnologie +453 -0
  319. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +244 -0
  320. data/lib/studium/exam_topics/naturstoffe +9 -0
  321. data/lib/studium/exam_topics/netzwerke +63 -0
  322. data/lib/studium/exam_topics/neurobiology +307 -0
  323. data/lib/studium/exam_topics/nucleotide_sequencing +41 -0
  324. data/lib/studium/exam_topics/nutztierethologie +11 -0
  325. data/lib/studium/exam_topics/object_oriented_modeling +14 -0
  326. data/lib/studium/exam_topics/obstbau +249 -0
  327. data/lib/studium/exam_topics/organische_chemie +1007 -0
  328. data/lib/studium/exam_topics/organische_chemie_2 +136 -0
  329. data/lib/studium/exam_topics/paleobiology +39 -0
  330. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +336 -0
  331. data/lib/studium/exam_topics/patent_law +55 -0
  332. data/lib/studium/exam_topics/pathologie +731 -0
  333. data/lib/studium/exam_topics/pcr +155 -0
  334. data/lib/studium/exam_topics/pentosephosphatweg +61 -0
  335. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +66 -0
  336. data/lib/studium/exam_topics/pflanzenanatomie +261 -0
  337. data/lib/studium/exam_topics/pflanzenbau +24 -0
  338. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  339. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  340. data/lib/studium/exam_topics/pharmaceutical_biotechnology +251 -0
  341. data/lib/studium/exam_topics/physik +446 -1
  342. data/lib/studium/exam_topics/physikalische_chemie +79 -0
  343. data/lib/studium/exam_topics/physiology_and_histology +536 -0
  344. data/lib/studium/exam_topics/phytochemie +33 -0
  345. data/lib/studium/exam_topics/plant_biotechnology +131 -0
  346. data/lib/studium/exam_topics/plant_breeding +64 -0
  347. data/lib/studium/exam_topics/plant_development +50 -0
  348. data/lib/studium/exam_topics/populationsgenetik +138 -0
  349. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +197 -0
  350. data/lib/studium/exam_topics/projektmanagement +220 -0
  351. data/lib/studium/exam_topics/prokaryote_genetics +562 -0
  352. data/lib/studium/exam_topics/protein_engineering +35 -0
  353. data/lib/studium/exam_topics/proteolyse +38 -0
  354. data/lib/studium/exam_topics/proteomik +41 -0
  355. data/lib/studium/exam_topics/protozoans +24 -0
  356. data/lib/studium/exam_topics/prozesstechnik +95 -0
  357. data/lib/studium/exam_topics/psychologie +18 -0
  358. data/lib/studium/exam_topics/python +372 -0
  359. data/lib/studium/exam_topics/quality_management +266 -0
  360. data/lib/studium/exam_topics/rechtsgrundlagen +123 -0
  361. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  362. data/lib/studium/exam_topics/rna_and_dna +519 -0
  363. data/lib/studium/exam_topics/rna_seq +13 -0
  364. data/lib/studium/exam_topics/robotics +12 -0
  365. data/lib/studium/exam_topics/ruby +238 -0
  366. data/lib/studium/exam_topics/ruby_on_rails +63 -0
  367. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  368. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  369. data/lib/studium/exam_topics/sexualbiologie +183 -0
  370. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +212 -0
  371. data/lib/studium/exam_topics/sozialbiologie +9 -0
  372. data/lib/studium/exam_topics/splicing_exons_and_introns +65 -0
  373. data/lib/studium/exam_topics/statistik +268 -0
  374. data/lib/studium/exam_topics/stemcells +181 -0
  375. data/lib/studium/exam_topics/stickstofffixierung +91 -0
  376. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  377. data/lib/studium/exam_topics/strukturbiologie +423 -0
  378. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +108 -0
  379. data/lib/studium/exam_topics/systematische_zoologie +439 -0
  380. data/lib/studium/exam_topics/technical_ecology +144 -0
  381. data/lib/studium/exam_topics/technische_chemie +208 -0
  382. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +39 -0
  383. data/lib/studium/exam_topics/technische_mikrobiologie +393 -0
  384. data/lib/studium/exam_topics/technisches_zeichnen +5 -0
  385. data/lib/studium/exam_topics/the_bacterial_cell_wall +98 -0
  386. data/lib/studium/exam_topics/the_c_plus_plus_programming_language +531 -0
  387. data/lib/studium/exam_topics/the_c_programming_language +133 -0
  388. data/lib/studium/exam_topics/the_cellcycle +98 -0
  389. data/lib/studium/exam_topics/the_european_union +121 -0
  390. data/lib/studium/exam_topics/the_interferon_system +39 -0
  391. data/lib/studium/exam_topics/the_microbiome +164 -0
  392. data/lib/studium/exam_topics/the_universe +31 -0
  393. data/lib/studium/exam_topics/theoretische_chemie +5 -0
  394. data/lib/studium/exam_topics/theoretische_informatik +161 -0
  395. data/lib/studium/exam_topics/thermodynamics +21 -0
  396. data/lib/studium/exam_topics/tierzucht +139 -0
  397. data/lib/studium/exam_topics/toxikologie +453 -0
  398. data/lib/studium/exam_topics/transcription +185 -0
  399. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +154 -0
  400. data/lib/studium/exam_topics/umweltbiotechnologie +64 -0
  401. data/lib/studium/exam_topics/umweltchemie +233 -0
  402. data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
  403. data/lib/studium/exam_topics/urea_cycle +56 -0
  404. data/lib/studium/exam_topics/vaccines_and_vaccination +250 -0
  405. data/lib/studium/exam_topics/vectors_and_gene_therapy +247 -0
  406. data/lib/studium/exam_topics/verfahrenstechnik +37 -0
  407. data/lib/studium/exam_topics/verhaltensbiologie +56 -0
  408. data/lib/studium/exam_topics/veterinary_medicine +10 -0
  409. data/lib/studium/exam_topics/vitamine +32 -0
  410. data/lib/studium/exam_topics/wasserkunde +138 -0
  411. data/lib/studium/exam_topics/weinbau +86 -0
  412. data/lib/studium/exam_topics/wissenschaft +20 -0
  413. data/lib/studium/exam_topics/yeast +104 -0
  414. data/lib/studium/exam_topics/zoologie +334 -0
  415. data/lib/studium/exams/afterburn/afterburn.rb +304 -0
  416. data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +150 -0
  417. data/lib/studium/exams/ask_exam_question/ask_exam_question.rb +2757 -0
  418. data/lib/studium/exams/ask_exam_topic_question.rb +112 -0
  419. data/lib/studium/exams/ask_question_from_alias.rb +141 -0
  420. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +130 -0
  421. data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
  422. data/lib/studium/exams/ask_question_from_last_topic.rb +91 -0
  423. data/lib/studium/exams/ask_random_question.rb +195 -0
  424. data/lib/studium/exams/autoinclude.rb +7 -0
  425. data/lib/studium/exams/average_grade/average_grade.rb +402 -0
  426. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +217 -0
  427. data/lib/studium/exams/cycle.rb +291 -0
  428. data/lib/studium/exams/dataset/dataset.rb +128 -0
  429. data/lib/studium/exams/designate_ten_random_exam_topics/designate_ten_random_exam_topics.rb +88 -0
  430. data/lib/studium/exams/exam/exam.rb +130 -0
  431. data/lib/studium/exams/exam_bubble/exam_bubble.rb +445 -0
  432. data/lib/studium/exams/exam_bubble/menu_for_the_main_loop.rb +111 -0
  433. data/lib/studium/exams/exam_question/README.md +3 -0
  434. data/lib/studium/exams/exam_question/exam_question.rb +427 -0
  435. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  436. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +242 -0
  437. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  438. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  439. data/lib/studium/exams/exam_registration_at/report_and_show.rb +133 -0
  440. data/lib/studium/exams/exam_registration_at/reset.rb +54 -0
  441. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +119 -0
  442. data/lib/studium/exams/exam_topics.rb +194 -0
  443. data/lib/studium/exams/exams.rb +20 -0
  444. data/lib/studium/exams/exams_per_month/exams_per_month.rb +2429 -0
  445. data/lib/studium/exams/exams_this_week.rb +182 -0
  446. data/lib/studium/exams/fix_exam_dates.rb +121 -0
  447. data/lib/studium/exams/frozen.rb +36 -0
  448. data/lib/studium/exams/last_exams/last_exams.rb +398 -0
  449. data/lib/studium/exams/lectures_without_exam_entry.rb +137 -0
  450. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1359 -0
  451. data/lib/studium/exams/move_all_unsolved_exam_questions_to_the_top_of_the_file.rb +173 -0
  452. data/lib/studium/exams/move_the_last_exam_question_to_the_top_of_the_file/move_the_last_exam_question_to_the_top_of_the_file.rb +111 -0
  453. data/lib/studium/exams/n_exams_in_these_topics.rb +477 -0
  454. data/lib/studium/exams/next_exam.rb +107 -0
  455. data/lib/studium/exams/next_exams.rb +378 -0
  456. data/lib/studium/exams/open_exam_associated_url/open_exam_associated_url.rb +154 -0
  457. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +15 -0
  458. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  459. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +110 -0
  460. data/lib/studium/exams/push_solved_questions_on_top.rb +180 -0
  461. data/lib/studium/exams/questions_solved_from_day_to_day/questions_solved_from_day_to_day.rb +374 -0
  462. data/lib/studium/exams/remote_ftp_url.rb +52 -0
  463. data/lib/studium/exams/repeat_last_question.rb +78 -0
  464. data/lib/studium/exams/report_total_amount_of_questions_and_answers_for.rb +116 -0
  465. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +252 -0
  466. data/lib/studium/exams/show_backlog_of_exams/show_backlog_of_exams.rb +116 -0
  467. data/lib/studium/exams/show_next_exams_for.rb +133 -0
  468. data/lib/studium/exams/show_themes/constants.rb +28 -0
  469. data/lib/studium/exams/show_themes/menu.rb +61 -0
  470. data/lib/studium/exams/show_themes/misc.rb +537 -0
  471. data/lib/studium/exams/show_themes/reset.rb +62 -0
  472. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  473. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +1375 -0
  474. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +114 -0
  475. data/lib/studium/exams/solved/constants.rb +32 -0
  476. data/lib/studium/exams/solved/help.rb +24 -0
  477. data/lib/studium/exams/solved/initialize.rb +55 -0
  478. data/lib/studium/exams/solved/menu.rb +41 -0
  479. data/lib/studium/exams/solved/reset.rb +28 -0
  480. data/lib/studium/exams/solved/solved.rb +326 -0
  481. data/lib/studium/exams/timetable/constants.rb +142 -0
  482. data/lib/studium/exams/timetable/timetable.rb +450 -0
  483. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +163 -0
  484. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +556 -0
  485. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  486. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  487. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  488. data/lib/studium/exams/upcoming_exams_dataset.rb +247 -0
  489. data/lib/studium/exams/upcoming_registered_exams/upcoming_registered_exams.rb +257 -0
  490. data/lib/studium/exams/upload_exam_topics.rb +360 -0
  491. data/lib/studium/graphviz/README.md +4 -0
  492. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  493. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  494. data/lib/studium/gui/gtk3/README.md +1 -0
  495. data/lib/studium/gui/gtk3/ask_exam_question/ask_exam_question.config +6 -0
  496. data/lib/studium/gui/gtk3/ask_exam_question/ask_exam_question.rb +760 -0
  497. data/lib/studium/gui/gtk3/ask_exam_question/manifest.yml +12 -0
  498. data/lib/studium/gui/gtk3/control_panel/control_panel.rb +39 -0
  499. data/lib/studium/gui/gtk3/curriculum_viewer/curriculum_viewer.rb +513 -0
  500. data/lib/studium/gui/gtk3/ects_per_university/ects_per_university.rb +217 -0
  501. data/lib/studium/gui/gtk3/exam_question_widget/exam_question_widget.rb +1889 -0
  502. data/lib/studium/gui/gtk3/expand_time_range/expand_time_range.rb +34 -0
  503. data/lib/studium/gui/gtk3/information_about_a_lecture/information_about_a_lecture.rb +34 -0
  504. data/lib/studium/gui/gtk3/lecture_information/lecture_information.rb +200 -0
  505. data/lib/studium/gui/gtk3/show_upcoming_exams/show_upcoming_exams.rb +34 -0
  506. data/lib/studium/gui/java/exam_question/ExamQuestion$1.class +0 -0
  507. data/lib/studium/gui/java/exam_question/ExamQuestion.class +0 -0
  508. data/lib/studium/gui/java/exam_question/ExamQuestion.java +215 -0
  509. data/lib/studium/gui/javafx/exam_question_widget/exam_question_widget.rb +58 -0
  510. data/lib/studium/gui/jruby/exam_question_widget/exam_question_widget.rb +317 -0
  511. data/lib/studium/gui/libui/ask_exam_question/ask_exam_question.rb +349 -0
  512. data/lib/studium/gui/shared_code/control_panel/control_panel_module.rb +314 -0
  513. data/lib/studium/gui/shared_code/exam_question_widget/exam_question_widget_module.rb +39 -0
  514. data/lib/studium/gui/shared_code/expand_time_range/expand_time_range.css +0 -0
  515. data/lib/studium/gui/shared_code/expand_time_range/expand_time_range_module.rb +190 -0
  516. data/lib/studium/gui/shared_code/information_about_a_lecture/information_about_a_lecture_module.rb +180 -0
  517. data/lib/studium/gui/shared_code/show_upcoming_exams/show_upcoming_exams_module.rb +206 -0
  518. data/lib/studium/images/libui_ask_exam_question.png +0 -0
  519. data/lib/studium/images/outdated.png +0 -0
  520. data/lib/studium/images/small_logos/DNA.png +0 -0
  521. data/lib/studium/images/small_logos/README.md +2 -0
  522. data/lib/studium/images/small_logos/solved.png +0 -0
  523. data/lib/studium/images/studies_favicon.png +0 -0
  524. data/lib/studium/java/README.md +5 -0
  525. data/lib/studium/java/studium/AskExamQuestion.java +461 -0
  526. data/lib/studium/java/studium/Base.java +123 -0
  527. data/lib/studium/java/studium/Constants.java +122 -0
  528. data/lib/studium/java/studium/EnsureThatTheLogDirectoryExists.java +57 -0
  529. data/lib/studium/java/studium/Mkdir.java +13 -0
  530. data/lib/studium/java/studium/OpenLastExamQuestionurlLinkViaTheBrowser.java +90 -0
  531. data/lib/studium/java/studium/ReturnNQuestionsSolvedInTotal.java +69 -0
  532. data/lib/studium/java/studium/Solved.java +112 -0
  533. data/lib/studium/java/studium/Test.java +60 -0
  534. data/lib/studium/java/studium/studium/AskExamQuestion.class +0 -0
  535. data/lib/studium/java/studium/studium/Base.class +0 -0
  536. data/lib/studium/java/studium/studium/Constants.class +0 -0
  537. data/lib/studium/java/studium/studium/EnsureThatTheLogDirectoryExists.class +0 -0
  538. data/lib/studium/java/studium/studium/Mkdir.class +0 -0
  539. data/lib/studium/java/studium/studium/OpenLastExamQuestionurlLinkViaTheBrowser.class +0 -0
  540. data/lib/studium/java/studium/studium/ReturnNQuestionsSolvedInTotal.class +0 -0
  541. data/lib/studium/java/studium/studium/Solved.class +0 -0
  542. data/lib/studium/java/studium/studium/Test.class +0 -0
  543. data/lib/studium/jobs/jobs.rb +80 -0
  544. data/lib/studium/logging/README.md +2 -0
  545. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +58 -0
  546. data/lib/studium/logging/html_log_directory.rb +42 -0
  547. data/lib/studium/logging/log_directory.rb +112 -0
  548. data/lib/studium/logging/store_last_question_asked_into_file.rb +137 -0
  549. data/lib/studium/parsers/README.md +2 -0
  550. data/lib/studium/parsers/custom_exam_results_parser.rb +209 -0
  551. data/lib/studium/parsers/parse_lva_dates.rb +233 -0
  552. data/lib/studium/parsers/parse_remote_lecture.rb +331 -0
  553. data/lib/studium/project/project.rb +88 -0
  554. data/lib/studium/requires/common_popular_requires.rb +37 -0
  555. data/lib/studium/requires/commonly_used_requires.rb +14 -0
  556. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  557. data/lib/studium/requires/require_ects_scripts.rb +27 -0
  558. data/lib/studium/requires/require_encoding.rb +7 -0
  559. data/lib/studium/requires/require_the_check_and_sanitize_files.rb +31 -0
  560. data/lib/studium/requires/require_the_curricula_files.rb +28 -0
  561. data/lib/studium/requires/require_the_exam_question_class.rb +7 -0
  562. data/lib/studium/requires/require_the_exams_files.rb +46 -0
  563. data/lib/studium/requires/require_the_logging_files.rb +23 -0
  564. data/lib/studium/requires/require_the_parsers.rb +28 -0
  565. data/lib/studium/requires/require_the_studium_constants.rb +10 -0
  566. data/lib/studium/requires/require_the_studium_project.rb +70 -0
  567. data/lib/studium/requires/require_the_toplevel_methods.rb +27 -0
  568. data/lib/studium/requires/require_the_utility_scripts.rb +34 -0
  569. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  570. data/lib/studium/requires/require_yaml.rb +7 -0
  571. data/lib/studium/requires/return_remote_homepage_of_this_lecture.rb +7 -0
  572. data/lib/studium/requires/with_GUI.rb +13 -0
  573. data/lib/studium/requires/www_mode.rb +17 -0
  574. data/lib/studium/statistics/README.md +4 -0
  575. data/lib/studium/statistics/best_exam_months.rb +92 -0
  576. data/lib/studium/statistics/curriculum_comparer/curriculum_comparer.rb +386 -0
  577. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +142 -0
  578. data/lib/studium/statistics/exam_topics_that_are_about_to_be_completed.rb +119 -0
  579. data/lib/studium/statistics/max_stats.rb +170 -0
  580. data/lib/studium/statistics/new_questions_per_year.rb +147 -0
  581. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +167 -0
  582. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +474 -0
  583. data/lib/studium/statistics/show_exam_statistics.rb +66 -0
  584. data/lib/studium/statistics/show_which_courses_are_in_a_bachelor_or_master_curriculum_respectively.rb +104 -0
  585. data/lib/studium/statistics/top_stats.rb +127 -0
  586. data/lib/studium/toplevel_methods/all_passed_exams.rb +37 -0
  587. data/lib/studium/toplevel_methods/already_solved_this_lecture.rb +101 -0
  588. data/lib/studium/toplevel_methods/available_topics.rb +161 -0
  589. data/lib/studium/toplevel_methods/calculate_pr/303/274fungsimmanente_lectures_from_this_file.rb +55 -0
  590. data/lib/studium/toplevel_methods/copy_the_last_backup_of_file_lecture_information.rb +34 -0
  591. data/lib/studium/toplevel_methods/curriculum_related_code.rb +1038 -0
  592. data/lib/studium/toplevel_methods/does_this_course_require_mandatory_presence.rb +52 -0
  593. data/lib/studium/toplevel_methods/download.rb +161 -0
  594. data/lib/studium/toplevel_methods/e.rb +16 -0
  595. data/lib/studium/toplevel_methods/ects_from_lectures.rb +250 -0
  596. data/lib/studium/toplevel_methods/editor.rb +67 -0
  597. data/lib/studium/toplevel_methods/esystem.rb +29 -0
  598. data/lib/studium/toplevel_methods/filter_away_invalid_questions.rb +77 -0
  599. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +3807 -0
  600. data/lib/studium/toplevel_methods/has_this_lecture_been_already_passed_but_the_id_was_changed_lateron.rb +42 -0
  601. data/lib/studium/toplevel_methods/has_this_module_been_completed.rb +208 -0
  602. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +32 -0
  603. data/lib/studium/toplevel_methods/is_on_roebe.rb +27 -0
  604. data/lib/studium/toplevel_methods/is_this_exam_topic_included.rb +46 -0
  605. data/lib/studium/toplevel_methods/is_this_homepage_registered.rb +32 -0
  606. data/lib/studium/toplevel_methods/is_this_lecture_a_practical_course.rb +93 -0
  607. data/lib/studium/toplevel_methods/is_this_lecture_registered_in_upcoming_exams.rb +45 -0
  608. data/lib/studium/toplevel_methods/java.rb +32 -0
  609. data/lib/studium/toplevel_methods/lecture_information.rb +108 -0
  610. data/lib/studium/toplevel_methods/lva_numbers.rb +358 -0
  611. data/lib/studium/toplevel_methods/main_dataset.rb +73 -0
  612. data/lib/studium/toplevel_methods/map_input_to_this_curriculum_filename.rb +607 -0
  613. data/lib/studium/toplevel_methods/methods_related_to_files_and_directories.rb +481 -0
  614. data/lib/studium/toplevel_methods/misc.rb +580 -0
  615. data/lib/studium/toplevel_methods/n_questions_available.rb +141 -0
  616. data/lib/studium/toplevel_methods/n_topics_available.rb +63 -0
  617. data/lib/studium/toplevel_methods/names_of_all_solved_exams.rb +77 -0
  618. data/lib/studium/toplevel_methods/note_down_the_start_time_and_how_many_exams_have_been_already_solved.rb +69 -0
  619. data/lib/studium/toplevel_methods/opnn.rb +27 -0
  620. data/lib/studium/toplevel_methods/passed_this_exam_on.rb +105 -0
  621. data/lib/studium/toplevel_methods/read_delay_between_questions_from_file.rb +36 -0
  622. data/lib/studium/toplevel_methods/regexes.rb +90 -0
  623. data/lib/studium/toplevel_methods/registered_for_this_exam.rb +83 -0
  624. data/lib/studium/toplevel_methods/remove_comments.rb +27 -0
  625. data/lib/studium/toplevel_methods/remove_exam_topics_that_were_already_answered.rb +27 -0
  626. data/lib/studium/toplevel_methods/remove_tags.rb +35 -0
  627. data/lib/studium/toplevel_methods/report.rb +439 -0
  628. data/lib/studium/toplevel_methods/return_all_exams_on_this_day.rb +69 -0
  629. data/lib/studium/toplevel_methods/return_dataset_for_this_exam_topic.rb +45 -0
  630. data/lib/studium/toplevel_methods/return_ects_from_this_lecture_stored_in_the_file_lecture_information.rb +194 -0
  631. data/lib/studium/toplevel_methods/return_hash_of_already_solved_lectures.rb +46 -0
  632. data/lib/studium/toplevel_methods/return_last_exam_question.rb +34 -0
  633. data/lib/studium/toplevel_methods/return_lva_number_of_this_lecture.rb +72 -0
  634. data/lib/studium/toplevel_methods/return_n_percent_solved_from_this_topic.rb +90 -0
  635. data/lib/studium/toplevel_methods/return_n_questions_were_answered_for_this_topic.rb +62 -0
  636. data/lib/studium/toplevel_methods/return_proper_university_image.rb +86 -0
  637. data/lib/studium/toplevel_methods/return_question_answer_string_from_this_topic.rb +63 -0
  638. data/lib/studium/toplevel_methods/return_remote_homepage_of_this_lecture.rb +11311 -0
  639. data/lib/studium/toplevel_methods/return_remote_moodle_link_of_this_lecture.rb +2405 -0
  640. data/lib/studium/toplevel_methods/return_sanitized_dataset_from_the_file_lecture_information.rb +110 -0
  641. data/lib/studium/toplevel_methods/return_theme_of_the_next_upcoming_exam.rb +40 -0
  642. data/lib/studium/toplevel_methods/runmode.rb +97 -0
  643. data/lib/studium/toplevel_methods/sanitized_dataset_from_file_passed_exams_per_month.rb +53 -0
  644. data/lib/studium/toplevel_methods/set_last_file_for_exam_questions.rb +64 -0
  645. data/lib/studium/toplevel_methods/set_this_cd_alias_to.rb +92 -0
  646. data/lib/studium/toplevel_methods/spacer.rb +18 -0
  647. data/lib/studium/toplevel_methods/time.rb +297 -0
  648. data/lib/studium/toplevel_methods/total_ects_points_passed.rb +73 -0
  649. data/lib/studium/toplevel_methods/try_to_guess_the_most_likely_lva_id.rb +58 -0
  650. data/lib/studium/toplevel_methods/try_to_return_the_expanded_name_of_this_lecture.rb +64 -0
  651. data/lib/studium/toplevel_methods/unfinished.rb +51 -0
  652. data/lib/studium/toplevel_methods/url.rb +106 -0
  653. data/lib/studium/toplevel_methods/verbose_truth.rb +36 -0
  654. data/lib/studium/toplevel_methods/when_was_this_lecture_passed.rb +54 -0
  655. data/lib/studium/toplevel_methods/word_wrap.rb +56 -0
  656. data/lib/studium/toplevel_methods/write_into_file_related_functionality.rb +197 -0
  657. data/lib/studium/toplevel_methods/yes_or_no_ja_oder_nein.rb +33 -0
  658. data/lib/studium/universities_in_austria/README.md +2 -0
  659. data/lib/studium/universities_in_austria/boku/README.md +4 -0
  660. data/lib/studium/universities_in_austria/boku/boku_/303/266ffnungszeiten.rb +28 -0
  661. data/lib/studium/universities_in_austria/boku/show_three_pillars_of_these_lectures.rb +110 -0
  662. data/lib/studium/universities_in_austria/boku/three_pillars.rb +237 -0
  663. data/lib/studium/universities_in_austria/tu_vienna/README.md +6 -0
  664. data/lib/studium/universities_in_austria/tu_vienna/tu_ferien.rb +42 -0
  665. data/lib/studium/universities_in_austria/tu_vienna/tu_/303/266ffnungszeiten.rb +34 -0
  666. data/lib/studium/university_course/university_course.rb +409 -0
  667. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +375 -0
  668. data/lib/studium/utility_scripts/audio_stats.rb +171 -0
  669. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +252 -0
  670. data/lib/studium/utility_scripts/auto_stud/constants.rb +18 -0
  671. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  672. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  673. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +93 -0
  674. data/lib/studium/utility_scripts/average_grade_of_this_curriculum.rb +155 -0
  675. data/lib/studium/utility_scripts/blocked_courses.rb +146 -0
  676. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  677. data/lib/studium/utility_scripts/calendar/calendar.rb +251 -0
  678. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  679. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +221 -0
  680. data/lib/studium/utility_scripts/course_registrations/course_registrations.rb +98 -0
  681. data/lib/studium/utility_scripts/courses/courses.rb +177 -0
  682. data/lib/studium/utility_scripts/create/README.md +2 -0
  683. data/lib/studium/utility_scripts/create/webpage_of_university.rb +129 -0
  684. data/lib/studium/utility_scripts/create/webpage_of_university_BOKU.rb +61 -0
  685. data/lib/studium/utility_scripts/create/webpage_of_university_TU.rb +60 -0
  686. data/lib/studium/utility_scripts/create/webpage_of_university_UniWien.rb +60 -0
  687. data/lib/studium/utility_scripts/create_database/create_database.rb +106 -0
  688. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  689. data/lib/studium/utility_scripts/currently_participating_in_these_lectures/currently_participating_in_these_lectures.rb +104 -0
  690. data/lib/studium/utility_scripts/display_lecture_url/display_lecture_url.rb +176 -0
  691. data/lib/studium/utility_scripts/expand_time_range/expand_time_range.rb +521 -0
  692. data/lib/studium/utility_scripts/finished_exams_at_this_university/finished_exams_at_this_university.rb +173 -0
  693. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +23 -0
  694. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +149 -0
  695. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +31 -0
  696. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  697. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +158 -0
  698. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  699. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +50 -0
  700. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  701. data/lib/studium/utility_scripts/generate_spreadsheet/generate_spreadsheet.rb +354 -0
  702. data/lib/studium/utility_scripts/generate_spreadsheet/misc.rb +144 -0
  703. data/lib/studium/utility_scripts/holidays/holidays.rb +156 -0
  704. data/lib/studium/utility_scripts/homepage_of_these_courses/homepage_of_these_courses.rb +125 -0
  705. data/lib/studium/utility_scripts/lectures_attributed_to_universities/lectures_attributed_to_universities.rb +336 -0
  706. data/lib/studium/utility_scripts/lva_dates_of_the_important_courses.rb +111 -0
  707. data/lib/studium/utility_scripts/lva_nummer/lva_nummer.rb +431 -0
  708. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month/mandatory_lectures_in_this_month.rb +316 -0
  709. data/lib/studium/utility_scripts/moodle/moodle.rb +213 -0
  710. data/lib/studium/utility_scripts/name_of_this_lva_id/name_of_this_lva_id.rb +110 -0
  711. data/lib/studium/utility_scripts/new_stud.rb +324 -0
  712. data/lib/studium/utility_scripts/next_week/next_week.rb +103 -0
  713. data/lib/studium/utility_scripts/not_yet_registered/not_yet_registered.rb +120 -0
  714. data/lib/studium/utility_scripts/open_last_exam_question_url_link_via_the_browser.rb +76 -0
  715. data/lib/studium/utility_scripts/passed_ects_per_year/passed_ects_per_year.rb +313 -0
  716. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  717. data/lib/studium/utility_scripts/pdf/README.md +2 -0
  718. data/lib/studium/utility_scripts/pdf/create_pdf_file_for_this_exam_topic.rb +355 -0
  719. data/lib/studium/utility_scripts/pdf/hexapdf_support.rb +50 -0
  720. data/lib/studium/utility_scripts/preparatory_meetings/preparatory_meetings.rb +317 -0
  721. data/lib/studium/utility_scripts/priority/priority.rb +164 -0
  722. data/lib/studium/utility_scripts/priority_points/priority_points.rb +263 -0
  723. data/lib/studium/utility_scripts/publish_my_exams/publish_my_exams.rb +174 -0
  724. data/lib/studium/utility_scripts/regexes/README.md +1 -0
  725. data/lib/studium/utility_scripts/regexes/generate_regex.rb +314 -0
  726. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +55 -0
  727. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  728. data/lib/studium/utility_scripts/report_outdated_timetable_entries/report_outdated_timetable_entries.rb +142 -0
  729. data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +128 -0
  730. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +254 -0
  731. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +265 -0
  732. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +138 -0
  733. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +144 -0
  734. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +374 -0
  735. data/lib/studium/utility_scripts/semesterplaner/semesterplaner.rb +311 -0
  736. data/lib/studium/utility_scripts/set_aliases_based_on_this_file.rb +97 -0
  737. data/lib/studium/utility_scripts/show_all_passed_master_lectures/show_all_passed_master_lectures.rb +126 -0
  738. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +1385 -0
  739. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +23 -0
  740. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +63 -0
  741. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +33 -0
  742. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +50 -0
  743. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  744. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +147 -0
  745. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +910 -0
  746. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language/show_lectures_fitting_to_this_language.rb +121 -0
  747. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme/show_lectures_fitting_to_this_theme.rb +105 -0
  748. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +3167 -0
  749. data/lib/studium/utility_scripts/show_lectures_on_this_day/show_lectures_on_this_day.rb +150 -0
  750. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture/show_lva_dates_of_this_lecture.rb +182 -0
  751. data/lib/studium/utility_scripts/show_mixed_bachelor_master_courses/show_mixed_bachelor_master_courses.rb +92 -0
  752. data/lib/studium/utility_scripts/show_outdated_lva_dates/show_outdated_lva_dates.rb +214 -0
  753. data/lib/studium/utility_scripts/show_passed_exams_having_this_grade/show_passed_exams_having_this_grade.rb +91 -0
  754. data/lib/studium/utility_scripts/show_solved_english_lectures/show_solved_english_lectures.rb +139 -0
  755. data/lib/studium/utility_scripts/steop/README.md +4 -0
  756. data/lib/studium/utility_scripts/steop/show_all_steop_lectures.rb +93 -0
  757. data/lib/studium/utility_scripts/steop/steop_lectures_in_this_curriculum.rb +284 -0
  758. data/lib/studium/utility_scripts/steop/steop_lva_dates.rb +119 -0
  759. data/lib/studium/utility_scripts/studienkennzahl/studienkennzahl.rb +116 -0
  760. data/lib/studium/utility_scripts/studium_skeleton/studium_skeleton.rb +242 -0
  761. data/lib/studium/utility_scripts/stundenplan.rb +600 -0
  762. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +217 -0
  763. data/lib/studium/utility_scripts/ufind/ufind.rb +106 -0
  764. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +26 -0
  765. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  766. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +187 -0
  767. data/lib/studium/utility_scripts/video_lecture_downloader/video_lecture_downloader.rb +107 -0
  768. data/lib/studium/utility_scripts/week_parser/constants.rb +23 -0
  769. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  770. data/lib/studium/utility_scripts/week_parser/menu.rb +59 -0
  771. data/lib/studium/utility_scripts/week_parser/misc.rb +373 -0
  772. data/lib/studium/utility_scripts/week_parser/reset.rb +65 -0
  773. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  774. data/lib/studium/utility_scripts/week_parser/show.rb +236 -0
  775. data/lib/studium/utility_scripts/week_parser/week_parser.rb +49 -0
  776. data/lib/studium/utility_scripts/weekday_parser.rb +155 -0
  777. data/lib/studium/utility_scripts/weekly_schedule.rb +198 -0
  778. data/lib/studium/utility_scripts/wochenplanung/wochenplanung.rb +267 -0
  779. data/lib/studium/version/version.rb +46 -0
  780. data/lib/studium/www/exams/exams.cgi +54 -0
  781. data/lib/studium/www/fast_ask_exam_question/fast_ask_exam_question.cgi +156 -0
  782. data/lib/studium/www/handle_curricula/handle_curricula.cgi +154 -0
  783. data/lib/studium/www/next_generation_exam_question_trainer/next_generation_exam_question_trainer.cgi +112 -0
  784. data/lib/studium/www/next_generation_exam_question_trainer/solved.cgi +26 -0
  785. data/lib/studium/www/sinatra/app.rb +231 -0
  786. data/lib/studium/www/sinatra/curriculum_displayer/curriculum_displayer.rb +162 -0
  787. data/lib/studium/www/sinatra/misc.rb +115 -0
  788. data/lib/studium/www/statistics/statistics.cgi +82 -0
  789. data/lib/studium/www/upcoming_exams/upcoming_exams.cgi +36 -0
  790. data/lib/studium/yaml/ad_hoc_trainer/README.md +2 -0
  791. data/lib/studium/yaml/ad_hoc_trainer/exam_topics.md +22 -0
  792. data/lib/studium/yaml/allowed_themes_for_courses/allowed_themes_for_courses.yml +348 -0
  793. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information/array_allowed_entries_for_the_file_lecture_information.yml +71 -0
  794. data/lib/studium/yaml/available_exam_topics/available_exam_topics.yml +234 -0
  795. data/lib/studium/yaml/backlog_of_exams.yml +37 -0
  796. data/lib/studium/yaml/colours/custom_colours.yml +50 -0
  797. data/lib/studium/yaml/colours/use_colours.yml +1 -0
  798. data/lib/studium/yaml/current_exams.yml +30 -0
  799. data/lib/studium/yaml/curricula/README.md +39 -0
  800. data/lib/studium/yaml/curricula/bachelor/bachelor_agrarwissenschaften_033255.yml +147 -0
  801. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_basisblock_033630.yml +71 -0
  802. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_botanik_033630.yml +100 -0
  803. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_ecology_033630.yml +74 -0
  804. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +122 -0
  805. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_molekulare_biologie_033630.yml +106 -0
  806. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_zoologie_033630.yml +87 -0
  807. data/lib/studium/yaml/curricula/bachelor/bachelor_chemie_033662.yml +165 -0
  808. data/lib/studium/yaml/curricula/bachelor/bachelor_dummy_curriculum.yml +182 -0
  809. data/lib/studium/yaml/curricula/bachelor/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  810. data/lib/studium/yaml/curricula/bachelor/bachelor_forstwirtschaft_033225.yml +115 -0
  811. data/lib/studium/yaml/curricula/bachelor/bachelor_informatik_033521.yml +136 -0
  812. data/lib/studium/yaml/curricula/bachelor/bachelor_ktww_033231.yml +84 -0
  813. data/lib/studium/yaml/curricula/bachelor/bachelor_lmbt_033217.yml +121 -0
  814. data/lib/studium/yaml/curricula/bachelor/bachelor_medizinische_informatik_033533.yml +283 -0
  815. data/lib/studium/yaml/curricula/bachelor/bachelor_molekularbiologie_033665.yml +95 -0
  816. data/lib/studium/yaml/curricula/bachelor/bachelor_nutrition_science_033638.yml +119 -0
  817. data/lib/studium/yaml/curricula/bachelor/bachelor_pharmazie_033305.yml +170 -0
  818. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_chemie_033290.yml +131 -0
  819. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_informatik_033535.yml +23 -0
  820. data/lib/studium/yaml/curricula/bachelor/bachelor_ubrm_033227.yml +142 -0
  821. data/lib/studium/yaml/curricula/bachelor/bachelor_verfahrenstechnik_033273.yml +167 -0
  822. data/lib/studium/yaml/curricula/bachelor/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  823. data/lib/studium/yaml/curricula/experimental/bachelor_informatik_in_den_lebenswissenschaften.yml +137 -0
  824. data/lib/studium/yaml/curricula/individual/bachelor_formale_logik.yml +88 -0
  825. data/lib/studium/yaml/curricula/individual/bachelor_informatik_und_molekulare_biologie.yml +1161 -0
  826. data/lib/studium/yaml/curricula/individual/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  827. data/lib/studium/yaml/curricula/individual/master_bioinformatics_and_nanobiotechnology_in_molecular_medicine.yml +306 -0
  828. data/lib/studium/yaml/curricula/individual/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  829. data/lib/studium/yaml/curricula/master/master_bioinformatik_066875.yml +75 -0
  830. data/lib/studium/yaml/curricula/master/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  831. data/lib/studium/yaml/curricula/master/master_biologische_chemie_066863.yml +66 -0
  832. data/lib/studium/yaml/curricula/master/master_dummy_curriculum.yml +197 -0
  833. data/lib/studium/yaml/curricula/master/master_genetik_und_entwicklungsbiologie_066877.yml +89 -0
  834. data/lib/studium/yaml/curricula/master/master_lmbt_066418.yml +112 -0
  835. data/lib/studium/yaml/curricula/master/master_molecular_biology_066865.yml +72 -0
  836. data/lib/studium/yaml/curricula/master/master_molekulare_biologie_066834.yml +151 -0
  837. data/lib/studium/yaml/curricula/master/master_pharmazie_066605.yml +176 -0
  838. data/lib/studium/yaml/curricula/master/master_technische_chemie_066490.yml +123 -0
  839. data/lib/studium/yaml/curricula/outdated/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  840. data/lib/studium/yaml/curricula/outdated/master_food_science_and_plant_biotechnology.yml +31 -0
  841. data/lib/studium/yaml/curricula.yml +562 -0
  842. data/lib/studium/yaml/daily_questions_solved/daily_questions_solved.yml +1849 -0
  843. data/lib/studium/yaml/default_delay.yml +4 -0
  844. data/lib/studium/yaml/default_encoding.yml +1 -0
  845. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  846. data/lib/studium/yaml/editor.yml +1 -0
  847. data/lib/studium/yaml/exams/next_exams_to_do.md +9 -0
  848. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  849. data/lib/studium/yaml/german/README.md +2 -0
  850. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  851. data/lib/studium/yaml/grouped_themes/grouped_themes.yml +258 -0
  852. data/lib/studium/yaml/holidays/holidays.yml +201 -0
  853. data/lib/studium/yaml/important_exams.yml +274 -0
  854. data/lib/studium/yaml/inscription_dates_of_universities.yml +60 -0
  855. data/lib/studium/yaml/lecture_aliases.yml +138 -0
  856. data/lib/studium/yaml/lecture_information/lecture_information.yml +63818 -0
  857. data/lib/studium/yaml/log_dir.yml +1 -0
  858. data/lib/studium/yaml/main_topic/main_topic.yml +11 -0
  859. data/lib/studium/yaml/max_stats.yml +256 -0
  860. data/lib/studium/yaml/meta_themes +1 -0
  861. data/lib/studium/yaml/mitbelegung/README.md +4 -0
  862. data/lib/studium/yaml/mitbelegung/mitbelegung.yml +21 -0
  863. data/lib/studium/yaml/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.yml +363 -0
  864. data/lib/studium/yaml/n_total_questions.yml +1 -0
  865. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  866. data/lib/studium/yaml/semester_planner/README.md +4 -0
  867. data/lib/studium/yaml/semester_planner/semester_planner.yml +189 -0
  868. data/lib/studium/yaml/show_topic.yml +1 -0
  869. data/lib/studium/yaml/statistics/lecture_information.yml +1 -0
  870. data/lib/studium/yaml/statistics/max_stats.yml +239 -0
  871. data/lib/studium/yaml/statistics/statistics.yml +77 -0
  872. data/lib/studium/yaml/week/01_monday.yml +25 -0
  873. data/lib/studium/yaml/week/02_tuesday.yml +68 -0
  874. data/lib/studium/yaml/week/03_wednesday.yml +63 -0
  875. data/lib/studium/yaml/week/04_thursday.yml +20 -0
  876. data/lib/studium/yaml/week/05_friday.yml +31 -0
  877. data/lib/studium/yaml/week/06_saturday.yml +16 -0
  878. data/lib/studium/yaml/week/07_sunday.yml +0 -0
  879. data/lib/studium/yaml/week/README.md +10 -0
  880. data/lib/studium.rb +5 -0
  881. data/studium.gemspec +82 -0
  882. data/test/testing_colourized_question_and_answer.rb +18 -0
  883. data/test/testing_studium.rb +244 -0
  884. data/test/testing_studium_base_class.rb +31 -0
  885. data/test/testing_the_file_lecture_information.rb +18 -0
  886. data/test/testing_time_component.rb +29 -0
  887. metadata +1101 -0
@@ -0,0 +1,267 @@
1
+ # =========================================================================== #
2
+ # === Mikroskopie
3
+ #
4
+ # Mikroskop tag. Mikroskope tag. Mikroskopie fällt hierunter.
5
+ # Mikroskopie tag. Auch Optik. AFM ist zur Zeit auch hier zu finden.
6
+ # Also includes Spectroscopy.
7
+ # =========================================================================== #
8
+
9
+ - Nenne einen <one>Vorteil</one> <two>der Röntgenstrahlung</two> gegenüber den Lichtmikroskopen oder Elektronenmikroskopen. A: <one>Röntgenstrahlung</one> hat den Vorteil der <two>kürzeren Wellenlänge</two>, was potenziell eine <three>höhere Auflösung</three> ermöglicht.
10
+ - In <one>fluorescence microscopy</one>, for fluorescence: <two>which two states can be observed here</two>? (1) the <one>excited state</one> (2) the <one>ground state</one>
11
+ - Die <one>Mikroskopie im Vakuum</one> benötigt präparative Maßnahmen für das Objekt. Nenne drei davon. A: (1) "Fixieren" (2) <one>Einbetten</one> (3) <one>Einfrieren</one>
12
+ - <one>Wozu</one> wird <one>Uranylacetat</one> eingesetzt? Als <one>Kontrastmittel</one> <two>bei der Elektronenmikroskopie</two>.
13
+ - Give another word for imagining for a limited period of time. A: Taking a snapshot.
14
+ - In der <one>Fluoreszenzmikroskopie</one>: <two>was ist mit einem</two> <three>bandpass filter</three> <two>gemeint</two>? Dies ist <one>ein Filter der Licht nur innerhalb eines bestimmten Wellenlängenbereichs durchlässt</one>.
15
+ - In <one>dark-field microscopy</one>: light does not pass through ... ? the <one>specimen</one>.
16
+ - Nenne einen Nachteil der <one>NIPKOW-DISC</one>. A: Das <one>pinhole</one> <two>ist nicht verstellbar</two>.
17
+ - <one>Auflösungsvermögen</one> des <two>AFM</two> (von-bis)? <one>0,1 - 10 nm</one>.
18
+ - Why should <one>light exposure to the target object</one> be minimized when <two>Live cell imaging</two> is used? Because <one>light exposure can cause phototoxicity</one>.
19
+ - Bei der <one>Fluoreszenzmikroskopie</one>, bei der Bildaufnahme, wieso ist die Kamera eine S/W Kamera? Jede <one>Fluoreszenz</one> <two>wird einzeln aufgenommen</two>. Es erfolgt danach ein <three>elektronischer overlay der Einzelbilder</three>.
20
+ - <one>Fluorophores</one> are <two>substances that can ... </two>? <one>emit light</one>.
21
+ - In microscopy: give another name for <one>random variability</one>. A: <one>Noise</one>.
22
+ - <one>Luciferase</one> is used <two>to convert from luciferin to oxyluciferin</two>. Additionally which molecule is necessary, inside of a given cell? <one>ATP</one>.
23
+ - The <one>confocal microscopes</one> contain <two>N-Disks</two>, which are ... ? <one>Nipkow-disks</one>. This is <two>a mechanical, rotating, geometrically operating image scanning device</two>.
24
+ - <one>Fluorophores</one> can be broadly divided into which two main classes? (1) <one>intrinsic</one> (2) <one>extrinsic</one>
25
+ - The <one>TIRF-M</one> refers to <two>what kind of microscopy</two>? <one>TIRF-M</one> refers to a <one>Total Internal Reflection Fluorescence Microscopy</one>.
26
+ - In microscopy, we have <one>spatial resolution</one>, <one>temporal resolution</one> and <one>sensitivity</one>. The <two>cMOS</two> attempts to improve which of these three points? <one>cMOS</one> <two>attempts to improve the</two> <three>temporal resolution</three>.
27
+ - In the <one>FRET technique</one>: <two>the distance between the two fluorochromes should not exceed n nm</two>? <one>5 nm</one>.
28
+ - Schädigt Infrarot-Laserlicht lebende Zellen weniger als sichtbares Licht? <one>Ja</one>.
29
+ - Name the <one>three lenses</one> that are part of a TEM. A: (1) condenser lenses (2) <one>objective lens</one> (3) <one>projector lenses</one>
30
+ - Nenne ein Beispiel für <one>inkohärentes Licht</one>. A: Das Licht eine Glühlampe.
31
+ - Wie unterscheiden sich ein einfaches Röntgenbild und das Bild der Tomografie? Röntgenbild ist in 2D wohingegen die Tomografie in 3D ist.
32
+ - Bei der FCM Mikroskopie: was ist mit Gating gemeint? Dies meint die Auswahl von Datenpunkten, deren Messparamter innerhalb bestimmter Grenzen liegen.
33
+ - Ein <one>density plot</one> bei einem FCM hat welche zusätzliche Information, verglichen zu einem dot plot? Wir erhalten hier auch <one>Information zur Verteilungsdichte</one>.
34
+ - FCM in microscopy is ... ? <one>In vivo fluorescence correlation microscopy</one>.
35
+ - Was kann man mit <one>DAPI</one> messen? Den <one>DNA-Gehalt einer Zelle</one>.
36
+ - Andere Bezeichnung für eine Telan-Linse? <one>Tubuslinse</one>.
37
+ - Name one reason why electrons are used in electron microscopy. A: The wavelength of an electron can be up to 100,000 times shorter than that of visible light photons. Thus, electron microscopes have a "higher resolving power" than light microscopes do.
38
+ - <one>Glaslinsen</one> leiden an <two>Farbfehlern</two>. <three>Erkläre diese Aussage</three>. A: <one>Glaslinsen</one> fokussieren <one>kurzwelliges Licht</one> stärker als <one>langwelliges Licht</one>.
39
+ - <one>Lenses on microscopes</one> that require use of oil called ... ? <one>oil-immersion lenses</one>.
40
+ - In cryo-EM, for viral particles: why does the freezing at liquid ethane temperatures have to occur rapidly? Because such rapid freezing prevents the formation of ice crystals that would otherwise distort or disrupt the viral structure.
41
+ - Nenne <one>zwei Lösungsmittel</one> für das Einfrieren in der <two>Kryo-EM</two>. A: (1) <one>flüssiges Ethan</one> (2) <one>Propan</one>
42
+ - In a <one>STM</one>: why the word <two>tunneling</two>? Because a type of current is applied that <one>conveys electrons across very small gaps</one>.
43
+ - Does the <one>ocular</one> <two>have a higher magnification than</two> the <one>objective</one>? Normally no; the <one>ocular</one> has a magnification of <mediumseagreen>10x</mediumseagreen> whereas the objective has a magnification range of up to <mediumseagreen>100x</mediumseagreen>.
44
+ - In the technique called <one>FRET</one> (<two>Förster resonance energy transfer</two>): what is necessary for the two molecules of interest that we wish to track? Both must carry a different fluorochrome. URL: https://en.wikipedia.org/wiki/F%C3%B6rster_resonance_energy_transfer
45
+ - If <one>two electromagnetic waves with identical amplitudes</one> spatially superimpose but <two>oscillate in exactly opposite directions</two>, what can be observed? These two waves will <one>completely cancel each other</one>; this is also known as <two>destructive interference</two>.
46
+ - <one>Bioluminescence</one> can be defined as ... ? <one>chemiluminescence that takes place inside a living organism</one>.
47
+ - For imaging via a microscope we may employ GFP and/or luciferase. Is there any substantial advantage compared to these two, in regards to <one>simplicity</one>? Yes - luciferase requires a substrate (luciferin), whereas GFP only needs exposure to light.
48
+ - <one>Comparing</one> <two>bioluminescent luciferase imaging</two> with <three>fluorescent GFP imaging</three>: which of these two is more sensitive? Bioluminescent luciferase is more sensitive.
49
+ - To enhance the FRET efficiency, the donor group should have which two abilities? (1) to absorb photons (2) to emit photons
50
+ - In <one>which aberration mode</one> would we <two>see many different focal points</two>? In <one>spherical aberration</one>.
51
+ - The <one>limiting factor</one> <two>in Van Leeuwenhoek's microscope</two> was ...? The <one>single convex lens</one>.
52
+ - <one>Longpass filters</one> can have a <two>very sharp slope</two>. <three>How do we call them in these cases</three>? <one>Edge filters</one>.
53
+ - Was ist ein <one>Long-pass</one> Filter? Dieser lässt Licht nur über einer abgegebenen Wellenlänge durch (Mnemonic: "long wavelength gets passed through").
54
+ - Give an example of an <one>internal property</one> of a fluorophore. A: The <one>natural lifetime</one>.
55
+ - Name <one>the two most common fixatives</one> for <two>electron microscopy</two>. A: (1) <one>Glutaraldehyd</one> (2) <one>Osmium tetroxide</one>
56
+ - Bei der <one>Lichtmikroskopie</one>: <two>was ist das Objekt</two>? Das ist <one>der Gegenstand, der beobachtet wird</one>.
57
+ - Gegeben sei <one>Fluorescein</one>. Dessen Ex: und Em: Wert liegt bei ... ? Ex bei: 495nm. Em bei: <two>520nm</two>. (Vereinfachte Schreibweise: BP 480/30)
58
+ - In microscopy: what is <one>contrast</one>? Contrast is the difference in luminance (intensity) of a feature that makes it distinguishable against other features.
59
+ - Name the <one>two groups of luminescence</one>. A: (1) <one>fluorescence</one> (2) <one>phosphorescence</one>
60
+ - Name a popular <one>fluorescent dye</one> that is used quite frequently in microbiology imaging. A: <one>DAPI</one>.
61
+ - <one>How</one> does the correction for chromatic and spherical aberration change the Numerical aperture? It leads to <one>an increase in the numerical aperture</one>.
62
+ - Englisch für <one>die Probe</one> (in der Mikroskopie)? <one>Specimen</one>.
63
+ - Is <one>chlorophyll</one> <two>naturally fluorescent</two>? <one>Yes</one>.
64
+ - <one>GFP</one> (the <two>green fluorescent protein</two>) was first isolated from ... which organism? <i>Aequoria victoria</i>. URL: https://en.wikipedia.org/wiki/Aequorea_victoria
65
+ - What is meant with <one>multispectral imaging</one>? This is <one>when different fluorophores are used in the same probe</one>; assigned to different excitation and emission channels.
66
+ - <one>Moderne Fluoreszenzmikroskope</one> mögen <two>welche zwei Filter</two> besitzen? (1) <one>Anregungsfilter</one> (2) <one>Sperrfilter</one>
67
+ - <one>Confocal Microscopes</one> are light microscopes with a special aperture, <two>the pinhole</two>. What is the job of the pinhole? The pinhole will <one>exclude fuzzy light</one>.
68
+ - In an <one>AFM</one>, which force is the most important one? The <one>interatomic force</one> called <two>van der Waals force</two>.
69
+ - Warum ist der <one>Nah-Infrarot-Bereich</one> besonders wichtig für "biomedizinische Anwendungen" wie zum Beispiel der Begutachtung von Material durch ein Mikroskop? Da es hier <one>keine körpereigene Fluoreszenz</one> gibt, in diesem Bereich.
70
+ - In <one>fluorescence microscopy</one>: name <two>two characteristic features</two> that illumination should fullfil. A: (1) it <one>should be bright</one> (2) It should be - In fluorescence microscopy: name two characteristic features that illumination should fullfil. A: (1) it should be bright (2) It should be homogenous
71
+ - Die <one>Mindestgröße</one> (<two>minimal resolution</two>) der Objekte, die man im Lichtmikroskop noch sehen kann, beträgt (von, bis) in nm? 300nm - 400nm.
72
+ - Assume that <one>we wish to observe microbial motility, by studying bundles of flagella</one>. <two>Which microscopy technique would we want to use</two>? <one>Dark-field microscopy</one>.
73
+ - What means <one>Binning</one> in Live Imaging? <one>Binning</one> refers to <two>reducing the coverage per pixel</two>.
74
+ - In <one>fluorescence microscopy</one> we can see the Airy Disk and the Point Spread Function. What is one key difference between these two? The Point Spread Function occurs in 3D; the Airy Disk occurs in 2D.
75
+ - The <one>Airy disk</one> occurs in 2D or 3D? In <one>2D</one>.
76
+ - An <one>Airy Disk</one> is a response of a microscope to a ... ? A <one>point source of light</one>.
77
+ - In <one>fluorescence microscopy</one> we may see a <two>Z Stack</two>. What do we mean with this? This refers largely to images taken at different focal planes, via a confocal laser.
78
+ - <one>Fluorescent beads</one> used in cell biology typically have a <two>diameter</two> of about n nm. A: About <one>170 nm</one>.
79
+ - <one>Aequorin</one> emits blue light, but what other condition (aside from light) has to be met? Ca2+ (Calcium) must be nearby.
80
+ - <one>Aequorin</one> emits light of which colour? Aequorin emits blue light.
81
+ - What is <one>photoactivation</one>? <one>Photoactivation</one> is <two>the light-induced activation of an inert molecule to an active state</two>.
82
+ - What is the difference between luminescence and fluorescence? (1) <one>luminescence</one>: emitting light spontaneously (2) <one>fluorescence</one>: emitting light on exposure to light
83
+ - In the FRET technique: what do we have to keep in mind when designing the two fluorochromes? The <one<donor fluorochrome's emission spectrum</one> <two>must overlap</two> with the absoprtion spectrum of the acceptor fluorochrome.
84
+ - <one>Confocal microscopes</one> can obtain images up to a depth of about ... n µm? About <one>150 µm</one>.
85
+ - What is meant with the expression <one>cellular exhibitionist</one>? This refers, for instance, to reveal parts of the inner cell via fluorscent colour, such as by making use of the GFP-tag.
86
+ - Via the technique called <one>multiphoton imaging</one> we can see up to n mm inside the cortex of a live mouse brain? Up to <one>0.5 mm</one>.
87
+ - Does <one>infrared laser light</one> - as used in some form of microscopy - less damage to living cells than visible light? <one>Yes</one>.
88
+ - Unter dem Kryo-Elektronenmikroskop sehen wir eine relativ kleine Struktur mit einer <one>Stargate</one> Struktur. Um welches Objekt könnte es sich hierbei handeln? Um ein <one>Mimivirus</one>.
89
+ - Nenne ein allgemeines Beispiel für die <one>Emissionsspektroskopie</one>. A: Zum Beispiel die <one>Fluoreszenzspektroskopie</one>.
90
+ - Genuine living cells were first seen by which human being? By the Dutch <one>Anton von Leeuwenhoek</one>.
91
+ - Nenne ein Beispiel für <one>eine automatische Blende im menschlichen Körper</one>. A: Die <one>Pupille</one>.
92
+ - In a <one>scanning probe microscope</one>: <two>how is the microscope called</two>? <one>Scanning tunneling microscope</one>.
93
+ - Nenne einen <one>Strahlteiler</one> in einem typischen Fluoreszenz-Mikroskop. A: <one>Dichromatischer Strahlteiler</one>.
94
+ - If we want <one>cells</one> <two>to attach to a glass surface</two>, what coating may we use? <one>Poly-Lysine</one>.
95
+ - Was meinen wir mit <one>direktem Imaging</one>? Dies ist wenn wir eine visuelle Beobachtung mit den eigenen Augen machen, also ein Objekt direkt betrachten können.
96
+ - In proteins, the <one>dominant fluorophore</one> is ... ? The <one>indole group</one> of <two>tryptophan</two>.
97
+ - Name <one>an optical aberration</one> that begins with the letter <two>a</two>. A: <one>Astigmatism</one>. URL: https://en.wikipedia.org/wiki/Astigmatism
98
+ - <one>When</one> may we wish to employ <two>critical point drying</two> in scanning electron microscopy? <one>Critical point drying</one> is useful when one has to dry <two>delicate samples</two> for SEM applications. It preserves the surface structure of a specimen which could otherwise be damaged due to surface tension when changing from the liquid to gaseous state.
99
+ - In <one>fluorescence spectroscopy</one>/microscopy: do we more often employ "long pass filters" or "short pass filters"? We more often see <one>long pass filters</one> being used.
100
+ - Beim <one>Lichtmikroskop</one>: wo finden wir die Lichtquelle? Die kommt von unten.
101
+ - Do <one>oil immersion lenses</one> have high or low numerical apertures? Oil-immersion lenses have <one>high numerical apertures</one>.
102
+ - In der <one>Fluoreszenz-Mikroskopie</one>, bei der Fluoreszenz: wie unterscheiden sich <two>Doppelbindungen</two> von "konjugierten Doppelbindungen" qualitativ gesehen? Bei den <one>konjugierten Doppelbindungen</one> ist nur eine geringere Anregungsenergie notwendig.
103
+ - Wofür steht <one>CCD</one> in der Mikroskopie? <one>Charge-coupled device</one>.
104
+ - In microscopy, as part of the technical instrumentation: what does the abbreviation <one>CCD</one> stand for? <one>Charge-coupled device</one>.
105
+ - In microscopy: the <one>microtome</one> usually is cooled with ...? With <one>liquid nitrogen</one>, down to -190°C.
106
+ - Gegeben sei <one>flash light</one> und <one>glow light</one>, in der Biolumineszenz. Was erlauben uns diese beiden Lichttypen? Wir können hierdurch einen <one>dual luciferase assay</one> durchführen.
107
+ - Bei der <one>Biolumineszenz</one>, ist die Messzeit limitiert? Ja, und zwar durch die <one>Enzymkinetik</one>.
108
+ - What do we mean with a <one>50</one>/<one>50 beam splitter</one>? This is a beam splitter that <one>reflects 50% of the incoming light</one> and <one>transmits 50%</one>.
109
+ - Name <one>the three main contrast mechanisms</one> in <two>TEM</two>. A: (1) <one>mass-thickness contrast</one> (2) diffraction contrast (3) <one>phase contrast</one>
110
+ - Is the dye called <one>Fluorescein</one> considered to be a toxic dye? <one>Fluorescein</one> is considered to be <two>a non-toxic dye</two>. URL: https://en.wikipedia.org/wiki/Fluorescein
111
+ - Die <one>Rastersondenmikroskopie</one> gliedert sich in welche zwei Verfahren? (1) "Rastertunnelmikroskopie" (2) <one>Rasterkraftmikroskopie</one>
112
+ - <one>Fluorescein</one> has how many -COOH groups? One.
113
+ - <one>Wodurch</one> wird die Auflösung eines Mikroskops primär bestimmt? Von der <one>eingesetzten Wellenlänge</one>.
114
+ - <one>Apochromat</one> versus <one>achromat lenses</one>: which one has better correction of chromatic and spherical aberration? The <one>apochromat (= apochromatic lens)</one>.
115
+ - Bei einem <one>Konfokalmikroskop</one>: was meinen wir mit dem Begriff <two>Konfokal</two> aus der Optik? Dies sind zwei optische Systeme mit <one>einem gemeinsamen Brennpunkt</one>.
116
+ - Why may we shy away from using <one>x-ray microscopy</one>? Because we have <one>no lenses</one>.
117
+ - <one>Capsule</one> versus <one>slime layer</one> in <two>bacteria</two>: which of these two are more readily visible by light microscopy? The <one>capsule</one>.
118
+ - Was macht ein <one>dichroitischer Spiegel</one> (<two>dichroic mirror</two>)? Er reflektiert Licht unterhalb einer abgegebenen Wellenlänge; und ist durchlässig über diesem Wert.
119
+ - <one>Who</one> was the "godfather" of modern fluorescent reporter-proteins? <one>Roger Tsien</one>.
120
+ - The image of a point source of light isn't actually a point, in a microscope. Due to diffraction, it's actually ... ? An <one>Airy disk</one>.
121
+ - Name a peculiar and small animal that <one>Robert Hooke</one> drew. A: A <one>flea</one>.
122
+ - <one>Confocal microscopy</one> offers several advantages over conventional optical microscopy. Name two such advantages. A: (1) <one>controllable depth of field</one> (2) the <one>ability to collect serial optical sections from thick specimens</one>
123
+ - In an <one>AFM</one>: aside from the <two>van der Waals</two> force, name another force (an attractive force) that is important. A: The <one>Coulomb forces</one>.
124
+ - Gibt es <one>ATP unabhängige Luciferasen</one>? Ja; sind von Relevanz in der <one>Biolumineszenz</one>.
125
+ - Is <one>NADH</one> fluorescent? Yes it is. URL: https://de.wikipedia.org/wiki/Nicotinamidadenindinukleotid
126
+ - Name a <one>common fixative for light microscopy</one>. A: <one>Formaldehyde</one>.
127
+ - Nenne einen extrem wichtigen Unterschied zwischen der <one>Biolumineszenz</one> und der <one>Fluoreszenz</one>. A: (1) <one>Biolumineszenz</one>: ein Substrat ist notwendig (2) <one>Fluoreszenz</one>: es ist KEIN Substrat notwendig
128
+ - Die <one>Linsenmacher-Gleichung</one> hilft uns bei der Berechnung ... für welche Linsen? Für <one>sphärische Linsen</one>.
129
+ - One of the most commonly used membrane probes is <one>DDH</one>. What does this abbreviation stand for? <one>Diphenylhexatriene</one>. URL: https://en.wikipedia.org/wiki/Diphenylhexatriene
130
+ - Was meinen wir mit der <one>Auflösung</one> in der Mikroskopie? Dies ist der <one>minimale Abstand</one> zweier gerade noch unterscheidbarer Punkte.
131
+ - Can <one>FM-dyes</one> pass through <two>biological membranes</two>? No.
132
+ - The DAPI stain binds, within a cell, to ... ? <one>DNA</one>.
133
+ - In microscopy: why are some dyes used in microbiology called <one>basic dyes</one>? Because they are <one>positively charged</one>.
134
+ - <one>Durchmesser eines Haares</one>, in nm? 100.000 nm. (10 hoch 5 nm)
135
+ - Das <one>menschliche Auge</one> nimmt einen Wellenlängenbereich wahr von x nm bis y nm? <one>380 nm - 780 nm</one>.
136
+ - Is the <one>emission profile</one> of a typical fluorophore usually <one>symmetrical</one> or <one>non-symmetrical</one>? It is usually <one>non-symmetrical</one>.
137
+ - Name the four key steps in making a <one>freeze-fracture replica</one>. A: (1) <one>rapid freezing</one> (2) fracturing (3) replication (4) replica cleaning
138
+ - Are short and long pass filters used in <one>Raman spectroscopy</one>? Yes they are.
139
+ - In microscopy: what does the abbreviation <one>STM</one> stand for? <one>Scanning tunneling microscope</one>. URL: https://en.wikipedia.org/wiki/Scanning_tunneling_microscope
140
+ - <one>Apochromatic lenses</one> are typically designed to bring how many different wavelengths into focus in the same plane? Typically <one>three</one>: red, green, and blue.
141
+ - <one>Fluorescein</one> is a common dye that is often employed in <two>fluorescence microscopy</two>. What light does it accept and what light does it emit? (1) It accepts <royalblue>blue (excitation) light</royalblue>. (2) It then <lightgreen>emits green light</lightgreen>. (Thus: blue->green; this even rhymes, aka blue-green-fluorescein!)
142
+ - The STM only works on what kind of surfaces? On <one>conductive sample surfaces</one>.
143
+ - All microscopes are ... what kind of holes? <one>Peepholes</one>.
144
+ - Does every lens have <one>optical aberrations</one>? Yes.
145
+ - Was ist <one>Röntgenmikroskopie</one>? Röntgenmikroskopie ist ein "Mikroskopieverfahren", das statt sichtbarem Licht Röntgenstrahlung nutzt.
146
+ - In a <one>fluorescence microscope</one>: what does the abbreviation <two>PMT</two> stand for? <one>Photomultiplier</one>.
147
+ - Give another name for the term <one>primary fluorescence</one>. A: <one>Autofluorescence</one>.
148
+ - Was heisst <one>skopein</one>? Untersuchen, Ansehen. URL: https://en.wikipedia.org/wiki/Microscope
149
+ - Was meinen wir mit dem <one>Röntgenfarbmikroskop</one>? Dies ist Röntgenstrahlung, die aus mehreren Wellenlängen besteht.
150
+ - A <one>confocal microscope</one> may have <two>AOTFs</two>. These are ... ? <one>Acousto-Optic Tunable Filters</one>.
151
+ - Who invented the <one>phase contrast microscopy</one>? <one>Frits Zernike</one>.
152
+ - In microscopy: what does the abbreviation <one>BSE</one> stand for? <one>Backscattered electron detection</one>.
153
+ - When in particular may a <one>lambda-scan</one> be used by a <two>leica instrument</two>? We may use this when we wish to determine the properties of <one>auto-fluorescence in a given sample</one> at hand, which can then (lateron) be substracted from the scan.
154
+ - In an <one>epifluorescence microscope</one>, which <two>filter</two> is typically right before the dichroic mirror? The <one>excitation filter</steeblue>.
155
+ - Name a <one>microscopy technique</one> that <two>makes use of a laser</two>. A: The <one>confocal microscope</one>.
156
+ - Allgemein formuliert: wie erreichen wir eine <one>Farbtrennung</one> in modernen <two>Fluozeszenzmikroskopen</two>? Mit Hilfe von <one>Filtern</one>.
157
+ - Nenne einen riesigen Vorteil des <one>Phasenkontrastmikroskops</one> gegenüber den <one>Lichtmikroskopen</one>. A: Man muss die Zellen nicht färben - und kann sie daher <one>direkt mikroskopieren</one>.
158
+ - In den 1970er Jahren wurde <one>Immunolabeling</one> eingeführt; man verwendete hierbei meistens "Ferritin". Heute verwendet man eher ... stattdessen was? <one>Kolloidales Gold</one>.
159
+ - For the <one>triangle of frustration</one> in microscope, there is one very important theorem. Which one is it? The <one>Nyquist-Sampling Theorem</one>.
160
+ - Bei der <one>Kryo-EM</one>: wie lange wird die Probe in Lösung gehalten? Einige <one>ms</one>.
161
+ - <one>Light propagation</one> in the form of rays can explain refraction, reflection, and even aberrations, but fails to explain <two>diffraction</two> and ...? A: <one>interference</one>.
162
+ - In general, researchers <one>dye DNA</one> in order to visualize ...? <one>Chromosomes</one>.
163
+ - Anderer Begriff für <one>fluoreszierender Farbstoff</one>? <one>Fluorochrom</one>. URL: https://en.wikipedia.org/wiki/Fluorophore
164
+ - What do we mean with <one>refraction of light</one> in microscopy? When the light direction changes by entry into a transparent medium with a <one>different optical density</one>.
165
+ - There is <one>a limitation of the optical resolution by the wave length of the radiation</one>. What name can we give this? This is <one>the Rayleigh criterium</one>.
166
+ - <one>Visible light</one> goes from n nm to n nm? <one>400 nm - 750 nm</one>.
167
+ - Nenne zwei bedeutende <one>Kenngrössen in der Mikroskopie</one>. A: (1) "Auflösungsvermögen" (2) <one>Vergrösserung</one>
168
+ - What are <one>long pass filters</one>? Long pass filters are filters that "transmit electromagnetic radiation with long wavelengths", while <one>blocking shorter wavelengths</one>.
169
+ - An <one>acousto-optic crystal</one> is defined as having optical properties that are altered in the presence of ... ? <one>an acoustic wave</one>. URL: https://en.wikipedia.org/wiki/Acousto-optic_modulator
170
+ - The <one>Stokes-Shift</one> is associated with what kind of microscopy? With <one>Epifluorescence-microscopy</one>.
171
+ - In der <one>Fluoreszenzmikroskopie</one>, bei den <two>quantum dots</two> - kommt es hierbei zu einem Bleicheffekt? Nein, nicht wirklich.
172
+ - <one>DIC</one> as abbreviation in microscopy stands for ... ? <one>Differential interference contrast</one>.
173
+ - For the <one>fluorophores used in microscopy</one>: one complete cycle from excitation to the return to ground takes in the region of ... how many nanoseconds? From about <one>0.5 to 20 nanoseconds</one>.
174
+ - Wie reversibel ist <one>FRAP</one>, der Effekt des Laserimpulses? Gar nicht reversibel (= aka <one>irreversibel</one>).
175
+ - The <one>numerical aperture</one> of a microscope objective is a measure of its ability to ... ? <one>gather light</one>.
176
+ - Man hat <one>GFP mutiert</one>, in <two>BFP</two>, <two>YFP</two>, <two>EGFP</two> und so weiter. Nenne zwei wichtige Zielsetzungen, was man hierbei verbessern wollte. A: (1) <one>verbesserte Stabilität</one> (2) <one>verbesserte Lichtausbeute</one>
177
+ - What does <one>DAPI</one> stand for? <one>4',6-diamidino-2-phenylindole</one>. URL: https://en.wikipedia.org/wiki/DAPI
178
+ - Was meinen wir mit dem <one>Öffnungsfehler</one> in der Mikroskopie? Dies ist wenn die "Randstrahlen" stärker fokussiert werden als die "achsennahen Strahlen".
179
+ - Die durch <one>die Linsenmitte</one> und <one>die Brennpunkte der Linse</one> verlaufende Achse heißt ... ? <one>Optische Achse</one>.
180
+ - Name the <one>three typical filters</one> in a <two>fluorescence microscope</two>. A: (1) The <one>Excitation Filter</one> (2) The "Emission Filter" (3) The <one>Dichroic Filter</one>
181
+ - What is characteristic for <one>indirect fluorescence</one>? That we use a <one>secondary antibody</one> that is labelled - usually with a "fluorescent molecule".
182
+ - <one>SYTOX Green</one> can be used to <two>colourize which cellular organelle</two>? The <one>nucleus</one>.
183
+ - Name two different <one>imaging aberrations</one>. A: (1) <one>spherical aberration</one> (2) <one>chromatic aberration</one>
184
+ - Give one example for an <one>interference microscope</one>. A: The <one>phase-contrast microscope</one>.
185
+ - Name a <one>fluorescent imaging technique</one>. A: <one>Confocal microscopy</one>.
186
+ - Give an example where <one>Dark field imaging</one> is used, in electron microscopy. A: For example, to study the wall-less bacterium <one>Spiroplasma melliferum</one>.
187
+ - In a <one>TEM</one>: which of its part determines the resolution? The <one>Objective Lens</one>.
188
+ - Die Einheit für die Lichtintensität ist ... ? Das <one>Lumen</one> [lm].
189
+ - On what kind of samples may we wish to employ <one>Polarization Microscopy</one>? When the samples have <one>crystalline components</one>.
190
+ - In einem <one>CLSM</one>: was ist mit dem Begriff <two>Schrotrauschen</two> gemeint? Dies ist <one>wenn die Photonenemission statistisch verteilt vorliegt</one>.
191
+ - The <one>microscopic filter cube</one>, often found in confocal laser scanning microscopes, contains which three elements? (1) <one>exciter filter</one> (2) <one>barrier filter</one> (3) <one>dichroic mirror</one>
192
+ - Was meinen wir mit einem <one>Farbfilter</one> im Imaging? Dies ist ein Filter der <one>nur bestimmte Farben durchlässt</one>.
193
+ - <one>Infrared spectroscopy</one> probes ...? <one>Covalent bonds</one>.
194
+ - Wenn wir <one>DAPI Kernfärbung</one> verwenden möchten: welche Lichtquelle sollten wir verwenden? Eine <one>Quecksilberdampflampe</one> (<royalblue>HBO</royalblue>).
195
+ - In <one>Epi-fluorescence</one>: the <two>detector</two> measures the emitted fluorescence light from ... ? <one>the sample</one>.
196
+ - In <one>fluorescence microscopy</one>: what is <two>EGFP</two>? This is <one>enhanced green fluorescent protein</one>.
197
+ - Nenne drei verschiedene Einsatzgebiete des <one>DAPI-Stain</one>. A: (1) "Kernfärbung" (2) "Zellzyklus-Analyse" (3) <one>Bakterien</one>
198
+ - In der <one>Fluoreszenzmikroskopie</one>: was meinen wir mit einem <two>short-pass</two> filter? Dieser Filter lässt Licht nur <one>unter</one> einer abgegebenen Wellenlänge durch; zum Beispiel ist SP 575 durchlässig <crimson>BIS</crimson> 575 nm.
199
+ - Name <one>an advantage of optical microscopy</one>. A: Light is <one>relatively nondestructive</one>.
200
+ - In a <one>microscopic filter cube</one>: what is typically found between the barrier filter and the exciter filter? A <one>dichroic mirror</one>.
201
+ - In <one>confocal microscopy</one>: how is <two>out of focus light</two> removed? Via the <one>pinhole</one> (=<royalblue>pin diaphragm</royalblue>).
202
+ - <one>Filters</one> employed in Microscopy are usually described in terms of ... rather than frequency. A: <one>Wavelength</one>.
203
+ - What is an <one>inverted microscope</one>? <one>When the objective is below the petri dish</one>.
204
+ - Bei welcher <one>Mikroskopie-Methode</one>, die nichts mit der Elektronenmikroskopie zu tun hat, wird das Bild <two>gerastert und abgelesen</two>? Bei der <one>Konfokalen Laser-Scanning-Mikroskopie</one> (<royalblue>CLSM</royalblue>).
205
+ - What is a <one>dichroic filter</one>? This is a very accurate colour filter used to selectively pass light of a small range of colors while reflecting other colours.
206
+ - What is a <one>goniometer</one>? A goniometer is an instrument that either measures an angle or allows an object to be rotated to a "precise angular position".
207
+ - What does the abbreviation <one>BRET</one> mean, in Microscopy? <one>Bioluminescence Energy Resonance Transfer</one>.
208
+ - <one>Fluorescent dyes can interact with each other</one>. Give another word for this, in general. A: <one>Quenching</one>.
209
+ - <one>Fluoreszierende Chromophore</one> haben chemisch betrachtet fast immer welche Gemeinsamkeit? Aromaten; sowie <one>Doppelbindungen</one>.
210
+ - Wozu wird der Fluoreszenzfarbstoff <one>DAPI</one> häufig eingesetzt? Zur <one>Kernfärbung</one>.
211
+ - Was ist das <one>Herz</one> eines (Licht)Mikroskopes? Das <one>Objektiv</one>.
212
+ - Die <one>Köhlersche Beleuchtung</one> bewirkt eine ... Beleuchtung der Probe. A: Homogene Beleuchtung der Probe.
213
+ - Give another term for the <one>Point Spread Function</one>. A: <one>Point illumination</one>.
214
+ - Give an example for a <one>fluorescence imaging technique</one> that allows imaging of living tissue up to about one millimeter in depth. A: <one>Two-photon excitation microscopy</one>.
215
+ - A. W. für <one>fluorophore</one>? <one>Fluorochrom</one>.
216
+ - <one>Leeuwenhoek</one> first observed bacteria. How did he call them? <one>Animalcules</one>.
217
+ - The final quality of the microscope is determined by ... ? The <one>resolution of the image</one>.
218
+ - <one>GFP</one> emits bright green light when it is stimulated with ...? (1) "blue light" (2) <one>ultraviolet light</one>
219
+ - Name the two <one>common, optical aberrations</one>. A: (1) <one>spherical aberration</one> (2) <one>chromatic aberration</one>
220
+ - Nenne eine <one>Mikroskopiertechnik</one>, die die Zellkernsubstanz für uns zugänglich gemacht hat. A: <royalblue>FRAP</royalblue> (<one>fluorescence recovery after photobleaching</one>).
221
+ - Light direction changes by the entry in another transparent medium with a different ... ? optical density.
222
+ - <one>1923</one> wies der französische Physiker de Broglie nach, dass sich die Wellenlänge eines Teilchens indirekt proportional zu ... verhält. A: Zu dessen <one>Impuls</one> (<royalblue>p</royalblue>).
223
+ - Nenne zwei <one>natürliche Fluoreszenzfarbstoffe</one>. A: (1) <one>Anthocyane</one> (2) <one>Chlorophylle</one>
224
+ - The interaction of light with very small structures below the wave length of visible light results in the formation of a characteristic diffraction pattern. How is this pattern called, in general? <one>Airy disk</one>.
225
+ - Leica is using <one>Lambda Scans</one> in their fluorescence microscopes. What is meant with that term? This is a scan that allows the user to <one>scan a fluorescent sample across a desired range of wavelengths</one>.
226
+ - <one>FLIM</one>, in imaging, stands for ... ? <one>Fluorescence lifetime imaging</one>.
227
+ - Name two substances/targets that show <one>primary fluorescence</one>. A: (1) <one>chitin</one> (2) <one>lignin</one>
228
+ - The dye called <one>Fluorescein</one>> is commonly used in microscopy, in particular which derivative of it? <royalblue>FITC</royalblue> aka <one>fluorescein isothiocyanate</one>. URL: https://en.wikipedia.org/wiki/Fluorescein_isothiocyanate
229
+ - Wie geht die <one>DeBroglie Wellenfunktion</one>? "Lambda (Wellenlänge) = h / p", wobei h die Planck's constant ist und p das Momentum.
230
+ - In <one>Microscopy</one>: how would we define "resolution"? <one>Resolution</one> (<royalblue>d</royalblue>) is the minimum distance between two points, at which they could be distinguished as separate.
231
+ - Was meinen wir mit der <one>Brainbow Technologie</one>? Wenn wir Gruppen von Zellen mit unterschiedlichen Farben markieren. Die Gene für diese Fluoreszenz-Proteine, wie CFP, YFP, RFP, werden unabhängig voneinander in das Zellgenom eingebaut.
232
+ - The wavelengths of <one>accelerated electrons</one> is how many nm? <one>0.004 nm</one>.
233
+ - In <one>Atomic Force Microscopy</one>: how is the very tip itself called? <one>Cantilever</one>.
234
+ - Der <one>mechanische Teil</one> eines Lichtmikroskops besteht aus welchen 2 Komponenten? (1) "Grobtrieb" (2) <one>Feintrieb</one>
235
+ - What technique is abbreviated as <one>FRIL</one>? <one>Freeze replica immunolabelling</one>.
236
+ - Can we say that the term <one>short pass filter</one> may be a misnomer? Well, sort of. A short pass filter may have a cut-on wavelength of 600 nm, so it will not let through light with a wavelength <one>higher</one> than 600 nm; but at the same time, it may still have a lower limit, such as ~390nm. So it operates within the range of 390nm-to-600nm, implying that it is still only operational within a certain area/range - but not below, and neither above, said area/range.
237
+ - Möglichst einfach erklärt: was ist das Prinzip hinter der <one>Fluoreszenz</one>? Bei der Fluoreszenz kommt es zur Emission von Licht, über die Anregung eines Elektrons das beim Übergang von einem höheren (angeregten) Zustand in ein niedrigeres Orbital abgegeben wird.
238
+ - Give another, simpler name for <one>a wavelength selector</one>. A: A <one>slit</one>.
239
+ - <one>LED</one> steht für ... ? <one>Light Emitting Diode</one>.
240
+ - <one>The principle of confocal imaging</one> was patented in the year ... by Marvin Minsky. A: In <one>1957</one>.
241
+ - The <one>stokes shift</one>, important in fluorescence microscopy, lies between ... ? (1) "Excitation" (2) <one>Emission</one>
242
+ - <one>Confocal laser scanning microscopy</one> (CLSM) is an optical imaging technique for increasing optical resolution and contrast of a micrograph. It makes use of a spatial pinhole to block ... what kind of light? <one>Out-of-focus light</one>.
243
+ - Was meinen wir mit einem <one>Bandpass-Filter</one>? Dieser Filter lässt Licht nur innerhalb eines abgegebenen Wellenlängenbereichs durch, wie zum Beispiel "BP 470/40" -> dieser ist durchlässig für Licht der Wellenlänge 450nm-490nm.
244
+ - What means the latin word <one>stigme</one>, translated into english? <one>Mark</one> or <one>Spot</one>.
245
+ - What do <one>shortpass filters</one> reject? They <one>reject longer wavelengths</one>.
246
+ - Define the term <one>microscope</one>. A: A microscope is an instrument that produces an enlarged image of an object.
247
+ - The <one>BODIPY dye</one> has what as its major colour? <one>Green</one>.
248
+ - <one>Conventional optical microscopy</one> is limited in resolution by ... ? The wavelength of visible light.
249
+ - The <one>Feulgen stain</one> is specific for which biomolecule? <one>DNA</one>.
250
+ - Gegeben sei <one>flash light</one> und <one>glow light</one>, in der Biolumineszenz. Nenne einen "qualitativen Unterschied" dieser beiden Lichttypen. A: Glow light ist viel länger stabil; hat dazu jedoch auch eine geringere Intensität.
251
+ - Auflösung eines Lichtmikroskopes? 0,0005mm. Dies sind 0.5 Mikrometer.
252
+ - Define a "microscope". A: A microscope is an instrument that "produces an enlarged image of an object".
253
+ - Each fluorophore, as it may be used in fluorescence microscopy, has a distinct maximum excitation and emission spectra. Is this useful for anything? Yes - this property can be used to distinguish different targets in the same specimen of interest.
254
+ - What is the advantage of using a "confocal microscope"? A: By having a "confocal pinhole", the microscope is really efficient at rejecting "out of focus fluorescent light".
255
+ - The "Stokes' shift" lies between which two peaks? (1) "Excitation" (2) "Emission"
256
+ - Andere Bezeichnung für "geometrische Optik". A: "Strahlenoptik".
257
+ - Was ist das eigentliche Ziel von "FRAP"? Die "Messung der Beweglichkeit von Biomolekülen".
258
+ - Name 4 different basic qualities that we human beings may wish to find in any given microscope. A: (1) contrast (2) speed (3) resolution (4) sensitivity
259
+ - Was ist die "leere Vergrößerung" eines Mikroskops? Ein Bereich in dem "keine weiteren Details mehr erkennbar" sind.
260
+ - <one>What colour</one> does the <two>mCherry dye</two> show? <one>mCherry</one> is <orangered>a red dye</orangered>. URL: https://en.wikipedia.org/wiki/MCherry []
261
+ - Do <one>oil immersion lenses</one> have <two>high numerical apertures</two>? <one>Yes</one>. []
262
+ - Wie können wir die Fluoreszenzfarbstoffe <one>Quantum Dots</one> mit einem deutschen Begriff bezeichnen? <one>Nanokristalle</one>. []
263
+ - How many <one>reactive aldehyde groups</one> does <two>glutaraldehyde</two> have? <one>2</one>. Glutaraldehyde is useful in TEM. []
264
+ - Give another name for <one>fluorescent molecules</one>. A: <one>Fluorophores</one>. URL: https://en.wikipedia.org/wiki/Fluorophore []
265
+ - Bei einer <one>Photodiode</one> <two>in einer CCD Kamera</two>: <three>was passiert wenn Photonen auf diese Diode auftreffen</three>? Dies <one>bewirkt einen Stromfluß</one>. []
266
+ - The <one>anode</one> has <two>what kind of charge</two>? The <one>anode</one> has a <two>positive charge</two>. URL: https://en.wikipedia.org/wiki/Anode []
267
+ - <one>Confocal microscopy</one> can be seen as a <two>bridge</two> between which two other classical methodologies? (1) TEM ("transmission electron microscopy") (2) conventional <one>widefield microscopy</one>
@@ -0,0 +1,94 @@
1
+ # =========================================================================== #
2
+ # === Immunanalytik
3
+ #
4
+ # Und Immunanalytik, including the ELISPOT method.
5
+ # =========================================================================== #
6
+
7
+ - The <one>ELISpot Assay</one> can be used for ... ? <one>Cytokine Secretion</one>.
8
+ - Was meinen wir allgemein mit <one>immunanalytischen Verfahren</one>? Dies sind analytische Verfahren, bei denen <one>Antikörper als Reagentien</one> eingesetzt werden.
9
+ - In an <one>immuno-PCR</one> we have to use two different antibodies: the <two>capture antibody</two> and the "detection antibody". Which of these two is attached to the solid (ground) support? The <one>capture antibody</one>.
10
+ - Give a specific example for a hapten that is routinely measured for clinical purposes. A: <one>Estradiol E2</one>.
11
+ - Was meinen wir mit der <one>Immunpräzipitation</one>? Dies ist "die Ausfällung von Antigen-Antikörper-Komplexen". Der Unterschied zur Agglutination ist das "beide Partner in löslicher Form existieren".
12
+ - What does <one>EliSpot</one> stand for? <one>Enzyme-linked immune absorbent spot</one>. URL: https://en.wikipedia.org/wiki/ELISpot
13
+ - In <one>1985</one> it was demonstrated that a link can be established between phenotype and genotype in filamentous bacteriophage, e. g. through <two>phage display</two>. <three>Which person demonstrated this</three>? <one>George P. Smith</one>.
14
+ - <one>Immunoassays</one> can be divided into which two general formats? (1) <one>homogenous formats</one> (2) <one>heterogeneous formats</one>
15
+ - For <one>lateral flow immunoassays</one> we may employ <two>conjugate pads</two>, which typically use ... which material? They may use a <one>glass fiber</one> material.
16
+ - Angenommen wir haben einen <one>kompetitiven Immunoassay</one>. Ein Symbol hierbei ist <two>AG*</two>. Was bedeutet dies? <one>Markiertes Antigen</one>.
17
+ - Name a variant of the ELISpot assay. A: The <one>FluoroSpot Assay</one>.
18
+ - The limit of detection in an ELISPOT assay is typically n cells in 100000 cells? 1 in 100,000 cells.
19
+ - For the ELISPOT method: which membrane is typically used? <one>Polyvinylidene fluoride</one> (PVDF) membrane plates.
20
+ - The ELISPOT method was developed in which year? In 1983.
21
+ - Give a short definition as to what a <one>lateral flow immunoassay</one> is. A: A lateral flow immunoassay is a simple-to-use "diagnostic device" used to confirm the presence or absence of a target analyte.
22
+ - The most commonly known type of lateral flow rapid test is ... ? The <one>pregnancy test</one>. URL: https://medlineplus.gov/lab-tests/pregnancy-test/
23
+ - Zweidimensionale Immundiffusion nach ... ? <one>Ouchterlony</one>.
24
+ - In der <one>Immunanalytik</one> werden mitunter die beiden Membranproteine "Protein A" (von Staphylococcus aureus) und "Protein G" (von Streptococcus) eingesetzt. Welches der beiden Proteine ist grösser? <one>Protein A</one> - mit einem Molekulargewicht von <two>42 kDa</two>.
25
+ - Modern <one>multiplex immunoassays</one> are typically rapid, taking not more than n minutes? Not more than about <one>10 minutes time</one>.
26
+ - <one>VirScan</one> detektiert/analysiert was im Blut? Die <one>Antikörper</one>.
27
+ - Die <one>zweidimensionale Immundiffusion nach Ouchterlony</one> wurde in welchem Jahr entwickelt? <one>1948</one>. URL: URL: https://en.wikipedia.org/wiki/Ouchterlony_double_immunodiffusion
28
+ - The <one>Immuno-PCR</one> <two>combines which two techniques</two>? (1) <one>PCR</one> (2) <one>ELISA</one>
29
+ - Welches Verhältnis beschreibt der <one>Scatchard-Plot</one>? Das Verhältnis von <one>gebundenem Antikörper</one> zu <one>freiem Antikörper</one>.
30
+ - <one>Welcher Test</one> war <two>der Ausgangstest aller Immunpräzipitationsmethoden</two>? Der <one>Ringtest</one>. URL: https://de.wikipedia.org/wiki/Immundiffusionstest#Einfachdiffusion
31
+ - Is the <one>immuno-PCR</one> more efficient than a simple <two>ELISA</two>? Yes, about 10 ** 9 fold as efficient in its "detection sensitivity", compared to the "ELISA".
32
+ - Nenne <one>zwei Vorteile</one> der <two>lateral flow devices</two>. A: (1) "hohe Selektivität" (2) "geringe Analysenzeit"
33
+ - In der Immunanalytik, bei einer <one>lateral flow device</one>, können wir als Membran "Nitrocellulose" oder "Celluloseacetat" einsetzen. Welche der beiden Membrantypen zeigt eine "höhere Proteinbindung"? <one>Nitrocellulose</one>.
34
+ - Nenne zwei Vorteile des <one>Radioimmunoassays</one> beziehungsweise allgemein zwei Vorteile der "radioaktiven Markierung". A: (1) "niedrige Nachweisgrenzen" (2) <one>hohe Spezifität</one>
35
+ - In a <one>lateral flow assay</one>, what is the role of the <two>conjugate pad</two>? This pad contains antibodies specific to the target analyte, conjugated to coloured particles such as "colloidal gold nanoparticles" or "latex microspheres".
36
+ - A <one>pregnancy test</one> has three zones. Name these zones in the correct order. A: (1) <one>Reaction Zone</one> (2) <one>Test Zone</one> (3) <one>Control Zone</one>
37
+ - Name the seven main steps of an <one>immuno-PCR</one>. A: (1) <one>Immobilization</one> of antibodies specific for the protein target to the surface of a vessel (2) Washing to remove unbound antibody (3) Addition of sample (4) Washing to remove unbound sample (5) Addition of a second specific antibody, coupled to a DNA molecule (6) Washing to remove unbound antibody (7) DNA amplification and detection
38
+ - Für viele Immunoassays, insbesondere bei den <one>lateral flow devices</one>, wird <two>kolloidales Gold</two> eingesetzt. Hergestellt wird diese Form von Gold durch Reduktion von ... ? <one>Tetrachloridogoldsäure</one> (<two>HAuCl4</two>).
39
+ - The <one>ADLib system</one> can detect haptens in a serum. What does ADLib stand for? <one>Autonomously Diversifying Library</one> system.
40
+ - Was meinen wir mit einem <one>qualitativen Immunassay</one>? Dies ist "ein Ja/Nein-Nachweis eines Analyten".
41
+ - Was misst der <one>Guthrie-Test</one>? <one>Phenylketonurie</one>. URL: https://de.wikipedia.org/wiki/Guthrie-Test
42
+ - A <one>multiplex bioanalytic assay</one>, such as a multiplex immunoassay, typically combines which two technical devices? (1) <one>lateral flow</one> (2) <one>microarrays</one>
43
+ - Why is the <one>competitive immunoassay</one> called <two>competitive</two>? Because labelled antigen and free antigen compete for binding to the "immobilised antibody".
44
+ - Why the name <one>sandwich assay</one>? Because the ­antibodies form a sandwich around the analyte - at the least in an "immunometric assay".
45
+ - Was meinen wir in der Immunanalytik mit dem <one>M-Gradienten</one>? Dies ist ein erhöhtes Vorkommen von Bence-Jones Proteinen, wie zum Beispiel der Fall sein mag beim multiplen Myelom. URL: https://www.onkopedia.com/de/onkopedia/guidelines/multiples-myelom/@@view/html/index.html
46
+ - Was meinen wir mit einer <one>indirekten immunanalytischen Methode</one>? Dies ist eine Methode bei der der zweite Antikörper markiert ist.
47
+ - Name the first three steps in a <one>sandwich immunoassay</one>. A: (1) "surface immobilisation of analyte-specific antibody" (2) "blocking step" (3) <one>washing step</one>
48
+ - Nenne <one>zwei diagnostische Verfahren</one>, bei denen Antikörper eingesetzt werden. A: (1) "ELISA" (2) <one>Schwangerschaftstest</one>
49
+ - Nenne die <one>vier Methoden</one>, bei denen äquivalente (stöchiometrische) Mengen miteinander reagieren in der Immunanalytik. A: (1) "Immunagglutination" (2) "Immunpräzipitation" (3) "Immundiffusion" (4) <one>Immunelektrophorese</one>
50
+ - Ist <one>Kolloidales Gold</one>, das auch im Immunoassays Verwendung findet, <two>biokompatibel</two>? Ja.
51
+ - The <one>second antibody</one> that recognizes the primary antibody, often binds to ... which part of that primary antibody? It will typically bind to the <one>constant region of the primary antibody</one> (which may often be an IgG molecule).
52
+ - In der Immunanalytik, was meinen wir mit einem <one>Bindungstest</one>? Dies ist dann der Fall wenn entweder das Antigen oder der Antikörper im Assay "immobilisiert vorliegt".
53
+ - The labeled component of an immunoassay is ­sometimes called ... ? The <one>tracer</one>.
54
+ - Name a major advantage that a <one>homogeneous immunoassay</one> has compared to a "heterogeneous immunoassay". A: The "homogeneous immunoassay" does not need a separateion-step. The tracer will only generate the signal when it binds to the analyte.
55
+ - Bei einem "kompetitiven Immunoassay" ist die Messgröße ... ? Das <one>Antigen</one>.
56
+ - The simplest type of immunoassay to understand is the <one>immunometric design</one>. The signal level in this type of assay is proportional to ... ? The analyte concentration in the sample.
57
+ - Was ist mit dem Begriff <one>Immunanalytische Verfahren</one> gemeint? Immunanalytische Verfahren sind analytische Verfahren, bei denen <one>Antikörper</one> als Reagentien eingesetzt werden.
58
+ - The material that the "capture antibody" is irreversibly bound to is, in general, known as ... ? The <one>solid phase</one>.
59
+ - When was the <one>immuno-PCR</one> developed? In the year <one>1992</one>.
60
+ - Nenne drei allgemeine Substanzgruppen, die wir dank <one>Immunoassays</one> analysieren können. A: (1) <one>Antikörper</one> (2) <one>Antigene</one> (3) <one>Haptene</one>
61
+ - When we wish to develop an "immuno-PCR assay", should we rather adapt from an existing PCR or rather from an existing ELISA? Adapt from an "existing ELISA".
62
+ - "Competitive immunoassays" are commonly used to detect molecules such ... give two examples. A: Small molecules, such as: (1) "drugs" (2) "toxins"
63
+ - Zum Nachweis von Haptenen setzen wir eher kompetitive oder eher nicht-kompetitive Bioassays ein? Eher "kompetitive".
64
+ - Der Analyt liegt bei Immunassays in einer ... Phase vor. A: In einer "flüssigen" Phase, meist gelöst in einem Puffer.
65
+ - Kommt es bei der "Immunpräzipitation" zu einem "Prozoneneffekt"? Ja - im Prinzip schon.
66
+ - In a "direct immunoassay", we will have to use a specific antibody which will produce the signal. How is this antibody usually called? "Detection antibody".
67
+ - Which two antibodies can we find in an "Immuno-PCR"? (1) "Capture antibody" (2) "Detection antibody"
68
+ - Bei der "Immunpräzipitation" muss das Antigen mindestens n Epitope aufweisen? Mindestens drei.
69
+ - For a "sandwich immunoassay" to work, the antigen must have which property? It must be large enough to contain two antigenic sites ("epitopes") where each antibody has sufficient unimpeded access.
70
+ - Was meinen wir mit einer "direkten immunanalytischen Methode"? Dies ist eine Methode bei dem entweder das Antigen beziehungsweise der Antikörper markiert wird.
71
+ - Immunoassays that measure analyte concentrations against a standard or calibration curve are ... ? "Quantitative".
72
+ - In order to estimate the concentration of an analyte from the signal generated, a ... is required. A: A "standard curve".
73
+ - The proportion of tracer that binds to the limited antibody sites is indirectly proportional to the concentration of analyte in the sample. This is known as a ... immunoassay. A: This is a "competitive immunoassay".
74
+ - "Immunometric assays" in general work very well, but which type of molecules do not work that well in such an assay? In general small molcules, since they will not have sufficient surface area to accommodate two molecules of antibody binding to them.
75
+ - Bei einem "kompetitiven Immunoassay", wieso benötigen wir hier eine "Trennmethode"? Die Trennmethode ist notwendig um "gebundenes Antigen" von "freiem Antigen" zu trennen.
76
+ - The immuno-PCR has at the least two major problems. One is the "technical difficulty of linking nucleic acids directly to antibodies". The other is ... ? Substantial backgrounds that can be generated by "nonspecific binding of the nucleic acid-antibody conjugates to solid phases".
77
+ - The immuno-PCR has not replaced the ELISA as the assay format of choice for diagnostic purposes. Why not? The main reason for this is "the difficulty associated with conjugating antibodies to oligonucleotides". This process can both be costly and time-consuming; and requires expert knowledge.
78
+ - Bei der "<ud>Immuno-PCR</ud>" verwenden wir welche zwei Antikörper? (1) "Capture Antibody" (2) "Detection Antibody"
79
+ - The Immuno-PCR typically employs specific capture antibodies that can be found where? Coated on a 96-well PCR plate.
80
+ - Are "strip assays" used to detect mycotoxins? Yes, mycotoxin-detection in the blood.
81
+ - In a "<ud>lateral flow assay</ud>", the last pad is typically called ... ? The "wicking pad".
82
+ - In a "<ud>lateral flow assay</ud>", we may first see the "sample pad", then the "conjugate pad", followed by ... ? The "reaction membrane".
83
+ - In a "<ud>lateral flow assay</ud>", what is the role for the "sample pad"? This is an adsorbent pad onto which the test sample is applied.
84
+ - "Lateral flow immunoassays" are essentially immunoassays adapted to operate along a ... ? a "single axis".
85
+ - The basic technology that underlies lateral flow immunoassays was first described in the 1960s, but the first real commercial application was "Unipath's Clearview home pregnancy test", launched in ... which year? "1988".
86
+ - The key component of an immuno-PCR is ... ? A "DNA-antibody conjugate" that serves as a bridge to link the solid-phase immunoreaction with nucleic acid amplification.
87
+ - Name two pads that we can typically find in a "lateral flow device". A: (1) the "sample" pad, followed by (2) the "conjugate" pad
88
+ - Can the "sandwich immunoassay" measure a molecule of below 805 Da? Yes. "Tacrolimus" has a molecular weight of 804 Da and it can be measured by a sandwich immunoassay, in which two antibodies were able to bind to tacrolimus simultaneously, without overlap of the binding sites.
89
+ - Haptens in immune analytics have typically been measured only by "competitive immunoassays". Why is that so? Because their limited molecular sizes impede the simultaneous binding of two antibodies to a single hapten molecule.
90
+ - Immunanalytischen Methoden können in direkte und indirekte Methoden eingeteilt werden. Was ist der Unterschied? (1) Bei den direkten Methoden ist das Antigen bzw. der Antikörper markiert. (2) Bei den indirekten Methoden hingegen kommt ein weiterer Antikörper zum Einsatz, der markiert ist.
91
+ - Nenne eine allgemeine Einschränkung eines "Immunoassays". A: Es gibt eine Einschränkung durch die "Notwendigkeit, die Tertiärstruktur der Antikörper zu erhalten".
92
+ - Für Antikörper ist auch indirekt die Frage nach der Immunogenität (des Antigens) wichtig. Welche Faktoren machen ein Molekül zu einem Immunogen? (1) Molekulargewicht (2) Komplexität (3) Ähnlichkeit mit körpereigenen Proteinen
93
+ - Es gibt Schwangerschaftstests, die Antikörper zwecks Detektion verwenden. Es kann jedoch auch zu falsch-negativen Ergebnissen kommen. Nenne drei Beispiel hierfür. A: (1) eine zu starke Verdünnung des HCG aufgrund einer "zu großen Harnmenge" (2) die Schwangerschaft ist noch zu jung (3) der Eisprung erfolgt später als angenommen
94
+ - Name a big mechanistic difference between an ELISA and an immuno-PCR. A: The immuno-PCR detects the antigen-antibody complex through a "DNA reporter", whereas the ELISA will use an "enzyme" for the detection step.