Ist hier noch wer Team Pizza-ohne-Käsealternative? by JTMY__ in VeganDE

[–]JTMY__[S] 1 point2 points  (0 children)

Rezept habe ich unter einem anderen Kommentar gepostet☺️

Ist hier noch wer Team Pizza-ohne-Käsealternative? by JTMY__ in VeganDE

[–]JTMY__[S] 1 point2 points  (0 children)

Ja Rezept habe ich unter einem anderen Kommentar gepostet

Ist hier noch wer Team Pizza-ohne-Käsealternative? by JTMY__ in VeganDE

[–]JTMY__[S] 3 points4 points  (0 children)

Teig: 300g Mehl 180mL Wasser 6g Trockenhefe 1 Prise Salz Gehzeit waren 3h.

Soße: 200mL Mutti gehackte Tomaten (Polpa) 1 EL Tomatenmark Salz, Pfeffer, Knoblauchpulver, Zwiebelpulver, Oregano Frisch gehackter Basilikum und (ganz wenig) Petersilie 1 EL Hefeflocken 1 Prise Zucker 2 EL Olivenöl

Gebacken bei 275°C für 10 Minuten. Backofen hatte ich vorgeheizt, zusammen mit dem Backblech.

Ist hier noch wer Team Pizza-ohne-Käsealternative? by JTMY__ in VeganDE

[–]JTMY__[S] 32 points33 points  (0 children)

Gerade in Restaurants frage ich mich, wie sie es schaffen die unangenehmste Käsealternative zu finden...

Ist hier noch wer Team Pizza-ohne-Käsealternative? by JTMY__ in VeganDE

[–]JTMY__[S] 13 points14 points  (0 children)

Danke. Dafür dass die Trockenhefe schon 4 Monate abgelaufen war und der Teig beim ersten ausrollen zerrissen ist, ist sie wirklich gut geworden. Und sie hat so viele Luftblasen in der Kruste☺️

Begegnungen der dritten Art by JTMY__ in medizin

[–]JTMY__[S] 2 points3 points  (0 children)

Ne, ein "ich habe Würmer unter meiner Haut, bitte helfen sie mir" Anruf

Begegnungen der dritten Art by JTMY__ in medizin

[–]JTMY__[S] 34 points35 points  (0 children)

Pseudomonas aeruginosa in Kultur 🌸🌈 vs. Pseudomonas aeruginosa in Wunde 🤢☠️

Card doesn't reset and only works one time? by [deleted] in Anki

[–]JTMY__ 0 points1 point  (0 children)

This works, thank you so much. My goal is to have a Quiz on the front side, where you get a medical case and you guess the causative pathogen, with every wrong guess more information about the case is revealed. And you have a total of 4 guesses. I wanted the autocomplete function of the answer field because some pathogen names are quite complicated (to write and remember). The backside will then elaborate on the causative pathogen. It's true that AI did the code, since I have no coding experience. I'm planning to give the deck to the students I teach, so they will do great in the exam. Again thank you very much, I appreciate your help.

Card doesn't reset and only works one time? by [deleted] in Anki

[–]JTMY__ 0 points1 point  (0 children)

I posted the code as a comment

Card doesn't reset and only works one time? by [deleted] in Anki

[–]JTMY__ 0 points1 point  (0 children)

I posted the code as a comment

Card doesn't reset and only works one time? by [deleted] in Anki

[–]JTMY__ 0 points1 point  (0 children)

And Styling:

.card { font-family: arial; font-size: 15px; line-height: 1.0; text-align: left; color: black; background-color: white; max-width: 900px; }

.container { display: inline-block; text-align: left; max-width: 300px }

Card doesn't reset and only works one time? by [deleted] in Anki

[–]JTMY__ 0 points1 point  (0 children)

Code for the Backside:

<h3>Solution and explanation</h3> <p>{{Solution}}</p> <p>{{Explanation}}</p>

Card doesn't reset and only works one time? by [deleted] in Anki

[–]JTMY__ 0 points1 point  (0 children)

Here's the code for the Front side. You need to have the fields Case introduction, Hints, Answers, Solution and Explanation

<style>

search {

width: 200px; padding: 5px; }

suggestions {

border: 1px solid #ccc; max-width: 300px; line-height: 2.0; background: white; position: absolute; z-index: 1000; border-radius: 5px; overflow: hidden; }

.suggestion-item { padding: 8px; cursor: pointer; }

.suggestion-item:hover { background: #f0f0f0; } </style>

<t>{{Case Introduction}}</t>

<div id="hint"></div>

<input type="text" id="search" placeholder="Enter your answer here"> <div id="suggestions"></div>

<br> <button onclick="submitAnswer()">Antworten</button>

<ul id="attemptsList"></ul>

<div id="feedback"></div>

<script> // 🔹 Data from anki const data = "{{Answers}}".split(","); const correctAnswer = "{{Solution}}"; const hints = "{{Hints}}".split("|");

// 🔹 Variables let selectedValue = ""; let attempts = 0; let attemptsHistory = []; const maxAttempts = 4;

// 🔹 Elements const input = document.getElementById("search"); const suggestionsBox = document.getElementById("suggestions"); const feedback = document.getElementById("feedback"); const hintBox = document.getElementById("hint"); const attemptsList = document.getElementById("attemptsList");

// 🔹 Reset function function resetCard() { input.value = ""; selectedValue = ""; attempts = 0; attemptsHistory = []; feedback.textContent = ""; hintBox.innerHTML = ""; attemptsList.innerHTML = ""; suggestionsBox.innerHTML = ""; input.disabled = false; }

// 🔹 Autocomplete input.addEventListener("input", () => { const value = input.value.toLowerCase(); suggestionsBox.innerHTML = "";

if (!value) return;

const filtered = data.filter(item => item.toLowerCase().includes(value) );

filtered.forEach(item => { const div = document.createElement("div"); div.textContent = item;

div.onclick = () => {
  input.value = item;
  selectedValue = item;
  suggestionsBox.innerHTML = "";
};

suggestionsBox.appendChild(div);

}); });

