studium 0.13.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


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

Files changed (871) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +2785 -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 +7 -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/search_for_n_ects +7 -0
  38. data/bin/show_lectures_on_the_commandline +7 -0
  39. data/bin/show_themes +7 -0
  40. data/bin/solved +9 -0
  41. data/bin/solved_ects +7 -0
  42. data/bin/studienkennzahl +7 -0
  43. data/bin/studium +7 -0
  44. data/bin/studium_skeleton +7 -0
  45. data/bin/ufind +7 -0
  46. data/bin/upcoming_exams +7 -0
  47. data/bin/week_parser +7 -0
  48. data/doc/ECTS_CONSIDERATIONS.md +81 -0
  49. data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +44 -0
  50. data/doc/README.gen +2742 -0
  51. data/doc/SQL_database_specification.md +46 -0
  52. data/doc/deprecated_components.md +24 -0
  53. data/doc/documentation_for_the_file_lecture_information.md +311 -0
  54. data/doc/elegant_colours.md +21 -0
  55. data/doc/todo/TODO_FOR_STUDIUM_GEM.md +112 -0
  56. data/doc/todo/TODO_FOR_THE_GRAPHICAL_PARTS_OF_THE_STUDIUM_GEM_INCLUDING_WWW_RELATED_ASPECTS.md +35 -0
  57. data/img/STUDIES.png +0 -0
  58. data/lib/studium/autoinclude.rb +7 -0
  59. data/lib/studium/base/base.rb +2710 -0
  60. data/lib/studium/base/prototype.rb +543 -0
  61. data/lib/studium/c/README.md +2 -0
  62. data/lib/studium/c/a.out +0 -0
  63. data/lib/studium/c/obtain_random_entry.c +11 -0
  64. data/lib/studium/check_and_sanitize/README.md +11 -0
  65. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +141 -0
  66. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +110 -0
  67. data/lib/studium/check_and_sanitize/check_for_correct_themes_of_each_course.rb +90 -0
  68. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +189 -0
  69. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +163 -0
  70. data/lib/studium/check_and_sanitize/find_duplicate_lectures.rb +115 -0
  71. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  72. data/lib/studium/check_and_sanitize/sanitize_this_string_containing_the_lva_dates.rb +79 -0
  73. data/lib/studium/colours/colours.rb +549 -0
  74. data/lib/studium/colours/sfancy.rb +46 -0
  75. data/lib/studium/colours/sfile.rb +35 -0
  76. data/lib/studium/colours/simp.rb +40 -0
  77. data/lib/studium/colours/use_colours.rb +39 -0
  78. data/lib/studium/colours/use_this_colour_for_exam_questions_and_exam_answers.rb +80 -0
  79. data/lib/studium/commandline/commandline.rb +932 -0
  80. data/lib/studium/commandline/menu.rb +903 -0
  81. data/lib/studium/constants/colours.rb +14 -0
  82. data/lib/studium/constants/constants.rb +2142 -0
  83. data/lib/studium/constants/image_constants.rb +217 -0
  84. data/lib/studium/constants/web_constants.rb +25 -0
  85. data/lib/studium/css/project.css +267 -0
  86. data/lib/studium/curricula/curriculum.rb +210 -0
  87. data/lib/studium/curricula/curriculum_as_string.rb +280 -0
  88. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +33 -0
  89. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  90. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  91. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  92. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +74 -0
  93. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  94. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  95. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  96. data/lib/studium/curricula/determine_curricula/constants.rb +11 -0
  97. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  98. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  99. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  100. data/lib/studium/curricula/determine_curricula/menu.rb +151 -0
  101. data/lib/studium/curricula/determine_curricula/misc.rb +403 -0
  102. data/lib/studium/curricula/determine_curricula/report.rb +143 -0
  103. data/lib/studium/curricula/determine_curricula/reset.rb +59 -0
  104. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  105. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  106. data/lib/studium/curricula/display_bachelor_curricula.rb +90 -0
  107. data/lib/studium/curricula/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.rb +324 -0
  108. data/lib/studium/curricula/modules/display_on_the_commandline.rb +319 -0
  109. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +75 -0
  110. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +75 -0
  111. data/lib/studium/curricula/prepare_individual_curriculum.rb +304 -0
  112. data/lib/studium/curricula/random_curriculum_creator/random_curriculum_creator.rb +163 -0
  113. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  114. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/constants.rb +11 -0
  115. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/initialize.rb +27 -0
  116. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/menu.rb +35 -0
  117. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/misc.rb +264 -0
  118. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/report.rb +163 -0
  119. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/reset.rb +64 -0
  120. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +38 -0
  121. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  122. data/lib/studium/ects/boku_ects_splitter.rb +128 -0
  123. data/lib/studium/ects/ects_per_university.rb +179 -0
  124. data/lib/studium/ects/ects_scanner.rb +141 -0
  125. data/lib/studium/ects/ects_to_university_parser.rb +142 -0
  126. data/lib/studium/ects/last_entry_is_curriculum.rb +150 -0
  127. data/lib/studium/ects/n_ects_in_these_lectures.rb +196 -0
  128. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +50 -0
  129. data/lib/studium/ects/return_n_ects_from_this_file.rb +59 -0
  130. data/lib/studium/ects/return_n_ects_from_this_url.rb +196 -0
  131. data/lib/studium/ects/search_for_n_ects.rb +614 -0
  132. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +191 -0
  133. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +276 -0
  134. data/lib/studium/ects/simple_total_ects_points.rb +135 -0
  135. data/lib/studium/ects/solved_ects/constants.rb +19 -0
  136. data/lib/studium/ects/solved_ects/reset.rb +51 -0
  137. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  138. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  139. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +106 -0
  140. data/lib/studium/ects/still_missing.rb +129 -0
  141. data/lib/studium/ects/sum_of_ects.rb +144 -0
  142. data/lib/studium/encoding/encoding.rb +108 -0
  143. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +86 -0
  144. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  145. data/lib/studium/exam_topics/advanced_biochemistry +781 -0
  146. data/lib/studium/exam_topics/advanced_biotechnology +214 -0
  147. data/lib/studium/exam_topics/advanced_cellbiology +27 -0
  148. data/lib/studium/exam_topics/advanced_chemistry +504 -0
  149. data/lib/studium/exam_topics/advanced_microbiology +43 -0
  150. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +85 -0
  151. data/lib/studium/exam_topics/advanced_virology +218 -0
  152. data/lib/studium/exam_topics/ageing +114 -0
  153. data/lib/studium/exam_topics/agrar_ecology +63 -0
  154. data/lib/studium/exam_topics/agrarmarkt +71 -0
  155. data/lib/studium/exam_topics/agrarphysik +35 -0
  156. data/lib/studium/exam_topics/alcohols +29 -0
  157. data/lib/studium/exam_topics/algorithms +52 -0
  158. data/lib/studium/exam_topics/allergie +75 -0
  159. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  160. data/lib/studium/exam_topics/allgemeine_mikrobiologie +946 -0
  161. data/lib/studium/exam_topics/aminoacids +438 -0
  162. data/lib/studium/exam_topics/analytische_chemie_1 +132 -0
  163. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  164. data/lib/studium/exam_topics/anatomie +290 -0
  165. data/lib/studium/exam_topics/anorganische_chemie +311 -0
  166. data/lib/studium/exam_topics/anthropologie +116 -0
  167. data/lib/studium/exam_topics/antibodies_and_antigens +764 -0
  168. data/lib/studium/exam_topics/apoptosis +35 -0
  169. data/lib/studium/exam_topics/archaea +60 -0
  170. data/lib/studium/exam_topics/architecture +8 -0
  171. data/lib/studium/exam_topics/artificial_intelligence +81 -0
  172. data/lib/studium/exam_topics/atomemissionsspektrometrie +6 -0
  173. data/lib/studium/exam_topics/audio +11 -0
  174. data/lib/studium/exam_topics/bacteriophages +240 -0
  175. data/lib/studium/exam_topics/basic_biochemistry +1002 -0
  176. data/lib/studium/exam_topics/basic_biotechnology +1001 -0
  177. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  178. data/lib/studium/exam_topics/basic_virology +1008 -0
  179. data/lib/studium/exam_topics/bauwesen +6 -0
  180. data/lib/studium/exam_topics/betriebssysteme +126 -0
  181. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  182. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +382 -0
  183. data/lib/studium/exam_topics/biochips +78 -0
  184. data/lib/studium/exam_topics/bioelektrochemie +57 -0
  185. data/lib/studium/exam_topics/biofilms +22 -0
  186. data/lib/studium/exam_topics/bioinformatics +503 -0
  187. data/lib/studium/exam_topics/biological_therapeutics +153 -0
  188. data/lib/studium/exam_topics/biologie +137 -0
  189. data/lib/studium/exam_topics/biomarkers +106 -0
  190. data/lib/studium/exam_topics/biomaterials +89 -0
  191. data/lib/studium/exam_topics/biomembranes +6 -0
  192. data/lib/studium/exam_topics/bionik +65 -0
  193. data/lib/studium/exam_topics/biophysik +34 -0
  194. data/lib/studium/exam_topics/biopolymers +10 -0
  195. data/lib/studium/exam_topics/bioprozesstechnik +149 -0
  196. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  197. data/lib/studium/exam_topics/bodenkunde +373 -0
  198. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  199. data/lib/studium/exam_topics/cancerbiology +442 -0
  200. data/lib/studium/exam_topics/cell_cultures +155 -0
  201. data/lib/studium/exam_topics/cellbiology +995 -0
  202. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  203. data/lib/studium/exam_topics/cellulose +6 -0
  204. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +209 -0
  205. data/lib/studium/exam_topics/chemische_technologie_organischer_stoffe +25 -0
  206. data/lib/studium/exam_topics/chemisches_labor +60 -0
  207. data/lib/studium/exam_topics/chemotaxis_and_motility_in_prokaryotes +87 -0
  208. data/lib/studium/exam_topics/citric_acid_cycle +80 -0
  209. data/lib/studium/exam_topics/clinical_microbiology +492 -0
  210. data/lib/studium/exam_topics/computer_graphics +5 -0
  211. data/lib/studium/exam_topics/computer_science +280 -0
  212. data/lib/studium/exam_topics/crispr +28 -0
  213. data/lib/studium/exam_topics/cyanobacteria +42 -0
  214. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +551 -0
  215. data/lib/studium/exam_topics/cytokines +5 -0
  216. data/lib/studium/exam_topics/databases_and_sql +106 -0
  217. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +35 -0
  218. data/lib/studium/exam_topics/dna_replication +56 -0
  219. data/lib/studium/exam_topics/ecogenetics +26 -0
  220. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  221. data/lib/studium/exam_topics/ecology +314 -0
  222. data/lib/studium/exam_topics/economy +211 -0
  223. data/lib/studium/exam_topics/elektronenmikroskopie +354 -0
  224. data/lib/studium/exam_topics/elektrophorese +89 -0
  225. data/lib/studium/exam_topics/elektrotechnik_und_elektrizit/303/244t +41 -0
  226. data/lib/studium/exam_topics/elisa +54 -0
  227. data/lib/studium/exam_topics/embryologie_und_entwicklung +547 -0
  228. data/lib/studium/exam_topics/endospores_and_spores +104 -0
  229. data/lib/studium/exam_topics/enzymes_and_cofactors +345 -0
  230. data/lib/studium/exam_topics/epigenetik +179 -0
  231. data/lib/studium/exam_topics/ethik +138 -0
  232. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +328 -0
  233. data/lib/studium/exam_topics/excel +7 -0
  234. data/lib/studium/exam_topics/fish +19 -0
  235. data/lib/studium/exam_topics/fluorescence_microscopy +7 -0
  236. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +71 -0
  237. data/lib/studium/exam_topics/forensik +11 -0
  238. data/lib/studium/exam_topics/forstwirtschaft +53 -0
  239. data/lib/studium/exam_topics/fortgeschrittene_genetik +511 -0
  240. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +211 -0
  241. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  242. data/lib/studium/exam_topics/fungi +79 -0
  243. data/lib/studium/exam_topics/genetische_krankheiten +176 -0
  244. data/lib/studium/exam_topics/genexpression +1008 -0
  245. data/lib/studium/exam_topics/genomics_and_metagenomics +244 -0
  246. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +901 -0
  247. data/lib/studium/exam_topics/geochemistry +67 -0
  248. data/lib/studium/exam_topics/geography +8 -0
  249. data/lib/studium/exam_topics/geologie_und_mineralogie +621 -0
  250. data/lib/studium/exam_topics/geometrie +47 -0
  251. data/lib/studium/exam_topics/geschichte +93 -0
  252. data/lib/studium/exam_topics/gluconeogenesis +59 -0
  253. data/lib/studium/exam_topics/glycogen +25 -0
  254. data/lib/studium/exam_topics/glycolysis +109 -0
  255. data/lib/studium/exam_topics/glykomik +100 -0
  256. data/lib/studium/exam_topics/glyoxylatzyklus +31 -0
  257. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  258. data/lib/studium/exam_topics/hormone +134 -0
  259. data/lib/studium/exam_topics/html +7 -0
  260. data/lib/studium/exam_topics/human_ecology +8 -0
  261. data/lib/studium/exam_topics/hygiene +191 -0
  262. data/lib/studium/exam_topics/imaging_and_microscopy +241 -0
  263. data/lib/studium/exam_topics/immunanalytik +94 -0
  264. data/lib/studium/exam_topics/immunologie +982 -0
  265. data/lib/studium/exam_topics/informatik +97 -0
  266. data/lib/studium/exam_topics/innate_immunity +22 -0
  267. data/lib/studium/exam_topics/insekten +57 -0
  268. data/lib/studium/exam_topics/insulin_and_diabetes +57 -0
  269. data/lib/studium/exam_topics/java +502 -0
  270. data/lib/studium/exam_topics/javascript +12 -0
  271. data/lib/studium/exam_topics/klima +6 -0
  272. data/lib/studium/exam_topics/kryptographie +5 -0
  273. data/lib/studium/exam_topics/landtechnik +26 -0
  274. data/lib/studium/exam_topics/lebensmittel +208 -0
  275. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  276. data/lib/studium/exam_topics/linux +5 -0
  277. data/lib/studium/exam_topics/lipids +94 -0
  278. data/lib/studium/exam_topics/macroeconomics +40 -0
  279. data/lib/studium/exam_topics/mathematics +254 -0
  280. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +250 -0
  281. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +398 -0
  282. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  283. data/lib/studium/exam_topics/metabolismus +406 -0
  284. data/lib/studium/exam_topics/microbial_ecology +35 -0
  285. data/lib/studium/exam_topics/microcontrollers +11 -0
  286. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +33 -0
  287. data/lib/studium/exam_topics/mikrobielle_physiologie +172 -0
  288. data/lib/studium/exam_topics/mitochondria +32 -0
  289. data/lib/studium/exam_topics/mixed +278 -0
  290. data/lib/studium/exam_topics/molecular_biology_of_plants +242 -0
  291. data/lib/studium/exam_topics/molekulare_medizin +131 -0
  292. data/lib/studium/exam_topics/nanotechnologie +453 -0
  293. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +166 -0
  294. data/lib/studium/exam_topics/naturstoffe +9 -0
  295. data/lib/studium/exam_topics/netzwerke +32 -0
  296. data/lib/studium/exam_topics/neurobiology +267 -0
  297. data/lib/studium/exam_topics/nucleotide_sequencing +32 -0
  298. data/lib/studium/exam_topics/nutztierethologie +11 -0
  299. data/lib/studium/exam_topics/object_oriented_modeling +14 -0
  300. data/lib/studium/exam_topics/obstbau +234 -0
  301. data/lib/studium/exam_topics/organische_chemie +1007 -0
  302. data/lib/studium/exam_topics/organische_chemie_2 +118 -0
  303. data/lib/studium/exam_topics/paleobiology +35 -0
  304. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +335 -0
  305. data/lib/studium/exam_topics/patent_law +55 -0
  306. data/lib/studium/exam_topics/pathologie +717 -0
  307. data/lib/studium/exam_topics/pcr +144 -0
  308. data/lib/studium/exam_topics/pentosephosphatweg +41 -0
  309. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +54 -0
  310. data/lib/studium/exam_topics/pflanzenanatomie +255 -0
  311. data/lib/studium/exam_topics/pflanzenbau +24 -0
  312. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  313. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  314. data/lib/studium/exam_topics/pharmaceutical_biotechnology +250 -0
  315. data/lib/studium/exam_topics/physik +433 -1
  316. data/lib/studium/exam_topics/physikalische_chemie +86 -0
  317. data/lib/studium/exam_topics/physiology_and_histology +506 -0
  318. data/lib/studium/exam_topics/phytochemie +33 -0
  319. data/lib/studium/exam_topics/plant_biotechnology +128 -0
  320. data/lib/studium/exam_topics/plant_breeding +64 -0
  321. data/lib/studium/exam_topics/plant_development +50 -0
  322. data/lib/studium/exam_topics/populationsgenetik +136 -0
  323. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +191 -0
  324. data/lib/studium/exam_topics/projektmanagement +219 -0
  325. data/lib/studium/exam_topics/prokaryote_genetics +531 -0
  326. data/lib/studium/exam_topics/protein_engineering +8 -0
  327. data/lib/studium/exam_topics/proteolyse +33 -0
  328. data/lib/studium/exam_topics/proteomik +40 -0
  329. data/lib/studium/exam_topics/prozesstechnik +95 -0
  330. data/lib/studium/exam_topics/psychologie +13 -0
  331. data/lib/studium/exam_topics/python +353 -0
  332. data/lib/studium/exam_topics/quality_management +256 -0
  333. data/lib/studium/exam_topics/rechtsgrundlagen +115 -0
  334. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  335. data/lib/studium/exam_topics/rna_and_dna +395 -0
  336. data/lib/studium/exam_topics/rna_seq +11 -0
  337. data/lib/studium/exam_topics/ruby +146 -0
  338. data/lib/studium/exam_topics/ruby_on_rails +63 -0
  339. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  340. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  341. data/lib/studium/exam_topics/sexualbiologie +62 -0
  342. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +167 -0
  343. data/lib/studium/exam_topics/splicing_exons_and_introns +63 -0
  344. data/lib/studium/exam_topics/statistik +233 -0
  345. data/lib/studium/exam_topics/stemcells +158 -0
  346. data/lib/studium/exam_topics/stickstofffixierung +75 -0
  347. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  348. data/lib/studium/exam_topics/strukturbiologie +380 -0
  349. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +101 -0
  350. data/lib/studium/exam_topics/systematische_zoologie +433 -0
  351. data/lib/studium/exam_topics/technical_ecology +144 -0
  352. data/lib/studium/exam_topics/technische_chemie +202 -0
  353. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +26 -0
  354. data/lib/studium/exam_topics/technische_mikrobiologie +393 -0
  355. data/lib/studium/exam_topics/technisches_zeichnen +5 -0
  356. data/lib/studium/exam_topics/the_bacterial_cell_wall +97 -0
  357. data/lib/studium/exam_topics/the_c_plus_plus_programming_language +489 -0
  358. data/lib/studium/exam_topics/the_c_programming_language +129 -0
  359. data/lib/studium/exam_topics/the_cellcycle +81 -0
  360. data/lib/studium/exam_topics/the_european_union +119 -0
  361. data/lib/studium/exam_topics/the_interferon_system +38 -0
  362. data/lib/studium/exam_topics/the_microbiome +163 -0
  363. data/lib/studium/exam_topics/the_universe +12 -0
  364. data/lib/studium/exam_topics/theoretische_chemie +5 -0
  365. data/lib/studium/exam_topics/theoretische_informatik +157 -0
  366. data/lib/studium/exam_topics/tierzucht +94 -0
  367. data/lib/studium/exam_topics/toxikologie +408 -0
  368. data/lib/studium/exam_topics/transcription +82 -0
  369. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +142 -0
  370. data/lib/studium/exam_topics/umweltbiotechnologie +63 -0
  371. data/lib/studium/exam_topics/umweltchemie +233 -0
  372. data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
  373. data/lib/studium/exam_topics/urea_cycle +55 -0
  374. data/lib/studium/exam_topics/vaccines_and_vaccination +242 -0
  375. data/lib/studium/exam_topics/vectors_and_gene_therapy +240 -0
  376. data/lib/studium/exam_topics/verfahrenstechnik +32 -0
  377. data/lib/studium/exam_topics/veterinary_medicine +10 -0
  378. data/lib/studium/exam_topics/vitamine +24 -0
  379. data/lib/studium/exam_topics/wasserkunde +137 -0
  380. data/lib/studium/exam_topics/weinbau +59 -0
  381. data/lib/studium/exam_topics/wissenschaft +18 -0
  382. data/lib/studium/exam_topics/yeast +102 -0
  383. data/lib/studium/exam_topics/zoologie +330 -0
  384. data/lib/studium/exams/afterburn/afterburn.rb +257 -0
  385. data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +150 -0
  386. data/lib/studium/exams/ask_exam_topic_question.rb +112 -0
  387. data/lib/studium/exams/ask_question_from_alias.rb +141 -0
  388. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +131 -0
  389. data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
  390. data/lib/studium/exams/ask_question_from_last_topic.rb +91 -0
  391. data/lib/studium/exams/ask_random_question.rb +195 -0
  392. data/lib/studium/exams/autoinclude.rb +7 -0
  393. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +217 -0
  394. data/lib/studium/exams/cycle.rb +291 -0
  395. data/lib/studium/exams/dataset.rb +123 -0
  396. data/lib/studium/exams/designate_ten_random_exam_topics/designate_ten_random_exam_topics.rb +88 -0
  397. data/lib/studium/exams/exam/exam.rb +130 -0
  398. data/lib/studium/exams/exam_question/README.md +3 -0
  399. data/lib/studium/exams/exam_question/answer.rb +177 -0
  400. data/lib/studium/exams/exam_question/constants.rb +111 -0
  401. data/lib/studium/exams/exam_question/exam_question.rb +1135 -0
  402. data/lib/studium/exams/exam_question/menu.rb +333 -0
  403. data/lib/studium/exams/exam_question/misc.rb +895 -0
  404. data/lib/studium/exams/exam_question/question.rb +91 -0
  405. data/lib/studium/exams/exam_question/reset.rb +96 -0
  406. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  407. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +242 -0
  408. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  409. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  410. data/lib/studium/exams/exam_registration_at/report_and_show.rb +133 -0
  411. data/lib/studium/exams/exam_registration_at/reset.rb +54 -0
  412. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +119 -0
  413. data/lib/studium/exams/exam_topics.rb +194 -0
  414. data/lib/studium/exams/exams.rb +20 -0
  415. data/lib/studium/exams/exams_per_month/exams_per_month.rb +2438 -0
  416. data/lib/studium/exams/exams_this_week.rb +182 -0
  417. data/lib/studium/exams/fix_exam_dates.rb +121 -0
  418. data/lib/studium/exams/frozen.rb +36 -0
  419. data/lib/studium/exams/last_exams/last_exams.rb +398 -0
  420. data/lib/studium/exams/lectures_without_exam_entry.rb +137 -0
  421. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1956 -0
  422. 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
  423. data/lib/studium/exams/n_exams_in_these_topics.rb +404 -0
  424. data/lib/studium/exams/next_exam.rb +107 -0
  425. data/lib/studium/exams/next_exams.rb +378 -0
  426. data/lib/studium/exams/open_exam_associated_url.rb +154 -0
  427. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +15 -0
  428. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  429. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +109 -0
  430. data/lib/studium/exams/pr/303/274fung.rb +289 -0
  431. data/lib/studium/exams/push_solved_questions_on_top.rb +180 -0
  432. data/lib/studium/exams/questions_solved_from_day_to_day/questions_solved_from_day_to_day.rb +377 -0
  433. data/lib/studium/exams/remote_ftp_url.rb +52 -0
  434. data/lib/studium/exams/repeat_last_question.rb +78 -0
  435. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +252 -0
  436. data/lib/studium/exams/show_backlog_of_exams.rb +117 -0
  437. data/lib/studium/exams/show_next_exams_for.rb +133 -0
  438. data/lib/studium/exams/show_themes/constants.rb +28 -0
  439. data/lib/studium/exams/show_themes/menu.rb +61 -0
  440. data/lib/studium/exams/show_themes/misc.rb +537 -0
  441. data/lib/studium/exams/show_themes/reset.rb +62 -0
  442. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  443. data/lib/studium/exams/show_upcoming_exams/consider_autogenerating_exam_aliases.rb +181 -0
  444. data/lib/studium/exams/show_upcoming_exams/constants.rb +82 -0
  445. data/lib/studium/exams/show_upcoming_exams/help.rb +33 -0
  446. data/lib/studium/exams/show_upcoming_exams/initialize.rb +77 -0
  447. data/lib/studium/exams/show_upcoming_exams/menu.rb +60 -0
  448. data/lib/studium/exams/show_upcoming_exams/report.rb +200 -0
  449. data/lib/studium/exams/show_upcoming_exams/reset.rb +45 -0
  450. data/lib/studium/exams/show_upcoming_exams/run.rb +20 -0
  451. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +544 -0
  452. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +114 -0
  453. data/lib/studium/exams/solved/constants.rb +32 -0
  454. data/lib/studium/exams/solved/help.rb +24 -0
  455. data/lib/studium/exams/solved/initialize.rb +55 -0
  456. data/lib/studium/exams/solved/menu.rb +41 -0
  457. data/lib/studium/exams/solved/reset.rb +28 -0
  458. data/lib/studium/exams/solved/solved.rb +313 -0
  459. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +162 -0
  460. data/lib/studium/exams/upcoming_exams/constants.rb +15 -0
  461. data/lib/studium/exams/upcoming_exams/help.rb +41 -0
  462. data/lib/studium/exams/upcoming_exams/initialize.rb +27 -0
  463. data/lib/studium/exams/upcoming_exams/menu.rb +79 -0
  464. data/lib/studium/exams/upcoming_exams/misc.rb +415 -0
  465. data/lib/studium/exams/upcoming_exams/reset.rb +34 -0
  466. data/lib/studium/exams/upcoming_exams/run.rb +26 -0
  467. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +32 -0
  468. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  469. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  470. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  471. data/lib/studium/exams/upcoming_exams_dataset.rb +247 -0
  472. data/lib/studium/exams/upload_exam_topics.rb +360 -0
  473. data/lib/studium/graphviz/README.md +4 -0
  474. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  475. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  476. data/lib/studium/gui/gtk3/README.md +1 -0
  477. data/lib/studium/gui/gtk3/ask_exam_question/ask_exam_question.config +6 -0
  478. data/lib/studium/gui/gtk3/ask_exam_question/ask_exam_question.rb +760 -0
  479. data/lib/studium/gui/gtk3/ask_exam_question/manifest.yml +12 -0
  480. data/lib/studium/gui/gtk3/control_panel/control_panel.rb +39 -0
  481. data/lib/studium/gui/gtk3/curriculum_viewer/curriculum_viewer.rb +510 -0
  482. data/lib/studium/gui/gtk3/ects_per_university/ects_per_university.rb +217 -0
  483. data/lib/studium/gui/gtk3/exam_question_widget/exam_question_widget.rb +1887 -0
  484. data/lib/studium/gui/gtk3/expand_time_range/expand_time_range.rb +34 -0
  485. data/lib/studium/gui/gtk3/information_about_a_lecture/information_about_a_lecture.rb +34 -0
  486. data/lib/studium/gui/gtk3/lecture_information/lecture_information.rb +200 -0
  487. data/lib/studium/gui/gtk3/show_upcoming_exams/show_upcoming_exams.rb +34 -0
  488. data/lib/studium/gui/java/exam_question/ExamQuestion$1.class +0 -0
  489. data/lib/studium/gui/java/exam_question/ExamQuestion.class +0 -0
  490. data/lib/studium/gui/java/exam_question/ExamQuestion.java +215 -0
  491. data/lib/studium/gui/javafx/exam_question_widget/exam_question_widget.rb +58 -0
  492. data/lib/studium/gui/jruby/exam_question_widget/exam_question_widget.rb +317 -0
  493. data/lib/studium/gui/libui/ask_exam_question/ask_exam_question.rb +349 -0
  494. data/lib/studium/gui/shared_code/control_panel/control_panel_module.rb +314 -0
  495. data/lib/studium/gui/shared_code/exam_question_widget/exam_question_widget_module.rb +39 -0
  496. data/lib/studium/gui/shared_code/expand_time_range/expand_time_range.css +0 -0
  497. data/lib/studium/gui/shared_code/expand_time_range/expand_time_range_module.rb +190 -0
  498. data/lib/studium/gui/shared_code/information_about_a_lecture/information_about_a_lecture_module.rb +180 -0
  499. data/lib/studium/gui/shared_code/show_upcoming_exams/show_upcoming_exams_module.rb +206 -0
  500. data/lib/studium/images/libui_ask_exam_question.png +0 -0
  501. data/lib/studium/images/small_logos/DNA.png +0 -0
  502. data/lib/studium/images/small_logos/README.md +2 -0
  503. data/lib/studium/images/studies_favicon.png +0 -0
  504. data/lib/studium/java/Mkdir.java +15 -0
  505. data/lib/studium/java/README.md +2 -0
  506. data/lib/studium/java/ask_exam_question/AskExamQuestion.java +477 -0
  507. data/lib/studium/java/solved/Solved.class +0 -0
  508. data/lib/studium/java/solved/Solved.java +110 -0
  509. data/lib/studium/java/utility_scripts/OpenLastExamQuestionurlLinkViaTheBrowser.class +0 -0
  510. data/lib/studium/java/utility_scripts/OpenLastExamQuestionurlLinkViaTheBrowser.java +80 -0
  511. data/lib/studium/logging/README.md +2 -0
  512. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +47 -0
  513. data/lib/studium/logging/html_log_directory.rb +41 -0
  514. data/lib/studium/logging/log_directory.rb +112 -0
  515. data/lib/studium/logging/store_last_question_asked_into_file.rb +137 -0
  516. data/lib/studium/parsers/README.md +2 -0
  517. data/lib/studium/parsers/custom_exam_results_parser.rb +206 -0
  518. data/lib/studium/parsers/parse_lva_dates.rb +190 -0
  519. data/lib/studium/parsers/parse_remote_lecture.rb +325 -0
  520. data/lib/studium/project/project.rb +76 -0
  521. data/lib/studium/requires/common_popular_requires.rb +37 -0
  522. data/lib/studium/requires/commonly_used_requires.rb +14 -0
  523. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  524. data/lib/studium/requires/require_ects_scripts.rb +27 -0
  525. data/lib/studium/requires/require_encoding.rb +7 -0
  526. data/lib/studium/requires/require_the_check_and_sanitize_files.rb +31 -0
  527. data/lib/studium/requires/require_the_curricula_files.rb +28 -0
  528. data/lib/studium/requires/require_the_exam_question_class.rb +7 -0
  529. data/lib/studium/requires/require_the_exams_files.rb +45 -0
  530. data/lib/studium/requires/require_the_logging_files.rb +23 -0
  531. data/lib/studium/requires/require_the_parsers.rb +28 -0
  532. data/lib/studium/requires/require_the_studium_constants.rb +10 -0
  533. data/lib/studium/requires/require_the_studium_project.rb +54 -0
  534. data/lib/studium/requires/require_the_toplevel_methods.rb +27 -0
  535. data/lib/studium/requires/require_the_utility_scripts.rb +49 -0
  536. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  537. data/lib/studium/requires/require_yaml.rb +7 -0
  538. data/lib/studium/requires/return_remote_homepage_of_this_lecture.rb +7 -0
  539. data/lib/studium/requires/with_GUI.rb +13 -0
  540. data/lib/studium/requires/www_mode.rb +17 -0
  541. data/lib/studium/statistics/README.md +4 -0
  542. data/lib/studium/statistics/best_exam_months.rb +92 -0
  543. data/lib/studium/statistics/curriculum_comparer.rb +336 -0
  544. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +142 -0
  545. data/lib/studium/statistics/exam_topics_that_are_about_to_be_completed.rb +119 -0
  546. data/lib/studium/statistics/max_stats.rb +170 -0
  547. data/lib/studium/statistics/new_questions_per_year.rb +147 -0
  548. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +167 -0
  549. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +473 -0
  550. data/lib/studium/statistics/show_exam_statistics.rb +60 -0
  551. data/lib/studium/statistics/show_which_courses_are_in_a_bachelor_or_master_curriculum_respectively.rb +104 -0
  552. data/lib/studium/statistics/top_stats.rb +127 -0
  553. data/lib/studium/toplevel_methods/all_passed_exams.rb +37 -0
  554. data/lib/studium/toplevel_methods/already_solved_this_lecture.rb +100 -0
  555. data/lib/studium/toplevel_methods/available_topics.rb +156 -0
  556. data/lib/studium/toplevel_methods/average_grade.rb +141 -0
  557. data/lib/studium/toplevel_methods/calculate_pr/303/274fungsimmanente_lectures_from_this_file.rb +55 -0
  558. data/lib/studium/toplevel_methods/copy_the_last_backup_of_file_lecture_information.rb +34 -0
  559. data/lib/studium/toplevel_methods/curriculum_related_code.rb +999 -0
  560. data/lib/studium/toplevel_methods/determine_local_directory_of_this_lecture.rb +72 -0
  561. data/lib/studium/toplevel_methods/does_this_course_require_mandatory_presence.rb +51 -0
  562. data/lib/studium/toplevel_methods/download.rb +163 -0
  563. data/lib/studium/toplevel_methods/e.rb +16 -0
  564. data/lib/studium/toplevel_methods/ects_from_lectures.rb +250 -0
  565. data/lib/studium/toplevel_methods/editor.rb +65 -0
  566. data/lib/studium/toplevel_methods/esystem.rb +22 -0
  567. data/lib/studium/toplevel_methods/filter_away_invalid_questions.rb +77 -0
  568. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +3442 -0
  569. data/lib/studium/toplevel_methods/handle_archive_of_the_exam_questions.rb +136 -0
  570. data/lib/studium/toplevel_methods/has_this_lecture_been_already_passed_but_the_id_was_changed_lateron.rb +42 -0
  571. data/lib/studium/toplevel_methods/has_this_module_been_completed.rb +206 -0
  572. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +32 -0
  573. data/lib/studium/toplevel_methods/is_on_roebe.rb +26 -0
  574. data/lib/studium/toplevel_methods/is_this_exam_topic_included.rb +46 -0
  575. data/lib/studium/toplevel_methods/is_this_homepage_registered.rb +31 -0
  576. data/lib/studium/toplevel_methods/is_this_lecture_a_practical_course.rb +100 -0
  577. data/lib/studium/toplevel_methods/is_this_lecture_registered_in_upcoming_exams.rb +42 -0
  578. data/lib/studium/toplevel_methods/java.rb +32 -0
  579. data/lib/studium/toplevel_methods/lecture_information.rb +106 -0
  580. data/lib/studium/toplevel_methods/lva_numbers.rb +355 -0
  581. data/lib/studium/toplevel_methods/main_dataset.rb +73 -0
  582. data/lib/studium/toplevel_methods/methods_related_to_directories.rb +225 -0
  583. data/lib/studium/toplevel_methods/methods_related_to_files.rb +205 -0
  584. data/lib/studium/toplevel_methods/misc.rb +169 -0
  585. data/lib/studium/toplevel_methods/n_questions_available.rb +137 -0
  586. data/lib/studium/toplevel_methods/n_topics_available.rb +63 -0
  587. data/lib/studium/toplevel_methods/names_of_all_solved_exams.rb +71 -0
  588. data/lib/studium/toplevel_methods/note_down_the_start_time_and_how_many_exams_have_been_already_solved.rb +69 -0
  589. data/lib/studium/toplevel_methods/opnn.rb +25 -0
  590. data/lib/studium/toplevel_methods/passed_this_exam_on.rb +105 -0
  591. data/lib/studium/toplevel_methods/pristine.rb +69 -0
  592. data/lib/studium/toplevel_methods/read_delay_between_questions_from_file.rb +34 -0
  593. data/lib/studium/toplevel_methods/regexes.rb +90 -0
  594. data/lib/studium/toplevel_methods/registered_for_this_exam.rb +62 -0
  595. data/lib/studium/toplevel_methods/remove_comments.rb +26 -0
  596. data/lib/studium/toplevel_methods/remove_exam_topics_that_were_already_answered.rb +27 -0
  597. data/lib/studium/toplevel_methods/remove_tags.rb +32 -0
  598. data/lib/studium/toplevel_methods/report.rb +419 -0
  599. data/lib/studium/toplevel_methods/return_all_exams_on_this_day.rb +66 -0
  600. data/lib/studium/toplevel_methods/return_dataset_for_this_exam_topic.rb +41 -0
  601. data/lib/studium/toplevel_methods/return_div_timetable_of_upcoming_exams.rb +498 -0
  602. data/lib/studium/toplevel_methods/return_ects_from_this_lecture_stored_in_the_file_lecture_information.rb +194 -0
  603. data/lib/studium/toplevel_methods/return_hash_of_already_solved_lectures.rb +46 -0
  604. data/lib/studium/toplevel_methods/return_last_exam_question.rb +34 -0
  605. data/lib/studium/toplevel_methods/return_local_path_of_this_pwdstud.rb +60 -0
  606. data/lib/studium/toplevel_methods/return_lva_number_of_this_lecture.rb +72 -0
  607. data/lib/studium/toplevel_methods/return_n_percent_solved_from_this_topic.rb +90 -0
  608. data/lib/studium/toplevel_methods/return_n_questions_were_answered_for_this_topic.rb +60 -0
  609. data/lib/studium/toplevel_methods/return_proper_university_image.rb +86 -0
  610. data/lib/studium/toplevel_methods/return_question_answer_string_from_this_topic.rb +63 -0
  611. data/lib/studium/toplevel_methods/return_remote_homepage_of_this_lecture.rb +9400 -0
  612. data/lib/studium/toplevel_methods/return_remote_moodle_link_of_this_lecture.rb +1661 -0
  613. data/lib/studium/toplevel_methods/return_sanitized_dataset_from_the_file_lecture_information.rb +110 -0
  614. data/lib/studium/toplevel_methods/return_theme_of_the_next_upcoming_exam.rb +38 -0
  615. data/lib/studium/toplevel_methods/rinstall2.rb +34 -0
  616. data/lib/studium/toplevel_methods/rti_conflict.rb +35 -0
  617. data/lib/studium/toplevel_methods/runmode.rb +87 -0
  618. data/lib/studium/toplevel_methods/sanitized_dataset_from_file_passed_exams_per_month.rb +52 -0
  619. data/lib/studium/toplevel_methods/set_last_file_for_exam_questions.rb +64 -0
  620. data/lib/studium/toplevel_methods/set_this_cd_alias_to.rb +86 -0
  621. data/lib/studium/toplevel_methods/show_passed_exams_having_this_grade.rb +34 -0
  622. data/lib/studium/toplevel_methods/spacer.rb +18 -0
  623. data/lib/studium/toplevel_methods/time.rb +239 -0
  624. data/lib/studium/toplevel_methods/total_ects_points_passed.rb +72 -0
  625. data/lib/studium/toplevel_methods/try_to_guess_the_most_likely_lva_id.rb +57 -0
  626. data/lib/studium/toplevel_methods/try_to_return_the_expanded_name_of_this_lecture.rb +63 -0
  627. data/lib/studium/toplevel_methods/unfinished.rb +51 -0
  628. data/lib/studium/toplevel_methods/url.rb +100 -0
  629. data/lib/studium/toplevel_methods/verbose_truth.rb +36 -0
  630. data/lib/studium/toplevel_methods/when_was_this_lecture_passed.rb +54 -0
  631. data/lib/studium/toplevel_methods/word_wrap.rb +56 -0
  632. data/lib/studium/toplevel_methods/write_into_file_related_functionality.rb +189 -0
  633. data/lib/studium/toplevel_methods/yes_or_no_ja_oder_nein.rb +33 -0
  634. data/lib/studium/universities_in_austria/README.md +2 -0
  635. data/lib/studium/universities_in_austria/boku/README.md +4 -0
  636. data/lib/studium/universities_in_austria/boku/boku_/303/266ffnungszeiten.rb +28 -0
  637. data/lib/studium/universities_in_austria/boku/show_three_pillars_of_these_lectures.rb +110 -0
  638. data/lib/studium/universities_in_austria/boku/three_pillars.rb +237 -0
  639. data/lib/studium/universities_in_austria/tu_vienna/README.md +6 -0
  640. data/lib/studium/universities_in_austria/tu_vienna/tu_ferien.rb +42 -0
  641. data/lib/studium/universities_in_austria/tu_vienna/tu_/303/266ffnungszeiten.rb +34 -0
  642. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +384 -0
  643. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +238 -0
  644. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +375 -0
  645. data/lib/studium/utility_scripts/audio_stats.rb +171 -0
  646. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +252 -0
  647. data/lib/studium/utility_scripts/auto_stud/constants.rb +18 -0
  648. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  649. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  650. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +93 -0
  651. data/lib/studium/utility_scripts/average_grade_of_this_curriculum.rb +101 -0
  652. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  653. data/lib/studium/utility_scripts/calendar/calendar.rb +251 -0
  654. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  655. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +221 -0
  656. data/lib/studium/utility_scripts/create_database/create_database.rb +106 -0
  657. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  658. data/lib/studium/utility_scripts/currently_participating_in_these_lectures/currently_participating_in_these_lectures.rb +104 -0
  659. data/lib/studium/utility_scripts/display_lecture_url.rb +160 -0
  660. data/lib/studium/utility_scripts/expand_time_range/expand_time_range.rb +414 -0
  661. data/lib/studium/utility_scripts/finished_exams_at_this_university.rb +94 -0
  662. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +23 -0
  663. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +149 -0
  664. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +31 -0
  665. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  666. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +158 -0
  667. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  668. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +50 -0
  669. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  670. data/lib/studium/utility_scripts/generate_spreadsheet/generate_spreadsheet.rb +354 -0
  671. data/lib/studium/utility_scripts/generate_spreadsheet/misc.rb +144 -0
  672. data/lib/studium/utility_scripts/holidays/holidays.rb +150 -0
  673. data/lib/studium/utility_scripts/homepage_of_these_courses.rb +118 -0
  674. data/lib/studium/utility_scripts/lecture_downloader.rb +107 -0
  675. data/lib/studium/utility_scripts/lectures_attributed_to_universities.rb +336 -0
  676. data/lib/studium/utility_scripts/lva_dates_of_the_important_courses.rb +111 -0
  677. data/lib/studium/utility_scripts/lva_nummer.rb +431 -0
  678. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month/mandatory_lectures_in_this_month.rb +316 -0
  679. data/lib/studium/utility_scripts/name_of_this_lva_id.rb +110 -0
  680. data/lib/studium/utility_scripts/new_stud.rb +324 -0
  681. data/lib/studium/utility_scripts/next_week.rb +103 -0
  682. data/lib/studium/utility_scripts/open_last_exam_question_url_link_via_the_browser.rb +76 -0
  683. data/lib/studium/utility_scripts/passed_ects_per_year/passed_ects_per_year.rb +177 -0
  684. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  685. data/lib/studium/utility_scripts/pdf/README.md +2 -0
  686. data/lib/studium/utility_scripts/pdf/create_pdf_file_for_this_exam_topic.rb +355 -0
  687. data/lib/studium/utility_scripts/pdf/hexapdf_support.rb +50 -0
  688. data/lib/studium/utility_scripts/preparatory_meetings/preparatory_meetings.rb +312 -0
  689. data/lib/studium/utility_scripts/priority.rb +164 -0
  690. data/lib/studium/utility_scripts/priority_points/priority_points.rb +263 -0
  691. data/lib/studium/utility_scripts/publish_my_exams.rb +174 -0
  692. data/lib/studium/utility_scripts/regexes/README.md +1 -0
  693. data/lib/studium/utility_scripts/regexes/generate_regex.rb +300 -0
  694. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +55 -0
  695. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  696. data/lib/studium/utility_scripts/report_outdated_timetable_entries/report_outdated_timetable_entries.rb +142 -0
  697. data/lib/studium/utility_scripts/report_total_amount_of_questions_and_answers_for.rb +116 -0
  698. data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +128 -0
  699. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +254 -0
  700. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +265 -0
  701. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +138 -0
  702. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +144 -0
  703. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +374 -0
  704. data/lib/studium/utility_scripts/semesterplaner.rb +289 -0
  705. data/lib/studium/utility_scripts/set_aliases_based_on_this_file.rb +95 -0
  706. data/lib/studium/utility_scripts/show_all_passed_master_lectures.rb +119 -0
  707. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +1238 -0
  708. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +23 -0
  709. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +63 -0
  710. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +33 -0
  711. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +50 -0
  712. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  713. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +147 -0
  714. data/lib/studium/utility_scripts/show_lectures/constants.rb +11 -0
  715. data/lib/studium/utility_scripts/show_lectures/help.rb +34 -0
  716. data/lib/studium/utility_scripts/show_lectures/initialize.rb +23 -0
  717. data/lib/studium/utility_scripts/show_lectures/menu.rb +127 -0
  718. data/lib/studium/utility_scripts/show_lectures/misc.rb +584 -0
  719. data/lib/studium/utility_scripts/show_lectures/reset.rb +89 -0
  720. data/lib/studium/utility_scripts/show_lectures/run.rb +27 -0
  721. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +48 -0
  722. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language/show_lectures_fitting_to_this_language.rb +121 -0
  723. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme/show_lectures_fitting_to_this_theme.rb +105 -0
  724. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/constants.rb +17 -0
  725. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/determine.rb +673 -0
  726. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/help.rb +44 -0
  727. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/html.rb +605 -0
  728. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/initialize.rb +56 -0
  729. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/konsole.rb +32 -0
  730. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/menu.rb +472 -0
  731. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/misc.rb +837 -0
  732. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/reset.rb +121 -0
  733. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/run.rb +44 -0
  734. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/show.rb +106 -0
  735. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +261 -0
  736. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/sorted_individual_curricula.rb +121 -0
  737. data/lib/studium/utility_scripts/show_lectures_on_this_day.rb +149 -0
  738. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture.rb +169 -0
  739. data/lib/studium/utility_scripts/show_mixed_bachelor_master_courses/show_mixed_bachelor_master_courses.rb +91 -0
  740. data/lib/studium/utility_scripts/show_outdated_lva_dates/show_outdated_lva_dates.rb +210 -0
  741. data/lib/studium/utility_scripts/show_solved_english_lectures/show_solved_english_lectures.rb +139 -0
  742. data/lib/studium/utility_scripts/steop/README.md +4 -0
  743. data/lib/studium/utility_scripts/steop/show_all_steop_lectures.rb +93 -0
  744. data/lib/studium/utility_scripts/steop/steop_lectures_in_this_curriculum.rb +284 -0
  745. data/lib/studium/utility_scripts/steop/steop_lva_dates.rb +119 -0
  746. data/lib/studium/utility_scripts/studienkennzahl.rb +116 -0
  747. data/lib/studium/utility_scripts/studium_skeleton/studium_skeleton.rb +227 -0
  748. data/lib/studium/utility_scripts/stundenplan.rb +595 -0
  749. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +217 -0
  750. data/lib/studium/utility_scripts/ufind/ufind.rb +98 -0
  751. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +26 -0
  752. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  753. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +181 -0
  754. data/lib/studium/utility_scripts/week_parser/constants.rb +23 -0
  755. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  756. data/lib/studium/utility_scripts/week_parser/menu.rb +59 -0
  757. data/lib/studium/utility_scripts/week_parser/misc.rb +373 -0
  758. data/lib/studium/utility_scripts/week_parser/reset.rb +65 -0
  759. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  760. data/lib/studium/utility_scripts/week_parser/show.rb +236 -0
  761. data/lib/studium/utility_scripts/week_parser/week_parser.rb +49 -0
  762. data/lib/studium/utility_scripts/weekday_parser.rb +155 -0
  763. data/lib/studium/utility_scripts/weekly_schedule.rb +198 -0
  764. data/lib/studium/utility_scripts/wochenplanung.rb +261 -0
  765. data/lib/studium/version/version.rb +46 -0
  766. data/lib/studium/www/curricula_displayer.cgi +197 -0
  767. data/lib/studium/www/curriculum_displayer.rb +162 -0
  768. data/lib/studium/www/exams.cgi +53 -0
  769. data/lib/studium/www/fast_ask_exam_question.cgi +155 -0
  770. data/lib/studium/www/sinatra/app.rb +231 -0
  771. data/lib/studium/www/sinatra/misc.rb +115 -0
  772. data/lib/studium/www/statistics/statistics.cgi +59 -0
  773. data/lib/studium/yaml/ad_hoc_trainer/README.md +2 -0
  774. data/lib/studium/yaml/ad_hoc_trainer/exam_topics.md +15 -0
  775. data/lib/studium/yaml/allowed_themes_for_exams.yml +344 -0
  776. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information.yml +70 -0
  777. data/lib/studium/yaml/available_exam_topics/available_exam_topics.yml +234 -0
  778. data/lib/studium/yaml/backlog_of_exams.yml +37 -0
  779. data/lib/studium/yaml/colours/custom_colours.yml +28 -0
  780. data/lib/studium/yaml/colours/use_colours.yml +1 -0
  781. data/lib/studium/yaml/current_exams.yml +19 -0
  782. data/lib/studium/yaml/curricula/README.md +9 -0
  783. data/lib/studium/yaml/curricula/bachelor/bachelor_agrarwissenschaften_033255.yml +142 -0
  784. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_basisblock_033630.yml +65 -0
  785. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_botanik_033630.yml +84 -0
  786. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_ecology_033630.yml +74 -0
  787. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +120 -0
  788. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_molekulare_biologie_033630.yml +104 -0
  789. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_zoologie_033630.yml +87 -0
  790. data/lib/studium/yaml/curricula/bachelor/bachelor_chemie_033662.yml +165 -0
  791. data/lib/studium/yaml/curricula/bachelor/bachelor_dummy_curriculum.yml +183 -0
  792. data/lib/studium/yaml/curricula/bachelor/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  793. data/lib/studium/yaml/curricula/bachelor/bachelor_forstwirtschaft_033225.yml +115 -0
  794. data/lib/studium/yaml/curricula/bachelor/bachelor_informatik_033521.yml +130 -0
  795. data/lib/studium/yaml/curricula/bachelor/bachelor_ktww_033231.yml +84 -0
  796. data/lib/studium/yaml/curricula/bachelor/bachelor_lmbt_033217.yml +118 -0
  797. data/lib/studium/yaml/curricula/bachelor/bachelor_medizinische_informatik_033533.yml +203 -0
  798. data/lib/studium/yaml/curricula/bachelor/bachelor_molekularbiologie_033665.yml +95 -0
  799. data/lib/studium/yaml/curricula/bachelor/bachelor_nutrition_science_033638.yml +119 -0
  800. data/lib/studium/yaml/curricula/bachelor/bachelor_pharmazie_033305.yml +170 -0
  801. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_chemie_033290.yml +129 -0
  802. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_informatik_033535.yml +23 -0
  803. data/lib/studium/yaml/curricula/bachelor/bachelor_ubrm_033227.yml +136 -0
  804. data/lib/studium/yaml/curricula/bachelor/bachelor_verfahrenstechnik_033273.yml +167 -0
  805. data/lib/studium/yaml/curricula/bachelor/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  806. data/lib/studium/yaml/curricula/individual/bachelor_informatik_und_molekulare_biologie.yml +1161 -0
  807. data/lib/studium/yaml/curricula/individual/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  808. data/lib/studium/yaml/curricula/individual/master_bioinformatics_and_nanobiotechnology_in_molecular_medicine.yml +306 -0
  809. data/lib/studium/yaml/curricula/individual/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  810. data/lib/studium/yaml/curricula/master/master_bioinformatik_066875.yml +76 -0
  811. data/lib/studium/yaml/curricula/master/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  812. data/lib/studium/yaml/curricula/master/master_biologische_chemie_066863.yml +61 -0
  813. data/lib/studium/yaml/curricula/master/master_dummy_curriculum.yml +197 -0
  814. data/lib/studium/yaml/curricula/master/master_genetik_und_entwicklungsbiologie_066877.yml +89 -0
  815. data/lib/studium/yaml/curricula/master/master_lmbt_066418.yml +111 -0
  816. data/lib/studium/yaml/curricula/master/master_molekulare_biologie_066834.yml +142 -0
  817. data/lib/studium/yaml/curricula/master/master_pharmazie_066605.yml +170 -0
  818. data/lib/studium/yaml/curricula/master/master_technische_chemie_066490.yml +123 -0
  819. data/lib/studium/yaml/curricula/outdated/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  820. data/lib/studium/yaml/curricula/outdated/master_food_science_and_plant_biotechnology.yml +31 -0
  821. data/lib/studium/yaml/curricula.yml +538 -0
  822. data/lib/studium/yaml/daily_questions_solved.yml +1468 -0
  823. data/lib/studium/yaml/default_delay.yml +4 -0
  824. data/lib/studium/yaml/default_encoding.yml +1 -0
  825. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  826. data/lib/studium/yaml/editor.yml +1 -0
  827. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  828. data/lib/studium/yaml/german/README.md +2 -0
  829. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  830. data/lib/studium/yaml/grouped_themes.yml +192 -0
  831. data/lib/studium/yaml/holidays.yml +194 -0
  832. data/lib/studium/yaml/important_exams.yml +226 -0
  833. data/lib/studium/yaml/inscription_dates_of_universities.yml +60 -0
  834. data/lib/studium/yaml/lecture_aliases.yml +138 -0
  835. data/lib/studium/yaml/lecture_information/lecture_information.yml +55870 -0
  836. data/lib/studium/yaml/log_dir.yml +1 -0
  837. data/lib/studium/yaml/main_topic.yml +11 -0
  838. data/lib/studium/yaml/max_stats.yml +241 -0
  839. data/lib/studium/yaml/meta_themes/README.md +13 -0
  840. data/lib/studium/yaml/meta_themes/biochemistry.md +6 -0
  841. data/lib/studium/yaml/meta_themes/bioinformatics.md +6 -0
  842. data/lib/studium/yaml/meta_themes/biotechnology.md +9 -0
  843. data/lib/studium/yaml/meta_themes/chemistry.md +9 -0
  844. data/lib/studium/yaml/meta_themes/genetics.md +10 -0
  845. data/lib/studium/yaml/meta_themes/immunology.md +5 -0
  846. data/lib/studium/yaml/meta_themes/metabolic_pathways.md +12 -0
  847. data/lib/studium/yaml/meta_themes/molecular_biology.md +9 -0
  848. data/lib/studium/yaml/meta_themes/protein_engineering.md +10 -0
  849. data/lib/studium/yaml/meta_themes/statistics.md +2 -0
  850. data/lib/studium/yaml/mitbelegung/README.md +4 -0
  851. data/lib/studium/yaml/mitbelegung/mitbelegung.yml +23 -0
  852. data/lib/studium/yaml/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.yml +363 -0
  853. data/lib/studium/yaml/n_total_questions.yml +1 -0
  854. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  855. data/lib/studium/yaml/show_topic.yml +1 -0
  856. data/lib/studium/yaml/statistics/max_stats.yml +239 -0
  857. data/lib/studium/yaml/statistics/statistics.yml +69 -0
  858. data/lib/studium/yaml/week/01_monday.yml +5 -0
  859. data/lib/studium/yaml/week/02_tuesday.yml +75 -0
  860. data/lib/studium/yaml/week/03_wednesday.yml +62 -0
  861. data/lib/studium/yaml/week/04_thursday.yml +14 -0
  862. data/lib/studium/yaml/week/05_friday.yml +31 -0
  863. data/lib/studium/yaml/week/06_saturday.yml +16 -0
  864. data/lib/studium/yaml/week/07_sunday.yml +0 -0
  865. data/lib/studium/yaml/week/README.md +13 -0
  866. data/lib/studium.rb +5 -0
  867. data/studium.gemspec +80 -0
  868. data/test/testing_studium.rb +244 -0
  869. data/test/testing_studium_base_class.rb +17 -0
  870. data/test/testing_time_component.rb +29 -0
  871. metadata +1078 -0