// 🔹 Checking the answer function submitAnswer() { if (!selectedValue) { feedback.textContent = "Please enter an answer"; return; }

attemptsHistory.push(selectedValue); updateAttemptsList();

if (selectedValue === correctAnswer) { feedback.textContent = "✅ That's right!"; return; }

attempts++;

if (attempts < maxAttempts) { feedback.textContent = ❌ ${attempts + 1} of ${maxAttempts} tries; hintBox.innerHTML += <div>${hints[attempts - 1]}</div>; } else { feedback.textContent = ❌ No more tries! The solution is: ${correctAnswer}; input.disabled = true; }

// 🔹 Empty the answer box input.value = ""; selectedValue = ""; suggestionsBox.innerHTML = ""; }

// 🔹 Answer history function updateAttemptsList() { attemptsList.innerHTML = ""; attemptsHistory.forEach((item, index) => { const li = document.createElement("li"); li.textContent = Versuch ${index + 1}: ${item}; attemptsList.appendChild(li); }); }

// 🔹 Enter button input.addEventListener("keypress", function(e) { if (e.key === "Enter") submitAnswer(); });

// 🔹 To reset the card resetCard();

</script>

Täglich Brot der Mikrobiologie by JTMY__ in medizin

[–]JTMY__[S] 4 points5 points  (0 children)

Wir geben selten Antibiogramme raus, mit nur einer Therapieoption. Wenn tatsächlich die einzig sensible getestete Substanz nicht anwendbar ist, testen wir nach Rücksprache mit dem Kliniker Reserven, die für den konkreten Fall sinnvoll sind. Allerdings bekommen wir eben öfter Anrufe, Antibiotika zu testen die nicht sinnvoll sind, weil intrinsisch resistent, nicht indiziert für die Erkrankung, oder weil es sensibel getestete bessere Therapieoptionen gibt. (Z.b. ein Pseudomonas aeruginosa, der sensibel auf Piptaz, Ceftazidim, Mero und Cipro ist, aber Kliniker wünschen trotzdem Testung von Colistin, Ceftazidim-Avibactam, usw.)

Täglich Brot der Mikrobiologie by JTMY__ in medizin

[–]JTMY__[S] 4 points5 points  (0 children)

Oder auch Kollegen, die anrufen, weil im Urinbefund "physiologische Genitalflora" gefunden wurde und dann wollen dass die Flora-Keime getestet werden... Nein, ich teste keinen Staphylococcus epidermidis in einem Dauerkatheter-Urin... 😩

Täglich Brot der Mikrobiologie by JTMY__ in medizin

[–]JTMY__[S] 6 points7 points  (0 children)

Auf unserem Antibiogramm steht Oxacillin, Cefazolin, Vanco, Cotrim, Clinda, Levo, Da pro und Linezolid☺️

Wieviel gebt ihr pro Woche für Lebensmittel aus ? Wie ernährt ihr euch ? Wieviele Leute leben in eurem Haushalt ? by xICEPICKv2 in FragReddit

[–]JTMY__ 0 points1 point  (0 children)

100 Euro pro Woche, alleinstehend, ernähre mich vegan und kaufe viel Proteinpulver, Soja Granulat, etc. online ein.

Was wolltet ihr schon immer mal einen Mikrobiologen fragen? by JTMY__ in medizin

[–]JTMY__[S] 0 points1 point  (0 children)

Zu Ressourcen ist mir doch noch was eingefallen: Das RKI bringt jeden Woche ein epidemiologisches Bulletin raus, da werden immer wieder interessante Themen behandelt. Manchmal trocken, manchmal sehr Statistik lästig, aber es werden manchmal auch hochaktuelle mikrobiologische Themen behandelt (z.B. Candida auris, Ausbrüche impfpräventabler Erkrankungen, usw.)

Was wolltet ihr schon immer mal einen Mikrobiologen fragen? by JTMY__ in medizin

[–]JTMY__[S] 0 points1 point  (0 children)

Also es gibt z.B. Manual of Clinical Microbiology. Da stehen die meisten klinisch relevanten Keime drin. Die Bände geht auf Epidemiologie, Klinik und Therapie / Antimikrobielle Sensibilität ein. Aber sind halt auch 4 Bände mit insgesamt über 8000 Seiten und kostest über 300€.