@@ -0,0 +1,453 @@
1
+ # =========================================================================== #
2
+ # === Nanotechnologie
3
+ #
4
+ # Nanotech tag. Nano tag. Includes both Nanotech and Nanobiotech.
5
+ # Bionanotech. And nano-interfaces and Biomaterials as well.
6
+ # Inkludiert zudem Nanomedizin (nanomedicine).
7
+ # =========================================================================== #
8
+
9
+ - The <one>fullerene</one> should actually be more aptly called ... ? <one>Buckminsterfullerene</one>. URL: https://en.wikipedia.org/wiki/Buckminsterfullerene []
10
+ - Is a <three>biomaterial</three> of <one>biological origin</one>? <one>Not necessarily</one>. []
11
+ - Give an example for an <one>oral delivery system</one> that is also used in <two>nanomedicine</two>. A: A <one>hydrogel</one>. URL: https://en.wikipedia.org/wiki/Hydrogel []
12
+ - <one>Zinc oxide nanoparticles</one>, also called <two>ZnONPs</two>, are <three>especially prevalent in which product</three>? In <one>sunscreens</one>.
13
+ - Name <one>two materials</one> that have a <two>low surface energy</two>. A: (1) <one>polyethylene</one> (2) <one>polypropylene</one>
14
+ - Compare the colour of <one>bulk gold</one> with <one>nano gold</one>. A: (1) <one>bulk gold colour</one>: <two>yellow</two> (2) <one>nano gold colour</one>: <two>red</two> []
15
+ - What is the <one>biointerface</one>? The <one>biointerface</one> is <two>the diffuse region within which the biological molecules meet the interactions of the material surface</two>.
16
+ - In <one>nanomedicine</one>: if we require to put a drug into the human body, we could either inject the fluid directly into the blood stream by a syringe, or we could use ... ? An <one>implanted device</one> - which can inject either single volume or be refilled. []
17
+ - <one>Capsosomes</one> were initially designed as ... carriers? <one>Enzyme carriers</one>. URL: https://pubs.acs.org/doi/10.1021/la900213a []
18
+ - A <one>PLL-g-PEG</one> brush can almost completely suppress protein adsorption even from highly concentrated serum. <two>How thick does it have to be, in order to achieve this goal, at minimum</two>? Only <one>10 nm</one>. []
19
+ - <one>Self-Assembly</one> is the science of ... ? of <one>things that put themselves together</one>.
20
+ - How do we call <one>the energy that acts against the energy required to separate a material into two parts</one>? <one>Cohesion</one>.
21
+ - What happens in general when nanoparticles aggregate? They will no longer be <one>'nanoparticles'</one>. Also, their surface reactivity decreases.
22
+ - <one>PLGA</one> ist <two>ein Co-Polymer</two> <three>bestehend aus welchen zwei Komponenten</three>? (1) <one>Milchsäure</one> (2) <one>Glykolsäure</one>
23
+ - Are <one>carbon nanotubes</one> <two>stronger than steel</two>? <one>Yes</one>. []
24
+ - How did <one>Feynman</one> once call <two>nanites</two>? As <one>swallowing the doctor</one>. []
25
+ - <one>Shrinking a device</one> has <two>which direct implication</two>, in nanotechnology? <one>Less material</one> will be required <two>in order to build it</two>.
26
+ - <one>Quantum dots</one> could be used where, from a practical point of view? In <one>biosensors</one>. URL: https://en.wikipedia.org/wiki/Quantum_dot []
27
+ - Give a useful definition of what self-assembly is. A: <one>Self-assembly</one> is <two>a process in which small objects autonomously associate with each other to form larger complexes</two>.
28
+ - <one>Microcantilevers</one> with integrated sharp nanotips are used for ... ? (1) <one>STMs</one>: <two>scanning tunneling microscope</two> (2) <one>AFMs</one>: <two>atomic force microscopy</two> []
29
+ - <one>The smaller a particle</one>, the ... its surface-to-volume ratio. A: <one>higher</one>. []
30
+ - Are there any <one>spiderman examples</one> in nanotechnology? Yes - <one>the gecko foot</one>, for instance. []
31
+ - Are <one>quantum dots</one> able to <three>pass the blood-brain barrier</three>? Yes. []
32
+ - <one>Nanocomposites</one> have <two>which useful mechanical property</two> in general? They show an <one>extremely high mechanical strength</one>.
33
+ - <one>Scaling laws</one> are a means of estimating phenomena at ... ? <one>small scales</one>. []
34
+ - Give another name, a single word, for <one>linear molecular motors</one>. A: <one>Walkers</one>. []
35
+ - <one>Light</one> behaves like both a ... and a ... ? A <one>particle</one> and a <one>wave</one>.
36
+ - The <one>administered dose for nanomedicine</one> and related drugs, has to be continuously within ... ? The <one>therapeutic window</one>. URL: https://en.wikipedia.org/wiki/Therapeutic_index []
37
+ - How can <one>the hydrophobicity of a surface</one> be <two>measured</two>? By its <one>contact angle</one>: <two>the higher the contact angle, the higher the hydrophobicity of a surface</two>.
38
+ - If nanotechnology can be said to have a <one>history</one>, then it probably starts with which person? <one>Richard Feynman</one>. URL: https://en.wikipedia.org/wiki/Richard_Feynman []
39
+ - The <one>lycurgus cup</one> is <two>an example of plasmon light scattering by gold and silver colloids</two>. <three>What is the average diameter of these particles</three>? About <one>70 nm</one>. []
40
+ - In <two>1959</two>, <one>Richard Feynman</one> gave a famous talk. <three>What was the title of his talk</three>? <one>There is plenty of room at the bottom</one>. URL: https://en.wikipedia.org/wiki/There%27s_Plenty_of_Room_at_the_Bottom []
41
+ - How do we typically call <one>a biosensor</one> that can <three>diagnose the need for a drug autonomously</three> and then release the appropriate amount of drug? This is a <one>theranostic device</one>. []
42
+ - The <one>densest form of carbon</one>, that is the most efficient packing of atoms into the smallest area possible, is done by ... what material? By <one>carbon</one>, via <two>diamond</two>.
43
+ - Name <one>two organisms</one> that have an <two>anti-reflective coating in their eyes</two>. A: (1) <one>fly</one> (2) <one>moth</one> []
44
+ - In <one>nanomedicine</one> we may identify <two>cellular barriers</two>. Name three such barriers, with a short explanation why it constitutes a barrier. A: (1) <one>cellular uptake</one>: <two>passive diffusion happens only up to about 1kDa in size</two> (2) <one>cytoplasm</one>: <two>degradation may occur here</two> (3) <one>endocytosis</one>: the whole <two>intracellular vesicle system</two> is a barrier
45
+ - Are <one>carbon nanotubes</one> chemically inert? Yes. []
46
+ - How can we make a <peru>liposome</peru> <one>soneth-up</one>, aka become <two>invisible</two> to the human body? Via <one>PEGylation</one>. []
47
+ - In <one>1989</one>, Don Eigler and Erhard Schweizer at IBM's "Almaden Research Center", manipulated individual xenon atoms to spell out the <two>IBM logo</two>. <three>How many xenon atoms</three> did they use? <one>35</one>. []
48
+ - There are old examples of <one>nanostructured materials</one>. The people did not understand the properties of the material but could use in particular <three>which phenomenon</three> to shape these early nanostructured materials? These craftsmen were making use of <one>high heat</one> to <two>produce new materials with novel properties</two>. []
49
+ - How do we call <one>the difference</one> between the advancing and receding contact angle? <one>Contact angle hysteresis</one>. URL: https://www.biolinscientific.com/blog/what-is-contact-angle-hysteresis []
50
+ - The word <one>spintronics</one> originates from ... ? A: <one>Spin transport electronics</one>. URL: https://en.wikipedia.org/wiki/Spintronics
51
+ - In nanomedicine we may make use of <one>SNALPs</one>. What does this abbreviation stand for? <royalblue>SNALP</royalblue>: <two>stable nucleic acid lipid particle</two> (<one>a liposome</one>). []
52
+ - Why is the name <one>theranostics</one> a slight misnomer? Because the <one>diagnostic should come before the therapeutic</one>; but it would sound weird, which is why the name Theranostics was chosen instead. []
53
+ - Name <three>a functional difference</three> between <one>physisorbed multiple anchors</one> and <one>chemisorbed single anchors</one>. A: <one>Physisorbed anchors</one> tend to <two>be weaker</two> in general than <one>chemisorbed single anchors</one>. []
54
+ - In Nanotechnology: what is meant with the abbreviation <one>LNP</one>? <one>Lipid Nano Particle</one>. URL: https://en.wikipedia.org/wiki/Solid_lipid_nanoparticle []
55
+ - Name a model that can be used to <one>model protein adsorption kinetics</one>. A: The <one>Langmuir model</one>. URL: https://en.wikipedia.org/wiki/Langmuir_adsorption_model []
56
+ - The <one>buckminsterfullerene</one> can be compared (and resembles) to which object in reallife? To a <one>soccer ball</one>. URL: https://en.wikipedia.org/wiki/Buckminsterfullerene []
57
+ - <one>Research to assess the toxicological effects of inhaled or ingested nanomaterials</one> is typically done how? By using <one>test animals</one>.
58
+ - Give an example of a fairly <one>well known, non-fouling material</one>. A: <one>Teflon</one>. URL: https://en.wikipedia.org/wiki/Polytetrafluoroethylene []
59
+ - <one>Nano science</one> may also be called ... science. A: <one>Surface science</one>. []
60
+ - <one>Nano</one> is when the ... begins to dominate. A: <one>surface</one>. []
61
+ - Name an example of something in the nano-area that is <one>super-hydrophobic</one>. A: The <one>lotus leaf</one>. URL: https://en.wikipedia.org/wiki/Lotus_effect []
62
+ - <one>Hydrogels</one> are not only <three>highly hydrophilic</three>, but also <two>h</two>... polymers? <one>Hygroscopic polymers</one>. []
63
+ - Are <one>electromagnetic waves</one> like <two>mechanical waves</two>? No they are not. []
64
+ - Name a <one>surface modifier</one> that can be used for an <three>artificial nanovesicle</three>. A: <one>Antibodies</one>. []
65
+ - Give an example for an <one>antireflective coating</one> from nature. A: The <one>moth's eye</one>, which <two>can serve as an inspiration for new photonic structures</two>. []
66
+ - <one>Nano-devices</one> may <two>prefer</two>, in general, <two>what type of membrane</two>? <one>Nanoporous membranes</one>.
67
+ - Name a <one>non-viral gene delivery</one> method that begins with the letter <two>m</two>. A: <one>Magnetofection</one>. URL: https://en.wikipedia.org/wiki/Magnetofection []
68
+ - Do <one>fluorinated polymer surfaces</one> <two>resist protein adsorption</two>? No they don't. []
69
+ - What is the colour of <one>nano-gold</one>? The colour of nano-gold <one>depends on size</one>; colloidal suspensions of gold range from <two>4nm</two> (<crimson>'red'</crimson>) to <two>80nm</two> (<steelblue>'blue'</steelblue>).
70
+ - Nenne ein (therapeutisches) <one>Oligonukleotid</one>, das bereits zugelassen oder in der klinischen Prüfung ist. A: <one>Mipomersen</one>. URL: https://en.wikipedia.org/wiki/Mipomersen []
71
+ - What is <one>the size range</one> of <two>quantom dots</two>? About <one>2 nm - 10 nm</one> (<two>2-10</two>). URL: https://en.wikipedia.org/wiki/Quantum_dot []
72
+ - <three>Who</three> was the earliest <one>pioneer of biomimetics</one>? <one>Leonardo da Vinci</one> (<two>1451-1519</two>). URL: https://en.wikipedia.org/wiki/Leonardo_da_Vinci []
73
+ - In Nanotechnology: <one>CAC</one> stands short for ... ? <one>Critical aggregation concentration</one>. URL: https://www.sciencedirect.com/science/article/abs/pii/S0927775702005514 []
74
+ - Name a method with which we could <one>synthesize gold nanoparticles</one>. A: The <one>Turkevich method</one>. URL: https://en.wikipedia.org/wiki/Anthony_L._Turkevich#Career []
75
+ - In general: <one>Top-down manufacturing</one> starts with ... ? <one>bulk materials</one>. []
76
+ - In <one>nanoscale biodevices</one>: <two>to create local high concentrations, for functionalization of nanoobjects, costs ... </two>? <one>A LOT of energy</one>.
77
+ - Negative and positive ions are <one>drawn together by</one> ... ? By <one>Coulomb attraction</one>. URL: https://en.wikipedia.org/wiki/Coulomb%27s_law []
78
+ - The <one>diameter of a hydrogen atom</one> is about ... of a nanometer. A: <one>One-tenth</one> of a nanometer (<two>0.1nm</two>). []
79
+ - Name three different <one>carbon nanostructures</one>. A: (1) <one>fullerenes</one> (2) <one>graphenes</one> (3) <one>carbon nanotubes</one> []
80
+ - For biointerfaces, in nanotechnology: give another name for <one>chemisorbed</one>. A: <one>Strong anchors</one>. []
81
+ - Is the <one>PEG polymer</one> rather <two>hydrophilic</two> or <two>hydrophobic</two>? <one>PEG</one> is very <two>hydrophilic</two>. URL: https://en.wikipedia.org/wiki/Polyethylene_glycol []
82
+ - Name three <one>physical features of nanoparticles</one>. A: (1) <one>size</one> (2) <one>shape</one> (3) <one>surface area</one> []
83
+ - <one>Colloidal systems</one> can be divided into which <two>two types</two>? (1) <one>lyophilic</one> (2) <one>lyophobic</one>
84
+ - <one>IBM Scientists</one> haben das Wort <two>'IBM'</two> im atomaren Bereich gebastelt, also mit Atomen. <three>Welches Element haben sie hierfür verwendet</three>? <one>Xenon</one>. URL: https://en.wikipedia.org/wiki/IBM_%28atoms%29 []
85
+ - Give another word for <one>biosensors</one>. A: <one>Nanoscale sensors</one>. []
86
+ - <one>DNA</one> was first used to <three>rationally design plasmonic structures</three> in ... what year? In <one>1996</one>. URL: https://www.sciencedirect.com/science/article/pii/S136970211500019X []
87
+ - Provide another name for <one>a single layer of carbon</one>. A: <one>Graphene</one>. URL: https://en.wikipedia.org/wiki/Graphene []
88
+ - As the <one>size decreases</one> in <three>nanoparticles</three>, how does the <three>S</three>/<three>V ratio</three> change? The <one>S</one>/<one>V ratio</one> increases, as the size decreases. []
89
+ - Nenne <one>zwei typische Nebenwirkungen</one> von <two>Phosphorthioat-Oligonukleotiden</two>. A: (1) <one>Entzündungsreaktionen besonders an den Injektionsstellen</one> (2) <one>Anstieg der Lebertransaminasen ALT und AST</one>
90
+ - Assume that, in nanotechnology, someone argues that <one>microscopy images</one> are sufficient in order to deduce what has to be done, e. g. for nanomedicine delivery. <two>What could be said against such a claim</two>? For example, we do not get chemical information from a normal 2D microscope alone. Even probe-scanning for elements is not necessarily enough due to biological objects, such as the human body, interacting in different ways with nanomaterial.
91
+ - <one>Geckos</one> <two>can cling to surfaces</two>, aside from the tiny hairs on the feet, due to which phenomenon? Due to <one>van der Waals interactions</one>, which allow them to cling to surfaces. URL: https://en.wikipedia.org/wiki/Geckos []
92
+ - <one>Top-down manufacturing</one> in nanotechnology starts with ... ? It <one>starts with</one> <two>bulk</two> <one>materials</one>, which are then whittled down. []
93
+ - <one>Which US President</one> launched the <three>National Nanotechnology Initiative</three> (<three>NNI</three>)? President Clinton, aka <one>Bill Clinton</one>. URL: https://en.wikipedia.org/wiki/Bill_Clinton []
94
+ - In nanomedicine: what means <one>topical application</one>? This means <one>application onto the skin</one>. []
95
+ - <one>Photolithography</one> may happen with <two>which kind of laser</two>? It may happen with an <one>excimer laser</one>. URL: https://en.wikipedia.org/wiki/Photolithography []
96
+ - <one>Graphene</one> can also be called as ... ? A: The <one>carbon future</one>. []
97
+ - In <one>graphite</one>: <two>how are the layers of carbon held together</two>? By <two>weak</two> <one>van der Waals forces</one>. URL: https://en.wikipedia.org/wiki/Graphite#Structure []
98
+ - Anderer Begriff für die <one>Selbstheilung bei Metallen</one>? <one>Formgedächtnis</one>. URL: https://de.wikipedia.org/wiki/Formged%C3%A4chtnislegierung []
99
+ - The <one>Vroman effect</one> leads to multi-phase adsorption from complex solutions and over time irreversible adsorption. <two>In the human body, which proteins dominate here in particular</two>? The <one>ECM proteins</one>.
100
+ - An <one>invisibility cloak</one> could be achieved through ... ? <one>Gold nanoshells</one>. []
101
+ - <one>Catechols</one> provide <three>strong anchors</three> in nanobiotechnology. <two>They tend to bind to which substance</two>? <one>Fe₃O₄</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4829641/
102
+ - Name <one>three forces</one> that <two>direct molecular self-assembly</two>. A: (1) <one>hydrogen bonding</one> (2) Coulombic interactions (3) van der Waals forces
103
+ - <one>Capsosomes</one> are synthesised ... how? By <one>using the</one> <two>layer-by-layer</two> <one>technique</one>. URL: https://pubs.acs.org/doi/10.1021/la900213a []
104
+ - Do <one>carbon nanotubes</one> conduct electricity better than copper does? Yes.
105
+ - Does <one>PEGylation</one> increase the molecular weight of a molecule? Yes it does. []
106
+ - A <one>bulk solid material</one> typically has <two>less than n% of its atoms on the surface</two>? Less than <one>1%</one>. []
107
+ - The diameter of a <one>Buckminsterfullerene</one>, <two>a C60 body</two>, is about n nm? About <one>0.7 nm</one>.
108
+ - A <one>quantum dot</one> can be manufactured reliably as small as n nm in diameter? About <one>2 nm in diameter</one>.
109
+ - Wie werden die <one>SNALP-Lipidstrukturen</one> in den menschlichen Körper gebracht, meistens? Durch eine <one>intravenöse Applikation</one>. []
110
+ - Provide another name for a <one>temperature-based nanotherapy</one>. A: <one>Hyperthermia</one>.
111
+ - <one>The energy of separating a material into two parts</one> is called ... ? <one>Cohesion</one>. []
112
+ - <one>Why</one> may it be useful that <two>gold nanoshells assume a different colour dependent on size</two>? Because they can then act as <one>sensors</one> (<one>biosensors</one>). []
113
+ - <three>Self-assembly</three> is an <one>energy ... process</one>. A: <one>Energy minimization process</one>. []
114
+ - Consider someone is stating that human engineers do not really need nanotechnology, because they can <one>build large planes</one>, which are big, rather than small - <two>what could be replied to such a person</two>? That even large planes were made possible because <one>so many other things have been made smaller</one>.
115
+ - The use of <one>implant biomaterials</one> dates back at least to ...? The <one>old Egyptians</one>. []
116
+ - <one>Rapamune</one> is a registered trademark, <three>carrying which particular drug</three>? <one>Rapamycin</one>. URL: https://en.wikipedia.org/wiki/Sirolimus []
117
+ - The term <one>nanotechnology</one> often begins at <two>below which threshold</two>? <one>Below 100 nanometers</one>. []
118
+ - Give an example for an <one>invisibility cloak</one>. A: <one>Gold Nanoshells</one>. URL: https://en.wikipedia.org/wiki/Nanoshell []
119
+ - Are <one>carbon nanotubes</one> <two>bendable without breaking</two>? <one>Yes</one>. []
120
+ - Can <one>airborne nanoparticles</one> travel large distances <three>without aggregation</three>? Yes. []
121
+ - The highest breaking and tensile strength of any known material is found in ... ? <one>Graphene</one>. []
122
+ - Name <three>a lithography method</three> that works by <one>writing pixel-by-pixel</one>. A: The <one>dip-pen lithography</one>. URL: https://en.wikipedia.org/wiki/Dip-pen_nanolithography []
123
+ - What is the chemical formula of <one>Teflon</one>? <one>C₂F₄</one>. URL: https://de.wikipedia.org/wiki/Teflon []
124
+ - Do <two>standards</two> exist for <one>testing nanomaterials risks</one>? No. []
125
+ - We can say that the main focus of nanotechnology happens at a size-range of about <one>10 nm</one>. <two>How do we call the size range below and above this threshold value, respectively</two>? (1) <two>Above</two> we call it <one>bulk matter</one> (2) <two>Below</two> we call it <one>atomic matter</one> []
126
+ - <one>SNALPs</one> (<two>stable nucleic acid lipid particles</two>) sind geladen oder ungeladen bei einem <three>sauren pH</three>? SNALPs <one>sind geladen</one>. []
127
+ - What is <one>Theranostics</one>? This is the approach of <two>combining</two> <one>diagnostics</one> and <one>therapeutics</one>. []
128
+ - For a <one>3 nm diameter particle</one> approximately n% of the atoms reside on the surface. A: About <one>90%</one> of the atoms are on the surface. []
129
+ - The <one>head of a pin</one> is about <three>n nm in diameter</three>? About <one>1_000_000 nm</one>. []
130
+ - What is <one>the primary force</one> pushing nanotechnology development worldwide? <one>Money</one>. []
131
+ - Nanoscience really sprang into the public consciousness sometime in the year <one>1981</one>. <two>What other invention coincided with this year that may also have been pushing the field of nanoscience forward</two>? The <one>invention of the scanning tunneling microscope</one> (<two>STM</two>), which also happened in the year <two>1981</two>.
132
+ - <one>Nanotechnology</one> is <two>the epitome of ... engineering</two>. A: <one>bottom-up engineering</one>. []
133
+ - <one>Fluorinated polymer properties</one> show chemical ... ? <one>Inertness</one>. []
134
+ - Does the <one>self-assembly process</one> occur by itself, <two>without external guidance</two>? Yes. []
135
+ - The <one>light scattering</one> occuring within the <three>lycurgus cup</three> is called ... ? <one>Plasmon light scattering</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6816254/ []
136
+ - <one>Millimeter-sized implant devices</one> suffer <two>which two major problems</two>, as of the year 2020? (1) <one>foreign body response</one> (2) the <one>problem of energy supply</one>
137
+ - In <one>nanomaterials</one>: <two>whenever we have benefits, we may also have</two> ... ? <one>Risks</one>, aka <two>adverse effects</two>. []
138
+ - <one>ECM fiber bundles</one> are about n nm in diameter? About <one>20-30 nm in diameter</one>. []
139
+ - An <one>... liposome</one> releases drugs while circulating. A: <one>Unstable soneth liposome</one>. []
140
+ - The <one>Buckminsterfullerene</one> has <three>how many C atoms</three>? <one>60</one>. URL: https://en.wikipedia.org/wiki/Buckminsterfullerene []
141
+ - The majority of atoms in a <one>nanoparticle</one> reside where? On its <one>surface</one>. []
142
+ - In <three>nanomedicine-based therapy</three> we have <one>the EPR effect</one> ("Enhanced Permeability and Retention"). We can also target cancer-cells, in particular through which <two>specific receptor</two>? The <one>folic acid receptor</one>. URL: https://en.wikipedia.org/wiki/Folate_receptor_1 []
143
+ - Are <one>fullerenes</one> hollow? <one>Yes</one>. URL: https://en.wikipedia.org/wiki/Fullerene []
144
+ - On <three>29.12.1959</three>, <one>Richard Feynman gave</one> a talk at the Annual meeting of the American Physical Society. <three>What was the title of this talk</three>? <one>"There's Plenty of Room at the Bottom."</one> []
145
+ - ... is <one>a key concept</one> to understanding biomolecular adsorption. A: <one>Surface energy</one>. []
146
+ - <one>Why</one> can it be said that <two>nanoscience is not physics, chemistry, engineering, or biology</two>? Because <one>it is all of them</one>. []
147
+ - <one>Who</one> are <two>the only real nanobots</two>? <one>Viruses</one>. []
148
+ - Is a <one>polymer brush</one> a repulsive surface coating? Yes. []
149
+ - In <one>nanotechnology</one>: <three>CNT</three> is an abbreviation for ... ? <one>Carbon nanotubes</one>. []
150
+ - Do <one>gecko</one> secrete any sticky substance? No. []
151
+ - Give an example for <one>plasmon light scattering</one>. A: The <one>lycurgus cup</one>. URL: https://en.wikipedia.org/wiki/Lycurgus_Cup []
152
+ - <one>Carbon nanotubes</one> typically have a diameter smaller than ... ? <one>2 nm</one>. []
153
+ - <one>Plant leaves</one> that show a <three>lotus effect</three>, have <two>tiny wax crystals on their surface</two>. What is the diameter of these crystals? The <one>diameter</one> of these crystals is about <two>1nm</two>. []
154
+ - <one>Functional biointerfaces</one> depend on controlling the interface between ... <two>which two frontiers</two>? (1) an <one>artificial object</one> (2) <one>a biological environment</one>
155
+ - Can we attach <one>albumin</one> to a nanoparticle? Yes we can. []
156
+ - Does the <one>aggregation state</one> of nanoparticles influence their size, de-facto? Yes. []
157
+ - In <one>nanomedicine applications</one>: give an example for an <three>en-route barrier</three>. A: <one>Blood</one>. []
158
+ - Do the <one>catechols</one> provide a strong anchor, for <three>use for nanosensors</three>? Yes. []
159
+ - Are <one>carbon nanotubes</one> <three>chemically inert</three>? Yes. []
160
+ - <one>Protein adsorption to a surface</one> can be predicted via <three>which theory</three>? The <one>DLVO theory</one>, named after <two>Boris Derjaguin</two> and Lev Landau, Evert Verwey and Theodoor Overbeek (DLVO). URL: https://en.wikipedia.org/wiki/DLVO_theory
161
+ - Give another name for <one>weak anchors</one> in <two>nanosensors</two>. A: <one>Physisorption</one>. URL: https://en.wikipedia.org/wiki/Physisorption []
162
+ - In regards to nanotechnology: <one>is the focus equally on all nano-objects</one>? No - <one>man-made products are evaluated more critically</one> than <two>"natural" products</two>.
163
+ - <one>Polyelectrolyte multilayer</one> capsules (<two>PEM</two>) can be formed by LbL self-assembly. What is <three>LbL</three>? <one>Layer-by-Layer</one>. []
164
+ - How can <one>DNA origami</one>, aka <two>building structures with DNA</two>, work? <two>The 3D structure is encoded in how different DNA sequences match</two>. For example, one basic structure is the <one>junction J</one>, which looks like a <two>+</two>-shaped crossing, with four paths leading to the outside, starting from its center.
165
+ - Name <two>an object</two> that was used in history and that is <three>an early example</three> of a <one>dichroic glass</one>. A: The <one>Lycurgus Cup</one>. URL: https://en.wikipedia.org/wiki/Lycurgus_Cup []
166
+ - How can we <one>avoid opsonization of nanoparticles</one>? Via <one>PEGylation</one>. URL: https://en.wikipedia.org/wiki/PEGylation []
167
+ - <one>Molecular motors</one> use ... to <two>create motion</two>. A: <one>chemical energy</one>. []
168
+ - The <one>thickness of a normal paper</one> is <two>n nm</two>? About <one>100_000 nm</one>. []
169
+ - <one>Gecko feet</one> are an example of ... at work (a physical phenomenon). A: Of <one>van der Waals forces at work</one>. []
170
+ - In nanotechnology: what is meant with <one>S</one>/<one>V</one>? This refers to the <one>surface-to-volume ratio</one>. []
171
+ - Does <one>the aggregation state of nanoparticles</one> change with the environment? Yes, it does. []
172
+ - Can <one>nanoparticles</one> cross the <two>blood-brain barriers</two>? <one>It is assumed to be that way</one> - <two>Nanoparticles with controlled surface properties are believed to be able to cross barriers such as the blood-brain barrier</two>. []
173
+ - <one>Fullerenes</one> typically contain <two>how many C atoms</two>? <one>60</one>. URL: https://en.wikipedia.org/wiki/Fullerene []
174
+ - Give an example of <one>a natural colloid</one>. A: <one>Milk</one>. []
175
+ - <one>Nanomaterials</one> that get into the human lung, show similarities to ... ? Problems caused by <one>asbestos</one>. URL: https://en.wikipedia.org/wiki/Asbestos []
176
+ - Give another term for <one>the carbon future</one>. A: <one>Graphene</one>. URL: https://en.wikipedia.org/wiki/Graphene []
177
+ - The process of <one>splitting atoms into smaller pieces</one> is called ... ? <one>Nuclear fission</one>. URL: https://en.wikipedia.org/wiki/Nuclear_fission []
178
+ - Es gibt den Arzneiwirkstoff <one>siG12D LODER</one>. Wofür steht das LODER hier? A: <one>LODER</one> steht für <two>Local Drug EluteR</two>. URL: https://www.silenseed.com/science-technology/the-loder-platform/
179
+ - In nanomedicine we may employ <one>hydrogels</one> for oral delivery. Are these hydrogels <two>hydrophobic</two> or <two>hydrophilic</two>? <two>Hydrogels</two> are <one>very hydrophilic</one>. URL: https://en.wikipedia.org/wiki/Gel#Hydrogels []
180
+ - Besitzen <one>carbon-nanotubes</one> die <two>Fähigkeit zur Fluoreszenz</two>? Ja. []
181
+ - <one>Who</one> was <two>the first person</two> to create <three>metallic gold colloids</three>? <one>Michael Faraday</one>. URL: https://en.wikipedia.org/wiki/Michael_Faraday#Chemistry []
182
+ - Can <one>gecko</one> hang upside down from the ceiling? Yes. []
183
+ - Both <one>top-down</one> strategies and <one>bottom-up</one> strategies in nanotechnology have <two>which goal in common</two>? Build the <one>smallest possible functional unit</one>.
184
+ - Nenne einen wichtigen Grund wieso <one>Lipoplexe</one> nicht häufiger eingesetzt werden. A: Da sie <one>oft sehr toxisch</one> sind; somit verhindert deren <two>Toxizität</two> ihren Einsatz.
185
+ - Name a structure in which <one>every atom is a surface atom</one>. A: The <one>fullerenes</one>. URL: https://en.wikipedia.org/wiki/Fullerene
186
+ - Is <two>the core of a liposome</two> <one>hydrophobic</one> or <one>hydrophilic</one>? A <two>liposome</two> has a <one>hydrophobic core</one>. URL: https://en.wikipedia.org/wiki/Liposome []
187
+ - What is meant with the so called <one>scaling theory</one> in nanotechnology? This is when <one>small things</one> behave differently compared to <two>large, everyday things</two>. The properties change as the size decreases towards the nanoscale.
188
+ - Nanotechnology seeks to <one>"rebuild the world ... "</one> ? <one>One molecule</one>/<one>atom at a time</one>. []
189
+ - In nanotechnology: what is meant with the <one>gray goo</one>? This refers to <one>self-replicating nanobots</one> that could become a new, parasitic <two>life-form</two> that would reproduce uncontrollably, remaking everything on Earth into copies of itself. The result would be undifferentiated <two>gray goo</two>.
190
+ - The <one>administered dose</one> in nanomedicine must be continuously be within ... ? The <one>therapeutic window</one>. URL: https://revive.gardp.org/resource/therapeutic-window/?cf=encyclopaedia []
191
+ - In the <one>bottom-up approach</one> in nanotechnology: <two>what plays a central role in self-assembling systems made by equilibrium methods</two>? <one>Entropy</one>.
192
+ - Give an example for a <one>heterogeneously charged surface</one>, from biology. A: A <one>mosaic virus</one>.
193
+ - Give an example for a <one>biological molecular machine</one>. A: <one>Bacterial flagella</one>. URL: https://en.wikipedia.org/wiki/Flagellum#Bacterial []
194
+ - The <two>diameter</two> of a <one>hydrogen atom</one> is ... n nm? <one>0.1 nm</one>. []
195
+ - <two>Nanoparticles</two> may become <one>PEGylated</one>. <three>What charge will they incur as a consequence of this coating</three>? These particules will become <one>highly hydrophilic</one>, which also <two>prevents</two>/<two>reduces opsonization</two>. URL: https://en.wikipedia.org/wiki/PEGylation
196
+ - <one>Why</one> can we say that <two>hydrophobic interaction is not a force</two>? Because it <one>has no real range</one>; about <two>~0.5nm</two> only.
197
+ - Why can <one>thermoresponsive polymers</one> be <two>used for drug-release devices</two>? Because at a high temperature they will shrink, which in turn may cause the formation of large pores, <one>thus making the release of the drug easier</one>.
198
+ - <one>Cells</one> <two>actively probe the physical properties of surfaces</two>. <three>Name one way how they do so</three>. A: Cells can make use of their contractile machinery to form polarized <one>lamellipodia</one>.
199
+ - <one>Which person</one> discovered the <two>carbon nanotube</two> (<three>CNT</three>)? A japanese called <one>Sumio Iijima</one>. URL: https://en.wikipedia.org/wiki/Sumio_Iijima []
200
+ - The <one>van-der-Waals force</one> has <two>which two general components</two>? (1) <one>attractive force</one> (2) <one>repulsive force</one> []
201
+ - Name a fairly important theory originating from nanotechnology that begins with the letter <one>s</one>. A: The <one>scaling theory</one>.
202
+ - Give another name for <one>particle aggregation</one>. A: <one>Flocculation</one>. URL: https://en.wikipedia.org/wiki/Flocculation#Biology []
203
+ - Do <one>non-carbon nanotubes</one> exist? Yes. []
204
+ - Are <one>optical properties of nanoparticles</one> <three>size dependent</three>? Yes. []
205
+ - <one>Chemisorption</one> versus <one>Physisorption</one>: which one of these provides for stronger anchors, <three>for use in nano-biosensors</three>? <one>Chemisorption</one> is stronger. []
206
+ - <two>Nanotechnology</two> is the study and use of structures <one>between</one> x nanometer and y nanometers in size. A: <one>1nm</one> up to <one>100nm</one>. []
207
+ - The <one>core</one> part of a protein is hydrophilic or hydrophobic? It is of course <one>hydrophobic</one>. []
208
+ - The <two>power dissipated as heat</two> by an electrical element is defined by <one>which law</one>? By the <one>Joule's law</one>. URL: https://en.wikipedia.org/wiki/Joule_effect []
209
+ - The <one>Lycurgus Cup</one> was created by the <three>Romans</three>, and it was made of a dichroic glass. Which <three>two materials</three>, as nanoparticles, were used here? (1) <one>gold</one> (2) <one>silver</one> []
210
+ - Do <one>biological fluids</one> have <two>high ionic strength</two>? <one>Yes</one>.
211
+ - The <one>only real nanobots</one> are ... ? <one>Viruses</one>. []
212
+ - Where may <one>hydrogels</one> be found? In <one>biomedical devices</one>. URL: https://www.sciencedirect.com/science/article/abs/pii/S0925400510003096 []
213
+ - In nanotechnology: a better question than <one>"What can we build?</one> would be ... ? A: <one>What do we choose to build?</one>.
214
+ - Give another name for <one>PEGylated liposomes</one>. A: <one>Stealth liposomes</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2426795/ []
215
+ - Do <two>single (biological) cells</two> respond to <one>microscale roughness of a surface</one>? Yes. []
216
+ - In <one>Nanotechnology</one>: what is meant with the abbreviation <three>SNALPs</three>? <one>Stable nucleic acid lipid particles</one>. URL: https://en.wikipedia.org/wiki/Stable_nucleic_acid_lipid_particle []
217
+ - Give an example for <one>a permanent dipole molecule</one>. A: The <one>water molecule</one> (<two>H₂O</two>). []
218
+ - <one>Molecular motors</one> are driven by ... ? <one>Brownian ratchets</one>.
219
+ - Name <one>a very common surface modification of biointerfaces</one> for nano and macro applications. A: A <one>polymer brush</one>. URL: https://pubs.rsc.org/en/content/articlelanding/2010/py/b9py00246d#!divAbstract
220
+ - <one>Nanotechnology</one> makes ... the most important part of any development process. A: <one>design</one>.
221
+ - <two>Nanotechnology</two> is <one>a double-edged sword</one>. What is usually meant with that? That the same novel properties that make nanoparticles attractive, also makes them <one>potentially toxic</one>.
222
+ - In <one>nanotechnology</one>: give an example for a <two>drug conjugate</two>. A: Any <one>antibody-drug conjugate</one> (<two>ADC</two>).
223
+ - <one>Nanotechnology</one> uses less resources for ... ? <one>The same function</one>.
224
+ - What will be the effect of attaching a <one>PEG polymer</one> on a nanoparticle surface that is destined to enter the human bloodstream? This will <one>increase circulation time</one> by <two>reducing this opsonization process</two>.
225
+ - In nature: <one>which type of assembly pattern dominates</one>, viewed from nanotechnology? The <one>bottom-up self-assembly</one> approach.
226
+ - <one>Which forces</one> are the dominant interactions on the nanoscale? <one>Electromagnetic forces</one>.
227
+ - Name a simple way <one>how to improve the detection capabilities of a (nano)biosensor</one>. A: Make use of <one>fluorescent labels</one>, <two>in order to enhance the signal</two>.
228
+ - <one>Nanoscaled gold particles</one> show an intense red colour, at the least up to a size of ... n nm? Of about <one>100 nm</one> maximum. Below that size threshold they appear red in colour.
229
+ - With <one>miniaturization</one> comes ... ? <one>Multifunctionality</one>.
230
+ - A <one>"stealth liposome"</one> typically makes use of which coating? <one>PEG polymer brush coating</one>.
231
+ - Biology provides examples of self-assembly, such as via ... ? <one>Protein folding</one>.
232
+ - Give four different examples for <one>surface modification adlayers</one>. A: (1) Self-assembled monolayer (2) polymer brush (3) crosslinked hydrogel (4) dendro
233
+ - The <one>surface energy of hydrocarbon polymers</one> can be reduced by substituting hydrogen for ... ? <one>Fluorine</one>.
234
+ - <one>Nanoparticles</one> can be used as <three>"... antennas"</three>. A: <one>Lossy antennas</one>.
235
+ - Give another name for <one>an interface with low surface energy</one>. A: <one>Hydrophobic surface</one>.
236
+ - Is <one>a biomolecule</one>, such as <two>a protein</two>, <three>more hydrophobic than water</three>? Yes, <one>always</one>.
237
+ - Say that we have a surface area in a nanodevice implanted in the human body. A given protein is assumed to have few contact points. What can we infer from this, in regards to the surface area at hand? That this protein will not deform on the surface, as this would normally require more contact points.
238
+ - Proteins have <one>heterogeneous surface properties</one> due to ... ? their <one>amino acid composition</one>.
239
+ - For designing biointerfaces: what is meant with the term <one>anti-microbial design</one>? This refers to <one>specifically killing microbes trying to colonize the interface</one>.
240
+ - Name <two>a very small drug delivery platform</two> that begins with the letter <one>'C'</one>. A: <one>Capsosomes</one>.
241
+ - The binding of molecules or particles to another surface without chemical bonds being formed is called ... ? <one>Physisorption</one>.
242
+ - The <one>human body</one> <two>responds</two> to an unknown interface by ... ? <one>Encapsulation</one>.
243
+ - <one>Coulombic repulsion</one> prohibits molecules from ... ? <one>overlapping in space</one>.
244
+ - Die <one>biomolekulare Korona</one> in der Nanomedizin hat wieviele Schichten? <two>Zwei</two> - die <one>konstante Schicht</one> und die <one>dynamische Schicht</one>.
245
+ - A colloidal system consists of which two separate phases? (1) a dispersed phase (the <two>colloid</two>) (2) a continuous phase (the <two>medium</two>).
246
+ - What is meant with the term <one>colloidal gold</one>? <one>Colloidal gold</one> is <two>a colloidal suspension of nanoparticles of gold in a fluid</two>.
247
+ - For nanotechnology: where may <one>surface plasmons</one> be important? For <one>biosensors</one>.
248
+ - Can <one>nanowires</one> detect a single virus? Yes - for example if we tie an antibody to the nanowire.
249
+ - The energy levels of insulators and semiconductors have ... what kind of gaps? <one>Bandgaps</one>.
250
+ - <one>Physical interactions</one> determine ... ? <one>everything!</one>
251
+ - From <one>microelectronics</one>: increasing the density of the transistors als increase the demand for ...? <one>Cooling</one>.
252
+ - When designing <three>biosensors</three> that work on the nanoscale level, we have to <one>consider the length scale</one>. The length scale is typically from <two>n nm</two> to <two>n nm</two>? <one>5 nm</one> <two>-</two> <one>500 nm</one>.
253
+ - The <one>strongest known material in the world</one> is ... ? <one>Graphene</one>. URL: https://en.wikipedia.org/wiki/Graphene
254
+ - What is the reason for the <one>Brownian ratchet</one> to work for molecular nanomachines in biological cells? These movements originate from <two>collisions</two> <one>with water molecules</one>.
255
+ - Name <one>three different scale-variants</one> that relate to nanotechnology. A: (1) <one>Macroscale</one> (2) <one>Microscale</one> (3) <one>Nanoscale</one>
256
+ - One of <one>the best-known thermal conductor</one> is ... ? <one>Diamond</one>.
257
+ - Name <three>a method</three> with which we can model <one>polymer brushes</one>. A: The <one>Monte Carlo</one> method.
258
+ - Will <one>proteins</one> that deform easily also more easily stick onto a given surface? Yes, as they <one>will have more contact points</one>.
259
+ - <one>Micelles</one> keep what in water? Their <one>heads</one>. URL: https://en.wikipedia.org/wiki/Micelle
260
+ - The same properties that make nanoparticles potentially <one>more dangerous</one>, due to reactivity, also make them ... ? <one>Very short lived</one>.
261
+ - Give an example for modern <one>nanoscale assembly</one>. A: <one>DNA Origami</one>.
262
+ - From nanotechnology and physics: the <one>strength of a muscle</one> is ... ? The <one>force it can produce</one>.
263
+ - The most useful information obtained from an <one>IR spectrum</one> is ... ? <one>What functional groups are present within the molecule</one>.
264
+ - <one>Kolloidales Gold</one> hat eine <three>hohe Affinität</three> zu ... ? <one>Thiolgruppen</one> - also <two>Cystein</two>.
265
+ - Most of the information that is used to interpret an IR spectrum is obtained from ... ? From the <one>functional group region</one>.
266
+ - <one>Infrared spectroscopy</one> exploits the fact that molecules absorb frequencies that are ... ? <one>characteristic of their structure</one>.
267
+ - Nenne <one>eine Substanz</one>, die man für die <three>Erstellung von Liposomen</three> verwenden könnte. A: <one>PEG</one>: <two>Polyethylenglykol</two>. URL: https://de.wikipedia.org/wiki/Polyethylenglycol
268
+ - From the point of view of nanotechnology, <one>planet Earth</one> is nothing more than ... ? An accumulation of <one>atoms</one>.
269
+ - Feynman once said: <three>"So, you simply evaporate until you have a block of stuff which has the elements ... What could we do with layered materials with just the right layers?"</three>. <one>Which technique</one> implements this vision? A: <one>Molecular beam epitaxy</one>. URL: https://en.wikipedia.org/wiki/Molecular-beam_epitaxy
270
+ - Give an example for <one>ultrahydrophobicity</one>. A: The <one>lotus effect</one>, found on a <one>lotus leaf</one> - aka <three>self-cleaning properties</three>.
271
+ - In nanotechnology, we often use the S/V ratio as comparison. Volume scales how much faster than the surface area? <two>Volume</two> scales <one>to the power of 3 faster</one>.
272
+ - How do we call <one>nanoparticles</one> that are not cleared from a biological environment? <one>Bio-persistent nanoparticles</one>.
273
+ - <two>Silicon-based, disposable blood-pressure sensor chips</two> were introduced in the early 1990s by which company, for <one>blood pressure monitoring</one>? By <one>NovaSensor</one>. URL: https://en.wikipedia.org/wiki/Kurt_Petersen_(inventor)#Career
274
+ - Give an example as to why we may want to apply <one>specialized coatings on glass</one>. A: This may <two>reduce glare</two> - and <one>make it easier to clean</one> as well.
275
+ - The response of a material to electromagnetic excitations is strongly ... dependent. A: Strongly <one>frequency dependent</one>.
276
+ - <one>Nano-engineering</one> and <one>nano-design</one> almost exclusively take place on ... ? <one>computers</one>.
277
+ - Give another term for <one>negative refractive index</one>. A: <one>Invisibility</one>.
278
+ - Give an example for <one>self-assembling protein structures</one> that are NOT related to viruses. A: The <one>S-layers</one>, surface structures of some <two>eubacteria</two> and <two>archaea</two>.
279
+ - In the <one>human body</one>: if we <two>use nano-vesicles</two> that are at about <three>5 nm in diameter</three>, what general problem do we face here? Nanoparticles with such a diameter are <one>easily excreted through the renal system</one> (<two>kidneys</two>).
280
+ - The <one>natural environment of biomolecules</one>, including (natural) <three>nanoparticles</three>, is ... ? <one>Water</one>.
281
+ - Ein <one>Quantum Dot</one> (Quantenpunkt) hat etwa <two>n Atome</two>? <one>Tausend</one> bis <one>wenige Tausend</one>.
282
+ - In <one>PLL-g-PEG</one>: what does <two>the middle g</two> stand for? <one>graft</one>.
283
+ - We can distinguish between <three>five general stages of nanomedicine development</three>. What is <one>stage number 4</one> (IV)? <two>Stage number 4</two> is concerned about <one>long term safety</one>.
284
+ - Wir beladen einen <one>SNALP-Lipidkomplex</one> mit <three>siRNA</three>. Welchen pH Wert wollen wir für die Ionisierbarkeit erreichen? Einen <one>sauren pH</one> - also <two>unter Bedingungen der Endosomen</two>.
285
+ - We could <three>implant drug delivery systems into the body</three> - but what characteristic trait does the <one>membrane</one> of this system have to have? The membrane has to be <one>completely non-fouling</one> - otherwise it will clog and the release of the drug will subsequently stop.
286
+ - In <one>spintronics</one> the electron carries not only the charge but also ... ? <one>Information in the form of its</one> <two>spin</two>.
287
+ - <one>Atoms on the surface of a nano-particle</one> have a smaller coordination number. These surface atoms experience an unbalanced force which is relieved by a <two>readjustment</two> in their positions that we call ... how? <one>Surface relaxation</one>.
288
+ - A small size (<one>nanosize</one>) combined with a high surface area, and lots of tiny particles, means that we will see ... reactivity. A: <one>Ultra-high reactivity</one>.
289
+ - Name two different release profiles for <one>implantable drug delivery systems</one>. A: (1) <one>burst release</one> (2) <one>stepped release</one>
290
+ - Nenne eine Möglichkeit <one>quantum dots</one> herzustellen. A: <one>MBE</one>: <two>Molecular Beam Epitaxy</two>. URL: https://en.wikipedia.org/wiki/Molecular-beam_epitaxy
291
+ - Why is <one>the chirality of a carbon nanotube</one> important? Because it may determine some of its properties: for example, <one>whether it will conduct electricity like a metal or like a semi-conductor</one>.
292
+ - The largest <one>fullerenes</one> had how many C atoms? <one>540</one>.
293
+ - The goal of molecular mechanics is to find stable configurations for a set of particles - the <one>local minima on the potential energy surface</one>. Give another name for these local minima. A: <one>Saddle points</one>.
294
+ - Die Weiterentwicklung <one>NanoSIMS</one> erlaubt eine räumliche Auflösung von bis zu n nm? Bis zu <one>30 nm</one>.
295
+ - Name one general <one>top-down strategy</one> on the nanoscale. A: <one>Lithography</one>. URL: https://en.wikipedia.org/wiki/Nanolithography
296
+ - <one>Nanolabeling</one>, aka via a <two>n+E-number</two>, was implemented in the EU fully since as of ... ? <one>2014</one>.
297
+ - In a <one>hydrogel</one>: what determines the loading and release rate of its <three>drug-payload</three>? The <one>swelling</one>.
298
+ - How can the <one>swelling</one> of a hydrogel, and thereby the loading and release rate, be affected? We can <two>affect it through the environment</two>, in particular by: (1) <one>the pH value</one> (2) <one>temperature</one> (3) <one>ion concentration</one>
299
+ - Given <one>an atom at the surface of a crystal with a high curvature</one>, what can we presume from this at once? This atom will have <one>fewer nearest neighbors</one>.
300
+ - <one>Contact angles</one>, which should be directly related to surface energy, are seldom found tabulated because of ... ? Because of the fact that they are <one>notoriously difficult to reproduce</one>.
301
+ - In nanotechnology, for the design of <three>nanosensors</three>, we may make use of <one>oxide surfaces</one>. Give an example for such an <one>oxide surface</one>. A: <one>SiO₂</one>. <two>Silanes</two> in general are good anchors.
302
+ - ... is <one>the primary source of power and control for small systems</one>. A: <one>Electricity</one>.
303
+ - <two>A protein</two> is a ... <one>polymer</one>. A: A <one>flexible polymer</one>.
304
+ - If a <one>nanomaterial</one> has a <three>poor solubility in water</three>, what can we infer this nanomaterial to have in regards to bioavailability? It will also have a <one>poor bioavailability</one>.
305
+ - Does the <one>Vroman effect</one> lead to <three>irreversible adsorption</three> of proteins onto a surface? Yes, <one>over time it does</one>.
306
+ - In <one>nanomedicine</one>: <three>the skin</three> is a formidable boundary that only allows ... what to penetrate through all skin layers? <one>Oily formulations of</one> <two>small molecules</two>.
307
+ - Do <two>carbon nanotubes</two> show a <one>high thermal conductivity</one>? Yes - <one>similar to diamond</one>.
308
+ - In <one>nanotechnology</one>, for <two>surface patterning</two>: which <three>two different basic etching modes</three> can be distinguished? (1) <one>dry etching</one> (2) <one>wet etching</one>
309
+ - In <peru>nanotechnology</peru>: <one>anchor combinations</one> that <three>provide the perfect contrast</three> are called ... ? <one>Orthogonal</one>.
310
+ - In nanotoxicity: increased surface area and reactivity leads to increased intrinsic toxicity, in particular the <one>production of ...</one>? <one>Oxyradicals</one>. URL: https://en.wiktionary.org/wiki/oxyradical
311
+ - Nanotechnology was hyped in the early 2000s as having lots of opportunities for the future. But it has been said that <one>extraordinary claims also require</one> ... ? <one>Extraordinary proof</one>.
312
+ - In Nanotechnology: why is the term <one>noble metal</one> a curious one? Because the properties of atoms and molecules may change at the nanoscale; they <one>may no longer be so noble anymore</one>. <two>They can be manipulated in some cases</two>.
313
+ - Will a <one>natural surface</one> <two>induce protein adsorption</two>? Yes.
314
+ - What is <one>nanomedicine</one>? <two>Nanomedicine</two> is <one>the application of nanotechnology to medicine</one>.
315
+ - The <one>main mantra</one>, the tenet, of gradual conversion to bottom-up thinking in nanotechnology is ... ? <one>Do more with less</one>.
316
+ - <one>Nanoparticles</one> can be distributed in the blood, as <two>colloid</two>. How does the body <three>clean up</three>, usually? Through <one>circulating macrophages</one>.
317
+ - What is meant with the term <one>luminescence</one>? <two>Luminescence</two> is <one>the emission of light from</one> <three>any substance</three>.
318
+ - Name two definitions that are <two>necessary conditions</two> for the term <one>nanotechnology</one>. A: (1) <one>scale</one> (2) <one>novelty</one>
319
+ - <one>Liposomes</one> can be modified and functionalized, with what exactly in general? <one>Additional</one> <two>targeting moieties</two>.
320
+ - How is <one>matter</one> called that can be used for something? A <one>material</one>.
321
+ - What are <one>drug nanocrystals</one>? <two>Drug nanocrystals</two> are crystals with a size in the nanometer range, which means they are <one>nanoparticles with a crystalline character</one>.
322
+ - <one>MCC-465</one> is a liposome, complexed with an <three>antibody fragment</three> (thus, it is an immunoliposome), for the targeted delivery of <two>doxorubicin</two>. Which antibody fragment is used here for MCC-465? <one>F(ab')₂</one>.
323
+ - Give an example for a <one>passive nanostructure</one>. A: <one>Coatings</one> (on a nanovesicle).
324
+ - The <one>plasmonic properties of gold nanoparticles</one> can be used to enhance ... which signal? The <one>Raman signal</one>.
325
+ - In <peru>nanotechnology</peru>: when <one>tracking nanoparticles</one>, via <two>NTA</two> (<three>nano-particle tracking analysis</three>), what is indispensable aside from the nano-object itself? A <one>laser</one>.
326
+ - What may serve as <one>an artifical gecko feet</one>? <one>Carbon nanotubes</one>.
327
+ - Three classes of <one>properties of the ECM</one> have been shown to influence cell adhesion and response when applied to <two>biomimetic interfaces</two>. Which ones are these? (1) <one>Mechanical properties</one> (2) <one>Specific chemical signals</one> (3) <one>Topography</one>
328
+ - Mankind can <one>see and manipulate atoms</one> <two>via which technique</two>? Via the <one>scanning tunneling microscope</one> (<two>STM</two>).
329
+ - Nanoparticles may be <one>nanotoxic</one>. But is this valid for man-made nanoparticles? <one>Most likely no</one>, as their high surface activity means that they are very active, and thus have a short lifetime, as they tend to be unstable in most environments.
330
+ - If a liquid, such as <one>water</one>, does not perfectly wet a surface, then a droplet will be created with a ... related to the ... of the surface. A: A <one>curvature</one> related to the <two>contact angle</two> of the surface.
331
+ - Give an example for <one>an extremely porous material</one>. A: <one>Zeolites</one>.
332
+ - Nanotechnology also employs <one>infrared spectroscopy</one>, in particular to study what exactly? The <one>surface chemistry of nanoparticles</one>.
333
+ - Name a common <one>delivery problem</one> for novel protein drugs, from the point of view of nanotechnology. A: <one>Viscosity</one>.
334
+ - What makes <one>graphite</one> soft? The weak <one>van der Waals bonds</one> that hold the <two>layers</two> together.
335
+ - Name a huge drawback of <one>stable soneth liposomes</one> in nanomedicine. A: It <one>will not release drugs efficiently at the target location</one>.
336
+ - The central tenet and paradigm shift in <one>molecular nanotechnology</one> is ... ? The change from <one>top-down to bottom-up engineering</one>.
337
+ - <one>Nanoporous membranes</one> have an <two>upper size limit</two> of about <three>n nm</three>? Less than <one>20 nm</one>.
338
+ - In <one>nanomedicine</one>: give another term for <two>biodistribution</two>. A: <one>Flow</one>.
339
+ - A fancier term for <one>nanotechnology</one> may be to call it ... ? The <one>next industrial revolution</one>.
340
+ - Does the <one>surface plasmon resonance</one> have anything to do with colours? Yes.
341
+ - Name one important reason why <one>nanomedicine</one> may be important today. A: We may be able to <one>improve a medical therapy</one>; and the diagnosis.
342
+ - Andere Bezeichnung für das <one>Injektisom</one>? <one>Typ-3-Sekretionssystem</one> (<two>T3SS</two>).
343
+ - Nanomaterials may show an <one>increased, intrinsic toxicity</one>. Give one such example for this statement. A: The <one>production of oxyradicals</one>.
344
+ - <one>Nano-scale materials</one> exhibit different fundamental physical, biological, and chemical properties. This may also be relevant in nanotoxicology. Name <three>two main reasons</three> as to the cause of these different, fundamental properties. A: (1) a <one>rapidly increasing surface-to-volume ratio</one> (2) <one>Quantum effects</one> leading to strong, electromagnetic field interactions
345
+ - Why can we say that <one>Feynman's influence on nanotechnology</one> was <two>rather limited</two>? Because, literally, <one>not a lot of progress happened in regards to nanotechnology for about 25 years to come, past his famous talk</one>.
346
+ - In physics: what is an <one>oscillation</one>? This is <one>any motion that repeats itself in time</one>.
347
+ - Provide a two-word name for <one>nanotubes</one>. A: <two>Nanotubes</two> are <one>cylindrical fullerenes</one>.
348
+ - When we speak of <one>functionalizizing</one> a surface, what may be meant with that? To make the surface <one>chemically receptive to a specific type of molecule or reaction</one>.
349
+ - The <one>chemical activity of a material</one> increases drastically as the particle size reaches a few nm. Give a dramatic manifestation of this as example. A: The <one>auto-ignition of fine metal powders in air</one>.
350
+ - What do we mean with the <one>Vroman effect</one>? This has to do with <one>protein adsorption</one> in a protein mixture. The <two>highest mobility proteins generally arrive first</two> but are later replaced by less motile proteins that have a <three>higher affinity for the surface</three>.
351
+ - <one>Superparamagnetic nanoparticles</one> have a diameter of, typically, ... from ... to? <one>3-15nm</one>.
352
+ - <one>Self-assembly</one> and <one>self-organization</one> on the molecular and nanoscale are not magic, nor are they similar to Lego building blocks, but ... ? Mostly <one>thermodynamics</one>, that is <two>to minimize energy</two>.
353
+ - Give an example for a <one>one-dimensional nanostructured material</one>. A: <one>Nanotubes</one>.
354
+ - Does <one>physics</one> change at the nanoscale level? Yes it does - <one>matter</one> will behave differently due to <two>quantum effects</two>.
355
+ - Give an example for <one>natural nanotoxicity</one>. A: When <one>lysosomes burst</one> → their content may be <two>toxic for the cell</two>.
356
+ - We can use a <one>spray-on coating</one> containing a photocatalyst and nanometer-sized ... particles, in order to make a pane of glass <two>self-clean</two>. A: <one>Titanium dioxide</one> (<two>TiO₂</two>).
357
+ - <one>Nanotoxicology</one> also aims to create laws and regulations that will ... do what, in general? These laws will try to <one>minimize risks from nanoparticle exposure</one>.
358
+ - What was, in <one>1995</one>, the first <three>nanotherapeutic</three>? <one>Liposomal doxorubicin</one>. URL: http://www.cancerresearchuk.org/about-cancer/cancer-in-general/treatment/cancer-drugs/drugs/liposomal-doxorubicin
359
+ - Name a <two>disadvantage</two> of an <one>unstable liposome drug delivery system</one>. A: An <one>unstable stealth liposome releases drugs while circulating</one>.
360
+ - What is a <one>Nanomaterial</one>? A nanomaterial is a material with at least <one>one dimension less than 100nm</one>, exhibiting unique properties due to its nano scale size and shape.
361
+ - We wish to create <one>polymeric nano fibers</one>. Name a method with which we could do so. A: <one>Electrospinning</one> - a <two>fiber production method</two>. URL: https://en.wikipedia.org/wiki/Electrospinning
362
+ - The first <one>'nanodrug'</one> was ... ? <one>DOXIL</one> <two>(Doxorubicin Liposomal)</two>. URL: https://en.wikipedia.org/wiki/Doxorubicin#Liposomal_form
363
+ - For a <one>physisorbed surface</one>, polymers that are used for the functionalization, often have which interesting, intrinsic feature? They contain <one>hydrophobic</one> and <one>hydrophilic parts</one>, <two>in the same polymer chain</two>.
364
+ - When we make use of any <one>vector system</one> targeting the human body, and we push this vector through the blood system, what may we have to keep in mind? That this vector, the physical object, may be <one>coated and opsonized</one>, which may lead to its <two>eventual degradation or functional exclusion</two>.
365
+ - Provide another name for <one>viral vectors</one> - a name that should also fit into nanotechnology. A: <one>Biological nanoparticles</one>.
366
+ - What do we mean with the <one>scaling theory</one> in the nanosciences? This is <one>the study of how properties change, as the size changes</one> (increases, or usually, decreases).
367
+ - Wie hat man den <one>ATP-Synthase Propeller</one> an seinen Untergrund fixiert? Mittels <one>3 schwefelhaltiger Aminosäuren</one>.
368
+ - In nanotechnology: <one>EPR</one> stands short for ... ? <one>Enhanced permeability and retention effect</one>.
369
+ - When we put a <one>naked nanoparticle</one> into the human body, what may we quickly notice that may happen to it? A <one>protein corona</one> may form, adsorbed on that nanoparticle.
370
+ - What do we mean with the term <one>biomedical payload</one> in nanotechnology and nanomedicine? This is when e. g. <one>therapeutic agents are transported</one>, such as <two>anticancer drugs</two>, <two>DNA</two>, <two>siRNA</two> oder hyperthermal/photodynamic material.
371
+ - A <one>nanocluster</one> typically contains aggregates of atoms containing between 2 and up to n atoms? Up to <one>1O⁶ atoms</one> (<two>1_000_000</two>).
372
+ - In <one>nanomedicine</one>, in <two>passive targeting</two>: why may <three>EPR effects</three> (<three>enhanced permeability and retention</three>) be considered to be useful? Because <one>this may increase the delivery of nanoparticles to cancer tumors</one>.
373
+ - Why is it important, in nanotechnology, to <one>understand surfaces</one>? Because <one>only the surface of an object is exposed to the reaction and participates in the process</one>.
374
+ - <one>Nanomenhirs</one> are like little pyramids that act as ... ? <one>Discrete sensing points</one>.
375
+ - Name <one>a disadvantage</one> of a stable stealth liposome drug delivery system. A: A stable stealth liposome <one>does not release drugs efficiently at the target location</one>.
376
+ - For <two>nanomedicine</two> we may wish <one>soneth properties</one>, but what do we mean with this? Either <one>avoiding the immune system</one>; and/or <two>achieve long circulation time</two> in the blood stream.
377
+ - What implication may be deduced when we have <one>a multivalent, weakly binding anchor design</one>? We may have to <one>use a large anchor size</one>, in order to <two>accommodate multiple interaction</two>.
378
+ - Give a fancy definition for the term <one>self-assembly</one>. A: <one>The nanostructure builds itself.</one>
379
+ - <one>Drag nanocrystals</one> are used ... why exactly? They are used in pharmaceutics to develop a new innovative formulation principle for <one>poorly soluble drugs</one>.
380
+ - The fundamental idea behind <one>spontaneous protein adsorption</one> is ... ? That <one>adsorption occurs when more energy is released than gained</one>, <two>according to Gibbs law of free energy</two>.
381
+ - What is a <one>polymer brush</one>? This is a <one>surface coating</one>, consisting of <two>polymers tethered to a surface</two>.
382
+ - What do we mean with the term <one>nanotoxicology</one>? <one>Nanotoxicology</one> refers to <two>the uncontrolled effects of exposure of the environment and humans to different nanomaterials</two>.
383
+ - The three main kinds of bonds that hold molecules together are ... ? (1) <one>ionic bonds</one> (2) <one>covalent bonds</one> (3) <one>van der Waals bonds</one>
384
+ - Name two characteristic traits of <one>nanoparticles</one>. A: (1) <one>large surface area</one> (2) <one>no inner mass</one>
385
+ - Why are <one>X-rays</one> not surface sensitive? Because the X-rays are excited mostly from <one>deep penetrating electrons</one>.
386
+ - Why may we wish to make use of <one>surface engineering nanoparticles</one>, in <three>nanomedicine</three>? <one>Surface engineered nanoparticles</one> can <two>avoid clearance by the immune system</two>.
387
+ - The <one>surface of a nano-particle</one> has... which three characteristics? (1) An <one>interface</one> (2) <one>depth</one> (3) a <one>topography</one>
388
+ - Why may we consider a <one>hydrogel</one> so useful in nanomedicine? Because <one>it can release its stored compounds (aka drugs)</one> <two>very slowly</two>.
389
+ - In terms of products and marketing, <one>nano</one> not only means small, but also ... ? <one>New</one>, aka <two>new ideas</two> and <two>new ways to make a profit</two>.
390
+ - Nanotechnology may be used in <two>nanomedicine</two>, in particular when it comes to <one>Imaging</one>. Specifically, what may we wish to improve here, in general? We may wish to improve functionality related to <one>early detection</one>.
391
+ - <one>Targeted drug delivery</one>, that is when a drug is released only at the therapeutic site (the main target of therapy), is better than traditional drugs used in modern medicine. <two>Three reasons</two> can be given as to why that is so. Which reasons speak in favour of targeted drug release? (1) Traditional drug delivery systems, such as oral ingestion, the medication is distributed throughout the body through the systemic blood circulation. Thus, for most therapeutic agents, only a small portion of the medication reaches the target organ. (2) Many drugs cause <one>severe toxic side effects</one> in other tissues, some of which may be life-threatening to the individual, such as chemotherapy for treatment of cancer. (3) If a drug is targeted only to the therapeutic site it can reach higher local concentration and therefore efficacy, while simultaneously reducing side effects in the rest of the organism.
392
+ - Are <one>nanoplasmonic sensors</one> on the same order of proteins? Yes - thus <one>we may have to</one> <two>use thicker coatings</two>.
393
+ - Was ist <one>SIMS</one>? <one>Sekundärionen-Massenspektrometrie</one> (SIMS) ist <two>eine Technik zur Analyse der Zusammensetzung von festen Oberflächen und dünnen Schichten</two>.
394
+ - What is meant with the term <one>Biocompatibility</one>? <two>Biocompatibility</two> is the <one>ability of a material to perform with an appropriate host response in a specific application</one>.
395
+ - What do we mean with <one>actuation</one> in nanotechnology? This is when we <one>input energy</one>, e. g. <two>via an antenna</two>, into the nano-object/nano-device.
396
+ - In <one>photolithography</one>, what happens? Light is focused through a lens onto a surface to <one>write</one> patterns.
397
+ - How can we define <one>nanomedicine</one>? <two>Nanomedicine</two> is <one>the use of nano-scale science, for the benefit of the patient</one>.
398
+ - Proteins may adsorp onto surfaces. Name an important <one>driving force</one> behind protein adsorption in this regard. A: The <one>surface energy</one>.
399
+ - Nanotechnology has been touted as <one>eco-friendly</one>. Why is this said? Because <one>little raw material</one> is necessary for production of nano-sized objects, and very little would be waste by such nanotech-oriented processes.
400
+ - Nanotechnology may have <one>conventional environmental contamination</one>. What is meant with this? That nanoparticles might have <two>carcinogenic properties</two> <one>similar to asbestos</one>, for instance.
401
+ - For nanomedicine applications of nano-vesicles, give an example of what we mean when we say <one>externally guided targeting</one> of vesicles. A: We can <two>use a magnet</two>, and then use <one>magnetic focusing</one> to move the delivery vehicle onto the right destination.
402
+ - Designing materials on the nanoscale allows the ... ? <one>Creation of materials with new properties</one>.
403
+ - When we talk about a <one>conjugated nanoparticle</one>: what do we mean with this? That <one>there may be</one> <two>a conjugate</two> <one>on the surface</one>.
404
+ - Can <one>gold</one> be used to <three>coat silica on a nanosensor</three>? No. This also requires us to use a so-called <one>bridge metal</one>.
405
+ - When was the term <one>nanotechnology</one> first used? In <one>1974</one>. URL: https://en.wikipedia.org/wiki/History_of_nanotechnology#Norio_Taniguchi
406
+ - <one>Self-assembly</one> in the classical sense can be defined as the spontaneous and reversible organization of units into ordered structures by ... interactions. A: By <one>noncovalent interactions</one>.
407
+ - Can <three>a protein</three> <one>become unfolded at a surface</one>? Yes - this is also called <one>conformational change</one>.
408
+ - Name a major issue in regards to <one>implantable drug delivery systems</one>. A: <one>Foreign body encapsulation</one> is a major issue, as it <two>will reduce the functionality of these systems</two>.
409
+ - Der <one>F1-Teil</one> einer ATPase ragt wohinein? Ins <one>Cytoplasma</one>.
410
+ - In Nano-Surfaces: what is <one>PLL-g-PEG</one>? This is <one>a random graft co-polymer</one>.
411
+ - In nanomedicine: name a big advantage of <one>PEGylation</one>. A: It may lead to <one>improved drug solubility</one>.
412
+ - Why is <one>the interface</one> so important for devices in the human body, from the point of view of nanobiotechnology? Because an object can only influence another object over the distance over which they interact.
413
+ - <one>Exposure</one> of humans to nanoparticles happens usually how? Through <one>digestible nanomaterials</one> put in our environment, such as in food.
414
+ - <one>Cellular responses to foreign materials</one> when implanted in vivo are guided mainly by ... ? The <one>surface characteristics</one>.
415
+ - For <one>nanodrug delivery</one>: the <two>therapeutic window</two> lies between which two extremes? (1) <one>unacceptable toxicity</one> (2) <one>poor activity</one>
416
+ - Why may we wish to make use of <one>nanoparticle contrast enhancers</one>? Nanoparticle contrast enhancers allows for <one>imaging of the destination of the drug</one>.
417
+ - The <one>implantation of biomaterials</one> almost universally leads to the device being enveloped in ... ? <one>Avascular fibrotic tissue</one> that walls off the device from the body.
418
+ - Name a slightly <one>advanced liposome drug delivery system</one>. A: The <one>thermoresponsive liposome drug delivery system</one>.
419
+ - In <one>Nanomedicine</one>: we may use different structures and different platforms. For the <two>Nanocarriers</two>, which two general strategies may we employ here? (1) <one>lipid-based nanocarriers</one> (2) <one>polymer-based nanocarriers</one>
420
+ - What does the <one>Heisenberg equation</one> state? It states that the more precisely the position of some particle is determined, the less precisely its momentum can be known, and vice versa. This is thus <one>a fundamental limit to precision</one>.
421
+ - <one>To probe a surface in nanotechnology</one> we have to interact with it. <two>What probes</two> can we use to interact with it - name three ways. A: (1) <one>chemical reactions</one> e. g. in <two>catalysis</two> (2) <one>photons</one>, such as via light (3) <one>forces</one> such as adhesion
422
+ - Is <one>a biomaterial</one> a viable substance? Not really - it is typically non-viable, e. g. when it is used in a medical device.
423
+ - In Nanotechnology we may also employ the <one>bottom-up</one> strategy, for building stuff. Give another name for this. A: <one>self-assembly</one>, or <one>molecular self-organization</one>.
424
+ - In <one>Nanotechnology</one>: we have some <three>strong anchors</three> to e. g. metal, silicon, glass or metal oxides. Give two general examples for this. A: (1) <one>Thiol</one> (to <two>metals</two>) (2) <one>Silane</one> (to <two>silicon</two> or <two>glass</two>)
425
+ - How can <one>wetting</one> be measured? By meausuring the contact angle of a bead of liquid on the given surface.
426
+ - For <one>nanomedicine delivery</one>: why are most drugs considered a problem from a delivery point of view? Because many drugs require a <one>high concentration</one>, which means delivery at high concentration or large volume; often both are required. And this can be difficult for nano-based systems.
427
+ - What does <one>fouling</one> mean? This is <one>the adhesion of a foreign material onto a surface</one>, especially so as to <two>reduce its functionality</two>.
428
+ - Wie funktioniert die Messung bei <one>SIMS</one>? Die Messung erfolgt durch <one>Sputtern der Oberfläche der Probe</one> mit einem Primärionenstrahl und dem Sammeln und der Analyse der ausgestoßenen Sekundärionen.
429
+ - We may want to put nanoparticles into a body. There are <one>three general barriers</one> to overcome. Name them. A: (1) <one>external barriers</one> (2) <one>en route barriers</one> (3) <one>cellular barriers</one>
430
+ - For a given <one>nanoparticle</one>: what is the main purpose of the spacer/linker? The spacer/linker defines the interaction of the Nanoparticle with its environment. Ideally it makes the core invisible until actuated.
431
+ - What is <one>molecular self-assembly</one>? This is <one>the spontaneous transition of initially disordered molecules</one> into <two>predictable supramolecularstructures</two>.
432
+ - Name <one>a rationale for developing nanomaterial medicine</one>. A: It will have <one>new, unique features</one>.
433
+ - Wenn wir <one>Liposomen</one> als Vektorsysteme verwenden, wieso sollten wir diese nicht zu stabil machen? Da eine zu hohe Stabilität in einer <one>ungenügenden Freisetzung</one> mündet.
434
+ - In <one>nanomedicine</one>, we may make use of <three>a stimulus-triggered drug release</three>. This may have several advantages but name just about the biggest advantage, from a pharmaceutical point of view. A: Triggered-release will <one>minimize systemic exposure</one>.
435
+ - In nanomedicine, for nanoparticles: what is <one>the holy grail</one>? <one>Nanoparticle-controlled cell uptake</one>.
436
+ - The abbreviation <one>SPION</one> refers to ... ? <one>Superparamagnetic iron oxide nanoparticle</one>.
437
+ - What is meant with the term <one>targeted drug delivery</one>? In <one>targeted drug delivery</one>, the <two>drug delivery vehicle</two> should accumulate and <three>release the drug only at the therapeutic site</three>.
438
+ - <one>Nanoparticle contrast enhancers</one> allow for imaging of ... which property involving the drug? The <one>destination</one> of the drug in a body.
439
+ - In <one>nanomedicine</one>: why may we consider <three>stealth properties</three> to be useful? Because this may help us achieve a <one>long circulation time</one>.
440
+ - Nenne einen Nachteil der <one>Lipofektion</one>. A: Die Liposomen verschmelzen mit den Membranen jeglicher Zellen.
441
+ - Name three <one>objectives for a good drug delivery system</one>. A: (1) it <one>shall carry a payload</one> (2) locate at the point of delivery (3) release the payload at a controlled rate
442
+ - <one>Which type of lithography</one> achieves the lowest nm patterning? <one>Electron beam lithography</one>.
443
+ - Materials embedded in a <two>matrix</two> are not considered <one>nanotoxic</one>. Why not? <one>Such particulates are not free to enter an organism</one>.
444
+ - In <one>nanomedicine</one>: name a goal of <three>oral delivery</three>. A: One goal is <one>to retain the drug and release it over a long time</one>.
445
+ - In <one>nanomedicine</one>: why may we wish to make use of <two>iron oxide nanoparticles</two>? These could be used as <one>a contrast agent</one> for <two>magnetic resonance imaging</two>.
446
+ - What is meant with the expression <one>biopersistent nanoparticles</one>? These are nanoparticles that <one>do not dissolve in or get cleared from a biological environment</one>.
447
+ - Name three goals for a <one>drug delivery system</one> on the nanoscale. A: (1) carry a payload (2) locate at the point of delivery (3) release the payload at a controlled rate
448
+ - Name the <one>three kinds of targeted drug delivery</one>. A: (1) <one>Passive targeted drug delivery</one> (2) <one>Active targeted drug delivery</one> (3) <one>Externally guided targeting</one>
449
+ - Give an example for <one>molecular nanotechnology</one>. A: <one>Biological machines</one>.
450
+ - In nanomedicine: what is meant with the term <one>soneth effect</one>? When the immune systeme, in particular <two>monocytes</two> and <two>macrophages</two>, can not recognize our nanoparticle at hand; e. g. because it may be <one>PEGylated</one>.
451
+ - In nanotechnology, for patterning methods: what does <one>SMAP</one> stand for? <one>Selective molecular assembly patterning</one>.
452
+ - What are <one>DNA Walkers</one>? <one>DNA walkers</one> are a class of <two>nucleic acid nanomachines</two> that exhibit directional motion along a linear track.
453
+ - The abbreviation <one>nanoSIMS</one> stands short for ... ? <one>Nanoscale secondary ion mass spectrometry</one>.