<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Friedrich-Ludwig-Jahn-Museum</title>
	<atom:link href="https://jahn-museum.de/en/feed/" rel="self" type="application/rss+xml" />
	<link>https://jahn-museum.de/en</link>
	<description></description>
	<lastbuilddate>Sat, 18 Apr 2026 11:25:37 +0000</lastbuilddate>
	<language>en-US</language>
	<sy:updateperiod>
	hourly	</sy:updateperiod>
	<sy:updatefrequency>
	1	</sy:updatefrequency>
	<generator>https://wordpress.org/?v=6.7.5</generator>
	<item>
		<title>React-Charty: Fast Setup &#038; Examples for Interactive Charts</title>
		<link>https://jahn-museum.de/en/react-charty-fast-setup-examples-for-interactive-charts/</link>
		
		<dc:creator><![CDATA[webartisan]]></dc:creator>
		<pubdate>Thu, 02 Apr 2026 19:00:27 +0000</pubdate>
				<category><![CDATA[Allgemein]]></category>
		<guid ispermalink="false">https://jahn-museum.de/?p=2795</guid>

					<description><![CDATA[React-Charty: Fast Setup &#038; Examples for Interactive Charts React-Charty: Fast Setup &#038; Examples for Interactive Charts A compact, practical guide to react-charty installation, setup, line/bar/pie examples, customization, and dashboard patterns for React data visualization. What is react-charty and why use it? react-charty is a React-first chart library focused on easy integration, sensible defaults, and interactive [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><!doctype html><br />
<html lang="en"><br />
<head><br />
  <meta charset="utf-8" /><br />
  <meta name="viewport" content="width=device-width,initial-scale=1" /><br />
  <title>React-Charty: Fast Setup &#038; Examples for Interactive Charts</title><br />
  <meta name="description" content="Learn react-charty installation, setup, and examples—line, bar, pie charts, customization, and dashboard patterns for React data visualization." />
  <link rel="canonical" href="https://example.com/react-charty-guide" />
  <!-- Article structured data --><br />
  <script type="application/ld+json">
  {
    "@context": "https://schema.org",
    "@type": "Article",
    "headline": "React-Charty: Fast Setup & Examples for Interactive Charts",
    "description": "Learn react-charty installation, setup, and examples—line, bar, pie charts, customization, and dashboard patterns for React data visualization.",
    "author": {
      "@type": "Person",
      "name": "StackForge Dev (compiled guide)"
    },
    "mainEntityOfPage": {
      "@type": "WebPage",
      "@id": "https://example.com/react-charty-guide"
    }
  }
  </script><br />
  <!-- FAQ structured data (populated with the three selected Qs below) --><br />
  <script type="application/ld+json">
  {
    "@context": "https://schema.org",
    "@type": "FAQPage",
    "mainEntity": [
      {
        "@type": "Question",
        "name": "How do I install and set up react-charty in a new React project?",
        "acceptedAnswer": {
          "@type": "Answer",
          "text": "Install via npm or yarn, import the components, and render charts with simple props. Use npm i react-charty (or yarn add react-charty), then import { Line, Bar, Pie } from 'react-charty' and provide data and options."
        }
      },
      {
        "@type": "Question",
        "name": "Can react-charty handle live or streaming data for dashboards?",
        "acceptedAnswer": {
          "@type": "Answer",
          "text": "Yes. Update the data props or state that feeds react-charty components; use memoization and throttling to limit re-renders. For heavy streams, batch updates and use requestAnimationFrame or a worker for transforms."
        }
      },
      {
        "@type": "Question",
        "name": "What customization options and interactions does react-charty support?",
        "acceptedAnswer": {
          "@type": "Answer",
          "text": "react-charty supports color schemas, custom tooltips, click/hover events, animations, and responsive layouts. Most props accept functions for per-point customization and event handlers for interactivity."
        }
      }
    ]
  }
  </script></p>
<style>
    body {font-family: system-ui, -apple-system,Segoe UI, Roboto, "Helvetica Neue", Arial; line-height:1.6; color:#121212; padding:28px; max-width:900px; margin:0 auto;}
    h1,h2 {color:#0f1724;}
    pre {background:#0b1220; color:#d6deff; padding:12px; border-radius:6px; overflow:auto;}
    code {font-family: SFMono-Regular, Menlo, Monaco, "Roboto Mono", monospace; font-size:0.95em;}
    a {color:#0066cc; text-decoration:none;}
    a:hover {text-decoration:underline;}
    .meta {font-size:0.9em;color:#4b5563;margin-bottom:12px;}
    .highlight {background:#fff3cd;padding:2px 6px;border-radius:4px;}
    .semantic-core {font-family:inherit; font-size:0.95em; background:#f3f4f6;padding:12px;border-radius:6px;margin-top:22px;}
    .backlinks {margin-top:12px;}
  </style>
<p></head><br />
<body></p>
<article>
<header>
<h1>React-Charty: Fast Setup &#038; Examples for Interactive Charts</h1>
<p class="meta">A compact, practical guide to react-charty installation, setup, line/bar/pie examples, customization, and dashboard patterns for React data visualization.</p>
</header>
<section>
<h2>What is react-charty and why use it?</h2>
<p>react-charty is a React-first chart library focused on easy integration, sensible defaults, and interactive data visualization components. It provides composable chart components (Line, Bar, Pie, etc.) that accept declarative data and options so you can treat charts like any other React component.</p>
<p>Pick react-charty when you want rapid prototyping, approachable APIs, and built-in interactivity (tooltips, hover/click handlers) without wiring an imperative chart instance. It fits well in dashboards, admin panels, and reporting UI where React state flows drive updates.</p>
<p>Compared to heavier visualization frameworks, react-charty emphasizes developer ergonomics: concise props, per-point customization via functions, and straightforward responsive behavior. That makes it a solid choice for teams shipping quickly while retaining polish.</p>
</section>
<section>
<h2>Getting started — installation and setup</h2>
<p>Start with an app scaffolded by Create React App, Vite, or Next.js. Then install the package with your preferred package manager. The install step is short and rarely causes friction:</p>
<ul>
<li><code>npm install react-charty</code> or <code>yarn add react-charty</code></li>
</ul>
<p>After installation, import the components you need. react-charty exposes components like <code>Line</code>, <code>Bar</code>, and <code>Pie</code>. Example import:</p>
<pre><code>import React from 'react';
import { Line } from 'react-charty';

function App(){ 
  const data = { labels: ['Jan','Feb','Mar'], datasets: [{ label:'Revenue', data:[120,200,150] }] };
  return &lt;Line data={data} /&gt;
}
</code></pre>
<p>For a hands-on walkthrough, see the community react-charty tutorial that demonstrates interactive charts and event handling: <a href="https://dev.to/stackforgedev/building-interactive-charts-with-react-charty-5f35" target="_blank" rel="noopener">react-charty tutorial</a>. If you want the package listing, check the npm entry: <a href="https://www.npmjs.com/package/react-charty" target="_blank" rel="noopener">react-charty installation</a>.</p>
</section>
<section>
<h2>Quick example — a React line chart</h2>
<p>A line chart is usually the first visualization you build. Provide labeled x-values (labels) and one or more datasets. react-charty expects a data object and an options object; both are serializable and easy to update from state or props.</p>
<pre><code>import React, { useState, useEffect } from 'react';
import { Line } from 'react-charty';

export default function SalesTrend(){
  const [data, setData] = useState({
    labels: ['W1','W2','W3','W4'],
    datasets: [{ label: 'Sales', data: [24, 30, 28, 40], color: '#3b82f6' }]
  });

  // simulate new data
  useEffect(()=> {
    const t = setTimeout(()=> setData(d=>({
      ...d, datasets:[{ ...d.datasets[0], data: d.datasets[0].data.map(v => v + Math.round(Math.random()*6)) }]
    })), 3000);
    return ()=> clearTimeout(t);
  }, []);

  return &lt;Line data={data} options={{ smooth: true, tooltip: { position: 'nearest' } }} /&gt;;
}
</code></pre>
<p>This component updates reactively when your state changes—useful for live dashboards. Note how dataset-level color and chart options give you immediate control over presentation.</p>
<p>Keep updates efficient: batch state updates, memoize computed datasets, and avoid re-creating option objects inline every render to prevent unnecessary re-renders.</p>
</section>
<section>
<h2>Bar and pie charts — differences and usage</h2>
<p>Bar charts are ideal for categorical comparisons. Provide categories as labels and numeric arrays for datasets; stacked bars or grouped bars are available via dataset options. Pie charts, on the other hand, model proportional distributions with a single dataset whose data entries correspond to slices.</p>
<p>Example usage is similar across components: import the component then pass data and options. Here’s a compact example (Bar + Pie) pattern:</p>
<pre><code>import { Bar, Pie } from 'react-charty';

const barData = { labels:['A','B','C'], datasets:[{ data:[40,25,35], color:'#10b981' }] };
const pieData = { labels:['X','Y','Z'], datasets:[{ data:[50,30,20], colors:['#ef4444','#f59e0b','#6366f1'] }] };

/* render &lt;Bar data={barData} /&gt; and &lt;Pie data={pieData} /&gt; in your layout */
</code></pre>
<p>Customize bar width, spacing, and pie label placement through options. If you need labels inside slices for small screens, toggle smartLabel or use the legend callback. These micro-controls avoid crowded visuals on dashboards.</p>
</section>
<section>
<h2>Customization, interactivity, and accessibility</h2>
<p>react-charty exposes per-point and per-dataset customization via functions. Pass a function to color or tooltip content to compute styles dynamically: for example, color bars red when a value is below threshold. This functional API is powerful for data-driven styling.</p>
<p>Interactivity: you get hover and click handlers, custom tooltips, and keyboard focus support (where implemented). Attach event handlers to capture dataset and index and drive application logic—open details, filter other charts, or drill into a row. For accessible charts, provide ARIA labels, summaries, and textual alternatives; include numeric tables for screen readers where appropriate.</p>
<p>Animation and responsiveness are typically controlled via an options object. Toggle animations off for large data sets to improve performance. Prefer translate/opacity animations over layout changes for smoother frames on low-power devices.</p>
</section>
<section>
<h2>Building dashboards with react-charty</h2>
<p>Compose multiple chart components inside responsive grid cells. Keep chart components pure: derive their data from higher-level state (Redux, Context, or parent local state) and pass only the minimal data slice they need. This keeps updates predictable and debuggable.</p>
<p>For streaming or live dashboards, throttle updates and apply windowing on arrays (e.g., keep only the last N points). Use useMemo and React.memo to avoid re-rendering static charts when unrelated state changes. When charts are many and complex, consider virtualizing the dashboard or lazy-loading heavy charts.</p>
<p>Reactivity patterns: coordinate charts via a central time range filter instead of pushing events across components. That reduces coupling and improves performance when scaling dashboards.</p>
</section>
<section>
<h2>Performance tips and common troubleshooting</h2>
<p>If charts lag during updates, first check how often you supply a new data object. Recreating data/options inline each render forces child reconciliation. Memoize data and options with useMemo and stabilize callback handlers with useCallback.</p>
<p>Large datasets: sample or aggregate client-side before rendering. For thousands of points, consider downsampling to the viewport resolution or use Web Workers for preprocessing. Some charts support canvas rendering modes — prefer those for dense time series.</p>
<p>Common errors: missing labels (make sure labels length matches dataset points), palette not applying (use allowed color keys or functions), and server-side rendering issues (guard window/document usage). Check the library docs or community examples when in doubt.</p>
</section>
<section>
<h2>Advanced: customizing tooltips and event handlers</h2>
<p>Custom tooltips are a frequent requirement. react-charty allows tooltip render callbacks so you can render HTML or React nodes. Keep tooltip rendering lightweight; heavy components can slow hover interactions. Use a shared tooltip component if multiple charts share the same design.</p>
<p>Event handlers receive contextual payloads (dataset index, item index, raw event). Use them to implement drilldowns, cross-filtering, or context menus. Debounce click handlers if they trigger network requests or expensive computations.</p>
<p>For mobile, prefer tap-based interactions and ensure touch targets meet accessibility sizing guidelines. Test keyboard navigation and announce focused points via ARIA live regions if your charts are interactive for assistive tech users.</p>
</section>
<section>
<h2>SEO and voice-search optimization for chart pages</h2>
<p>If your page presents charts that answer user queries (e.g., &#8222;monthly revenue trend&#8220;), add a clear text summary above or below the chart with the key insight (e.g., &#8222;Revenue up 25% month-over-month&#8220;). That text is indexable and increases the chance of a featured snippet.</p>
<p>For voice search, use concise Q&#038;A sections and include natural language phrases users speak: &#8222;Show last month&#8217;s sales trend&#8220; or &#8222;What product has the highest share this quarter?&#8220; These map well to intent-based queries and improve discoverability.</p>
<p>Consider Article and FAQ micro-markup (JSON-LD) so search engines better understand the content type. This guide includes example FAQ structured data for three key user questions to help rich results.</p>
</section>
<section>
<h2>FAQ</h2>
<h3>How do I install and set up react-charty in a new React project?</h3>
<p>Install with <code>npm i react-charty</code> or <code>yarn add react-charty</code>. Import the component(s) you need: <code>import { Line, Bar, Pie } from 'react-charty'</code>. Provide chart <code>data</code> and optional <code>options</code> props; keep data objects memoized to avoid unnecessary re-renders.</p>
<h3>Can react-charty handle live or streaming data for dashboards?</h3>
<p>Yes. Update the chart data via state changes and throttle or batch updates for performance. For heavy streams, aggregate or window data client-side and use memoization; consider requestAnimationFrame or workers for preprocessing.</p>
<h3>What customization options and interactions does react-charty support?</h3>
<p>It supports color schemes, per-point functions, custom tooltips, hover/click events, animations, and responsive layouts. Use functional props for data-driven styling and attach event handlers to implement interactivity like drilldowns or cross-filtering.</p>
</section>
<footer>
<p class="backlinks">Further reading and resources:<br />
      <a href="https://dev.to/stackforgedev/building-interactive-charts-with-react-charty-5f35" target="_blank" rel="noopener">react-charty tutorial</a>,<br />
      <a href="https://www.npmjs.com/package/react-charty" target="_blank" rel="noopener">react-charty installation</a>,<br />
      <a href="https://reactjs.org" target="_blank" rel="noopener">React chart library</a>.
    </p>
<div class="semantic-core">
      <strong>Semantic core (primary, secondary, clarifying clusters)</strong></p>
<ul>
<li><strong>Primary:</strong> react-charty, React Charty, react-charty tutorial, react-charty installation, react-charty setup, react-charty example</li>
<li><strong>Secondary:</strong> React chart library, React data visualization, React line chart, React bar chart, React pie chart, react-charty dashboard, React chart component</li>
<li><strong>Clarifying / LSI &#038; long-tail:</strong> react-charty customization, react-charty getting started, react-charty example with live data, react-charty vs react-chartjs-2, how to customize tooltips react-charty, react-charty performance tips</li>
</ul>
<p>Use these phrases naturally across headings and body to improve relevance; avoid keyword stuffing. For voice-search, include question-like phrases (e.g., &#8222;How to install react-charty?&#8220;).</p>
</p></div>
</footer>
</article>
<p></body><br />
</html><!--wp-post-gim--></p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Ausstellung „Wege zum Frieden. Kriegsfolgen und Friedensprozesse“ in der Jahn-Ehrenhalle in Freyburg ab 19. März 2026</title>
		<link>https://jahn-museum.de/en/ausstellung-wege-zum-frieden-kriegsfolgen-und-friedensprozesse-in-der-jahn-ehrenhalle-in-freyburg-ab-19-maerz-2026/</link>
		
		<dc:creator><![CDATA[Henkel]]></dc:creator>
		<pubdate>Tue, 10 Mar 2026 07:24:11 +0000</pubdate>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Jahn-Museum]]></category>
		<category><![CDATA[Veranstaltung]]></category>
		<guid ispermalink="false">https://jahn-museum.de/?p=2753</guid>

					<description><![CDATA[Die Friedrich-Ludwig-Jahn-Gesellschaft e. V. und der Volksbund Deutsche Kriegsgräberfürsorge e. V. zeigen ab dem 19. März 2026 die Ausstellung „Wege zum Frieden. Kriegsfolgen und Friedensprozesse“ in der Jahn-Ehrenhalle in Freyburg (Unstrut). Anlass ist der Tag der Demokratiegeschichte, der am 18. März 2026 erstmals bundesweit unter der Schirmherrschaft von Bundespräsident Frank-Walter Steinmeier stattfindet. Mit der Ausstellung [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img decoding="async" src="https://jahn-museum.de/wp-content/uploads/2026/03/Plakat_Ausstellung_Wege-zum-Frieden_Freyburg_web.jpg" /></p>
<p>Die Friedrich-Ludwig-Jahn-Gesellschaft e. V. und der Volksbund Deutsche Kriegsgräberfürsorge e. V. zeigen ab dem 19. März 2026 die <strong>Ausstellung „Wege zum Frieden. Kriegsfolgen und Friedensprozesse“</strong> in der Jahn-Ehrenhalle in Freyburg (Unstrut).<br />
Anlass ist der <strong>Tag der Demokratiegeschichte</strong>, der am <strong>18. März 2026</strong> erstmals bundesweit unter der Schirmherrschaft von Bundespräsident <strong>Frank-Walter Steinmeier</strong> stattfindet. Mit der Ausstellung folgt das Jahn-Museum dem Aufruf des Bundespräsidenten an die Orte der Demokratiegeschichte, sich an diesem Tag mit eigenen Veranstaltungen zu beteiligen.<br />
Weitere Informationen unter: <a href="https://www.demokratie-geschichte.de/index.php/12842/18-maerz-tag-der-demokratiegeschichte-2026/">https://www.demokratie-geschichte.de/index.php/12842/18-maerz-tag-der-demokratiegeschichte-2026/</a><br />
Seit 2019 ist das <strong>Friedrich Ludwig Jahn Museum</strong> in Freyburg (Unstrut) Teil der Initiative „<strong>Places of the history of democracy</strong>“. In dieser Funktion versteht sich das Museum nicht nur als Erinnerungsort an eine historische Persönlichkeit, sondern auch als Forum für die Auseinandersetzung mit demokratischen Entwicklungen, Brüchen und Herausforderungen. Demokratiegeschichte ist eng mit Fragen von Krieg, Gewalt, Friedensschlüssen und gesellschaftlicher Neuordnung verbunden – sie ist zugleich eine Geschichte des Ringens um Freiheit, Mitbestimmung und Rechtsstaatlichkeit.<br />
Die vom <strong>Volksbund Deutsche Kriegsgräberfürsorge e. V.</strong> entwickelte Wanderausstellung greift diese Zusammenhänge auf. Angesichts zunehmender Instabilität und kriegerischer Konflikte in Europa und weltweit beleuchtet sie historische und aktuelle Friedensprozesse. Sie zeigt, welche Schritte, Voraussetzungen und gesellschaftlichen Kräfte notwendig sind, um aus Konflikten tragfähige Friedensordnungen zu entwickeln. Damit knüpft sie unmittelbar an die demokratiegeschichtliche Arbeit des Jahn-Museums an.<br />
Als partizipativer Bestandteil der Veranstaltung findet am 18. März ein <strong>Peace-Monument-Workshop</strong> mit Schülerinnen und Schülern der <strong>Friedrich-Ludwig-Jahn-Sekundarschule</strong> Freyburg statt. Dabei gestalten die Jugendlichen sogenannte „Friedenskacheln“, die anschließend im Rahmen der Ausstellung präsentiert werden.<br />
Ergänzt wird die Ausstellung durch sechs Tafeln aus der 2013 im Leipziger Stadtgeschichtlichen Museum gezeigten Ausstellung „<strong>Der weite Sprung. Die Sportlegenden Luz Long und Jesse Owens</strong>“. Sie thematisiert eine der bekanntesten Sportfreundschaften der Geschichte: die Begegnung des Deutschen Luz Long und des amerikanischen Athleten Jesse Owens bei den Olympischen Spielen 1936 in Berlin. In einer Zeit nationalsozialistischer Rassenideologie setzte Long mit seiner Fairness gegenüber Owens ein Zeichen für Menschlichkeit und sportliche Integrität. Long fiel 1943 im Krieg auf Sizilien.<br />
Damit rückt zugleich die friedenstiftende Kraft des Sports in den Blick. Sportliche Begegnungen ermöglichen Verständigung über politische und kulturelle Grenzen hinweg und fördern Werte wie Fairness, Respekt und gegenseitige Anerkennung – Ideen die bis zu den Ursprüngen der von <strong>Friedrich Ludwig Jahn</strong> begründeten Turnbewegung zurückreichen und aufzeigen, dass Sport bis heute ein Beitrag zum Frieden leisten kann.</p>
<p>Die Ausstellung ist <strong>vom 19. März bis voraussichtlich 9. Mai 2026</strong> zu sehen.</p>
<p><strong>Ort</strong>: <img fetchpriority="high" decoding="async" class="alignnone size-medium wp-image-2701" src="https://jahn-museum.de/wp-content/uploads/2025/12/Ehrenhalle_977x651-300x200.jpg" alt="" width="300" height="200" srcset="https://jahn-museum.de/wp-content/uploads/2025/12/Ehrenhalle_977x651-300x200.jpg 300w, https://jahn-museum.de/wp-content/uploads/2025/12/Ehrenhalle_977x651-768x512.jpg 768w, https://jahn-museum.de/wp-content/uploads/2025/12/Ehrenhalle_977x651-18x12.jpg 18w, https://jahn-museum.de/wp-content/uploads/2025/12/Ehrenhalle_977x651-425x283.jpg 425w, https://jahn-museum.de/wp-content/uploads/2025/12/Ehrenhalle_977x651-600x400.jpg 600w, https://jahn-museum.de/wp-content/uploads/2025/12/Ehrenhalle_977x651.jpg 977w" sizes="(max-width: 300px) 100vw, 300px" /><br />
Jahn-Ehrenhalle<br />
Schützenstraße 17<br />
06632 Freyburg (Unstrut)</p>
<p><strong>Opening hours</strong>:<br />
Donnerstag und Freitag jeweils 10–16 Uhr<br />
sowie jeden zweiten Samstag (21.03.; 04.04.; 18.04.; 02.05.; 09.05.) von 10–16 Uhr</p>
<p>Der Eintritt ist frei. Spenden zugunsten der neuen Dauerausstellung im Jahn-Museum sowie für den Volksbund Deutsche Kriegsgräberfürsorge e. V. sind willkommen.</p>
<p>Die Ausstellung ist dem im Januar unerwartet verstorbenen Landtagsabgeordneten <strong>Rüdiger Erben (1967–2026)</strong> gewidmet. Als Landesvorsitzender des Volksbundes Deutsche Kriegsgräberfürsorge e. V. und langjähriger Unterstützer des Jahn-Museums hatte er die Ausstellung in der Jahn-Ehrenhalle anlässlich des Tages der Demokratiegeschichte initiiert.</p>
<p><a href="https://jahn-museum.de/wp-content/uploads/2026/03/PM_Ausstellung_Frieden_VDK-FLJG.pdf">Pressemitteilung als pdf zum Download</a></p>
<p><a href="https://jahn-museum.de/wp-content/uploads/2026/03/Plakat_Ausstellung_Wege-zum-Frieden_Freyburg_web.pdf">Ausstellungsplakat als pdf zum Download</a></p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Beneﬁz-Museumsﬂohmarkt im Jahn-Museum</title>
		<link>https://jahn-museum.de/en/bene%ef%ac%81z-museums%ef%ac%82ohmarkt-im-jahn-museum/</link>
		
		<dc:creator><![CDATA[Henkel]]></dc:creator>
		<pubdate>Tue, 30 Sep 2025 20:07:41 +0000</pubdate>
				<category><![CDATA[Jahn-Gesellschaft]]></category>
		<category><![CDATA[Jahn-Museum]]></category>
		<category><![CDATA[Veranstaltung]]></category>
		<guid ispermalink="false">https://jahn-museum.de/?p=2668</guid>

					<description><![CDATA[Am Reformationstag (Freitag, den 31.10.2025) veranstaltet das Jahn-Museum in Freyburg zwischen 10-16 Uhr einen Beneﬁzﬂohmarkt. Im Museumsgarten können Besucher nach Herzenslust stöbern, handeln und besondere Schätze entdecken. Auch Ausrangiertes aus dem Inventarbestand des Museums (u. a. Weihnachtsdeko) wird angeboten. Das Jahn-Museum lädt herzlich zum Mitmachen ein! Die Standgebühr (pro Stand 12,-€ + freiwillige Spende) geht [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Am <strong>Reformationstag (Freitag, den 31.10.2025)</strong> veranstaltet das Jahn-Museum in Freyburg zwischen 10-16 Uhr einen <strong>Beneﬁzﬂohmarkt.</strong> Im Museumsgarten können<br />
Besucher nach Herzenslust stöbern, handeln und besondere Schätze entdecken. Auch Ausrangiertes aus dem Inventarbestand des Museums (u. a. Weihnachtsdeko) wird<br />
angeboten.<br />
Das Jahn-Museum lädt herzlich zum Mitmachen ein! Die Standgebühr (pro Stand 12,-€ + freiwillige Spende) geht zugunsten der Jahn-Gesellschaft e. V. Mit den<br />
Spendeneinnahmen werden dringend benötigte Gelder für die Auslagerung und den Umzug des Museums in Vorbereitung auf die Sanierung gesammelt. Ab Januar 2026 wird<br />
das Jahn-Museum für eine Generalsanierung geschlossen. Während dieser Zeit wird eine Interimsausstellung in der Jahn-Ehrenhalle eingerichtet. Alle Bürgerinnen und<br />
Bürger aus Freyburg und der Region sind herzlich eingeladen sich zu beteiligen oder als Besucher nach Herzenslust zu stöbern.</p>
<p>Der Eintritt zum Flohmarkt und in das Museum ist an diesem Tag frei. Um Spenden wird gebeten. Anmeldungen bis 24.10.2025 per Mail an info@jahn-museum.de oder<br />
telefonisch unter: 034464/27426. Der Standaufbau startet ab 8.00 Uhr. Tische sind in begrenztem Rahmen vorhanden. Das Mitbringen eigener Tische wird empfohlen. Bei<br />
Schlechtwettervorhersage ﬁndet der Flohmarkt in der Ehrenhalle am Schützenplatz statt.</p>
<p>Wann: Freitag 31.10.2025, 10-16 Uhr</p>
<p>Where: Friedrich-Ludwig-Jahn-Museum Freyburg, Schloßstraße 11, 06632 Freyburg</p>
<p><a href="https://jahn-museum.de/wp-content/uploads/2025/10/Flyer_Flohmarkt_Jahn-Museum.jpg"><strong>Flyer Museums-Flohmarkt zum Download (jpg)</strong></a></p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>MacBook Microphone Not Working? Quick Fixes &#038; Advanced Troubleshooting</title>
		<link>https://jahn-museum.de/en/macbook-microphone-not-working-quick-fixes-advanced-troubleshooting/</link>
		
		<dc:creator><![CDATA[webartisan]]></dc:creator>
		<pubdate>Wed, 23 Jul 2025 17:52:47 +0000</pubdate>
				<category><![CDATA[Allgemein]]></category>
		<guid ispermalink="false">https://jahn-museum.de/?p=2785</guid>

					<description><![CDATA[MacBook Microphone Not Working? Quick Fixes &#038; Advanced Troubleshooting MacBook Microphone Not Working? Quick Fixes &#038; Advanced Troubleshooting Fast, practical troubleshooting for &#8222;macbook microphone not working&#8220;, &#8222;macbook mic not working&#8220; and &#8222;mic not working on macbook&#8220; — from quick resets to hardware diagnostics. If your MacBook or MacBook Pro microphone stopped picking up sound — [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><!doctype html><br />
<html lang="en"><br />
<head><br />
  <meta charset="utf-8"><br />
  <title>MacBook Microphone Not Working? Quick Fixes &#038; Advanced Troubleshooting</title><br />
  <meta name="description" content="Fix MacBook mic not working: step-by-step checks, macOS settings, hardware tests, and repair options to restore your MacBook Pro microphone fast."><br />
  <meta name="viewport" content="width=device-width,initial-scale=1"></p>
<style>
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; line-height:1.6; color:#111; padding:24px; max-width:900px; margin:auto; }
    code { background:#f4f4f4; padding:2px 6px; border-radius:4px; font-family:monospace; font-size:0.95em; }
    a { color:#0066cc; text-decoration:none; }
    a:hover { text-decoration:underline; }
    h1,h2 { color:#0a2b4a; }
    .muted { color:#555; font-size:0.95em; }
    .kbd { background:#efefef; border:1px solid #ddd; padding:2px 6px; border-radius:4px; font-family:monospace; }
    .callout { background:#fff8e6; border-left:4px solid #ffcc00; padding:10px 14px; margin:10px 0; }
    .small { font-size:0.92em; color:#444; }
  </style>
<p></head><br />
<body></p>
<h1>MacBook Microphone Not Working? Quick Fixes &#038; Advanced Troubleshooting</h1>
<p class="muted">Fast, practical troubleshooting for &#8222;macbook microphone not working&#8220;, &#8222;macbook mic not working&#8220; and &#8222;mic not working on macbook&#8220; — from quick resets to hardware diagnostics.</p>
<p>If your MacBook or MacBook Pro microphone stopped picking up sound — whether FaceTime, Voice Memos, or dictation — this article walks you through the most reliable fixes. Start with the quick checklist below, then progress into system and hardware troubleshooting if needed. For a code-based or community-driven troubleshooting log, see this resource: <a href="https://github.com/MaidSecret74/macbook-microphone-not-working" rel="noopener" target="_blank">macbook microphone not working</a>.</p>
<hr>
<h2>Immediate checks: quick fixes that resolve most &#8222;mic not working&#8220; cases</h2>
<p>Begin with the simplest causes. The majority of microphone issues on macOS are permission, input selection, or temporary-system problems — not hardware failure. Verifying these items first saves time and often restores normal mic function within minutes.</p>
<p>First, check whether macOS is using the correct input. Open System Settings (or System Preferences) → Sound → Input and confirm the internal microphone (or the external device you expect) is selected and that the input level meters move when you speak. If the input level stays flat, proceed to a few immediate resets.</p>
<p>Next, rule out app-level permission problems. Go to System Settings → Privacy &#038; Security → Microphone and make sure the app you’re testing (Safari, Zoom, FaceTime, Voice Memos) has permission to access the microphone. Many &#8222;why is my Mac microphone not working&#8220; problems are simply permissions that were denied and forgotten.</p>
<ol>
<li>Restart the app and test again. Quit the app fully and reopen it.</li>
<li>Reboot macOS. A full restart clears temporary Core Audio glitches.</li>
<li>If still broken, reset NVRAM/PRAM: shut down, then power on while holding Option+Command+P+R for ~20 seconds.</li>
<li>If on Intel Mac, consider resetting the SMC (consult Apple’s guide for your model).</li>
</ol>
<p class="small">Quick snippet for voice search: &#8222;How do I fix a MacBook mic not working?&#8220; Answer: Check Sound input, grant Microphone permission in Privacy, restart the app, reboot macOS, reset NVRAM/SMC.</p>
<h2>System and software troubleshooting: settings, drivers, and macOS utilities</h2>
<p>When the quick checks don&#8217;t fix the microphone, dig deeper into macOS audio subsystems. Core Audio is the macOS layer that manages inputs — a stale or misconfigured setting here can mute your mic globally. Start by testing audio input with a native Apple app such as Voice Memos or QuickTime (New Audio Recording) to confirm whether the issue is system-wide or app-specific.</p>
<p>If the mic works in Voice Memos but not in a third-party app, the problem is almost always privacy permissions or app settings. Revoke and re-grant microphone permission to the app via Privacy &#038; Security, then relaunch. For apps like Zoom or Slack, also check in-app audio preferences to ensure the correct input device is selected.</p>
<p>If no apps detect the mic, use Activity Monitor to quit any suspicious audio-related processes (for example, third-party audio utilities or virtual audio drivers). In Terminal, you can restart the audio subsystem by running <code>sudo pkill coreaudiod</code> and then enter your admin password; macOS will automatically restart coreaudiod. This often revives a non-responsive internal mic without a full reboot.</p>
<p>Also ensure macOS is up to date: Apple periodically releases fixes for audio drivers and microphone-related bugs. If you recently upgraded macOS and the mic stopped working, check Apple’s support notes for known issues or consider booting into Safe Mode to see whether a third-party extension is causing the conflict.</p>
<h2>Hardware diagnostics and repair options: when the mic is physically at fault</h2>
<p>After software checks, consider hardware causes. A damaged microphone, water exposure, or a blocked microphone port (debris, case obstruction) can prevent audio input. First, inspect the mic grills near the camera and the left/right sides on MacBook models and gently clean them with a soft brush or compressed air — avoid poking or inserting anything into the opening.</p>
<p>Run Apple Diagnostics (restart and hold <span class="kbd">D</span>) to check for reported hardware faults. If Diagnostics reports microphone or audio hardware errors, schedule service with Apple or an Apple Authorized Service Provider. On older MacBook Pros, mic elements are sometimes soldered to the logic board and require board-level repair.</p>
<p>If you suspect a hardware fault but Diagnostics is clean, test with an external microphone: plug a USB mic or a 3.5mm headset (with mic) and select that input in Sound preferences. If the external mic works, the internal microphone assembly is likely defective. If nothing works, the issue may be system-level (motherboard or audio codec) and needs professional servicing.</p>
<div class="callout">
  <strong>Helpful tools and quick checks:</strong></p>
<ul>
<li>Voice Memos or QuickTime for a simple input test</li>
<li>Apple Diagnostics (<span class="kbd">D</span> at startup)</li>
<li>External USB or TRRS headset to isolate internal mic issues</li>
</ul>
</div>
<h2>Preventive tips, voice-search optimizations, and next steps</h2>
<p>To avoid future microphone interruptions, keep macOS updated, periodically check microphone privacy settings after app installs, and avoid cases or screen protectors that obstruct mic openings. If you use multiple input devices (USB mics, Bluetooth headsets), create a habit of verifying the selected Input device before starting a call or recording.</p>
<p>For voice search optimization: users ask short queries like &#8222;MacBook mic not working&#8220; or &#8222;How to fix Mac microphone&#8220;. Provide direct actionable answers near the start of content (as this article does) and include step-by-step instructions and exact menu paths (e.g., System Settings → Privacy &#038; Security → Microphone). That improves chances of being featured as a snippet for voice assistants.</p>
<p>If you&#8217;re comfortable with logs and community debugging, collect a sample: reproduce the issue, open Console.app, filter for &#8222;coreaudiod&#8220; and note timestamps and error messages. Share logs with support or community repositories such as <a href="https://github.com/MaidSecret74/macbook-microphone-not-working" rel="noopener" target="_blank">macbook microphone not working</a> for collaborative troubleshooting.</p>
<hr>
<h2>Semantic core (expanded keyword set grouped)</h2>
<p class="small">Primary (high intent, primary targets)</p>
<ul>
<li>macbook microphone not working</li>
<li>macbook mic not working</li>
<li>macbook pro microphone not working</li>
<li>microphone not working on mac</li>
<li>mic not working on macbook</li>
</ul>
<p class="small">Secondary (supporting phrases &#038; LSI)</p>
<ul>
<li>internal mic not recognized</li>
<li>Mac microphone not detected</li>
<li>mac mic permissions</li>
<li>system preferences sound input</li>
<li>coreaudiod restart</li>
<li>reset NVRAM SMC mac microphone</li>
<li>apple diagnostics microphone</li>
<li>external microphone MacBook</li>
<li>voice memos mic test</li>
</ul>
<p class="small">Clarifying / Long-tail (user-intent and voice queries)</p>
<ul>
<li>why is my mac microphone not working</li>
<li>how to fix mic not working on macbook</li>
<li>macbook pro internal mic not working after update</li>
<li>microphone muted on mac</li>
<li>how to reset coreaudiod mac</li>
</ul>
<hr>
<h2>FAQ — top 3 user questions (brief, clear answers)</h2>
<section itemscope itemtype="https://schema.org/FAQPage">
<div>
<h3>1. Why is my Mac microphone not working?</h3>
<p>Most often it’s a settings or permission issue: check System Settings → Sound → Input to select the correct mic and check levels, then confirm app access under Privacy &#038; Security → Microphone. If those are fine, restart the app, reboot macOS, and try resetting NVRAM/SMC or restarting <code>coreaudiod</code>.</p>
</p></div>
<div>
<h3>2. How do I test if the internal mic is dead or just misconfigured?</h3>
<p>Open Voice Memos or QuickTime and record a short clip. If the input level moves and the recording captures audio, the mic hardware works. If nothing is recorded, try an external USB or TRRS headset; if that works, the internal mic may be faulty and require repair.</p>
</p></div>
<div>
<h3>3. Can I fix a MacBook mic without visiting service?</h3>
<p>Yes — many issues are fixed by checking privacy settings, selecting the correct input, restarting the app, rebooting macOS, resetting NVRAM/SMC, or restarting coreaudiod with <code>sudo pkill coreaudiod</code>. If diagnostics report hardware errors or physical damage is suspected, professional repair is recommended.</p>
</p></div>
</section>
<hr>
<p class="small">If you need a step-by-step debug log or community-sourced scripts, see the collaborative repository: <a href="https://github.com/MaidSecret74/macbook-microphone-not-working" rel="noopener" target="_blank">macbook microphone not working</a>.</p>
<p><!-- JSON-LD structured data for Article + FAQ --><br />
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Article",
  "headline": "MacBook Microphone Not Working? Quick Fixes & Advanced Troubleshooting",
  "description": "Fix MacBook mic not working: step-by-step checks, macOS settings, hardware tests, and repair options to restore your MacBook Pro microphone fast.",
  "author": {
    "@type": "Person",
    "name": "Experienced Troubleshooter"
  },
  "mainEntityOfPage": {
    "@type": "WebPage",
    "@id": "https://github.com/MaidSecret74/macbook-microphone-not-working"
  }
}
</script></p>
<p><script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [
    {
      "@type": "Question",
      "name": "Why is my Mac microphone not working?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Most often it’s a settings or permission issue: check System Settings → Sound → Input to select the correct mic and check levels, then confirm app access under Privacy & Security → Microphone. If those are fine, restart the app, reboot macOS, and try resetting NVRAM/SMC or restarting coreaudiod."
      }
    },
    {
      "@type": "Question",
      "name": "How do I test if the internal mic is dead or just misconfigured?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Open Voice Memos or QuickTime and record a short clip. If the input level moves and the recording captures audio, the mic hardware works. If nothing is recorded, try an external USB or TRRS headset; if that works, the internal mic may be faulty and require repair."
      }
    },
    {
      "@type": "Question",
      "name": "Can I fix a MacBook mic without visiting service?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Yes — many issues are fixed by checking privacy settings, selecting the correct input, restarting the app, rebooting macOS, resetting NVRAM/SMC, or restarting coreaudiod with sudo pkill coreaudiod. If diagnostics report hardware errors or physical damage is suspected, professional repair is recommended."
      }
    }
  ]
}
</script></p>
<p></body><br />
</html><!--wp-post-gim--></p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Informationsveranstaltung zum Tag der Städtebauförderung</title>
		<link>https://jahn-museum.de/en/informationsveranstaltung-zum-tag-der-staedtebaufoerderung/</link>
		
		<dc:creator><![CDATA[Henkel]]></dc:creator>
		<pubdate>Fri, 02 May 2025 12:37:08 +0000</pubdate>
				<category><![CDATA[Jahn-Gesellschaft]]></category>
		<category><![CDATA[Jahn-Museum]]></category>
		<category><![CDATA[Veranstaltung]]></category>
		<guid ispermalink="false">https://jahn-museum.de/?p=2498</guid>

					<description><![CDATA[On Saturday, May 10, 2025, an information event will take place at the Friedrich Ludwig Jahn Museum Freyburg as part of the nationwide Urban Development Day (www.tag-der-staedtebaufoerderung.de). Between 2 and 4 pm, interested citizens can find out more about the extensive construction project to redesign and expand the museum. Representatives of the town of Freyburg, as the client, will report on the status of the [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>On Saturday, May 10, 2025, an information event will be held at the Friedrich-Ludwig-Jahn-Museum Freyburg as part of the nationwide Urban Development Day (<a href="http://www.tag-der-staedtebaufoerderung.de">www.tag-der-staedtebaufoerderung.de</a>). Between 2 and 4 p.m., interested members of the public can find out about the extensive construction project to redesign and extend the museum. Representatives of the town of Freyburg as the client will provide information on the status of the plans. The Friedrich-Ludwig-Jahn-Gesellschaft e. V. as the operator of the Jahn Museum cordially invites all interested parties and all citizens of the town of Freyburg to take a look behind the scenes of the museum.</p>
<p>The Friedrich Ludwig Jahn Museum will be extensively renovated and expanded from 2026 to 2028 with the support of the town of Freyburg, the Burgenland district and the state of Saxony-Anhalt. As part of the renovation of the residential building, the permanent exhibition, which is over 20 years old, will also be redesigned according to current scientific, historical and didactic exhibition findings. The information event offers the opportunity to view the current conditions on site and to find out what will change and improve in the course of the construction project. There will also be an opportunity to talk to the new managing director and museum director, Dr. Norma Henkel.</p>
<p>The event is free of charge. Pre-registration is not necessary. There is no admission charge to the museum between 2pm and 4pm.</p>
<p>When: Saturday, 10.05.2025, 14-16 o'clock</p>
<p>Where: Friedrich-Ludwig-Jahn-Museum Freyburg, Schloßstraße 11, 06632 Freyburg</p>
<p><a href="https://jahn-museum.de/wp-content/uploads/2025/05/Tag-der-Staedtebaufoerderung.pdf">Poster for the Day of Urban Development in pdf format</a>.</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Dr. Norma Henkel zur neuen Leiterin und Geschäftsführerin berufen</title>
		<link>https://jahn-museum.de/en/dr-norma-henkel-zur-neuen-leiterin-und-geschaeftsfuehrerin-berufen/</link>
		
		<dc:creator><![CDATA[Henkel]]></dc:creator>
		<pubdate>Thu, 03 Apr 2025 11:35:33 +0000</pubdate>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Jahn-Gesellschaft]]></category>
		<category><![CDATA[Jahn-Museum]]></category>
		<category><![CDATA[neue Geschäftsführung]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Pressemitteilung]]></category>
		<guid ispermalink="false">https://jahn-museum.de/?p=2461</guid>

					<description><![CDATA[The Executive Committee of the Friedrich Ludwig Jahn Society has appointed Dr. Norma Henkel as the new director of the Friedrich Ludwig Jahn Museum and the new managing director of the Friedrich Ludwig Jahn Society with effect from March 1, 2025. The 46-year-old archaeologist succeeded Ms. Kristina Kuhn (until September 2023) and Ms. Manuela Dietz (until May 2023) as museum director. [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>The Executive Committee of the Friedrich Ludwig Jahn Society has appointed Dr. Norma Henkel as the new Director of the Friedrich Ludwig Jahn Museum and the new Managing Director of the Friedrich Ludwig Jahn Society with effect from March 1, 2025.</p>
<p>The 46-year-old archaeologist took over as museum director from Ms. Kristina Kuhn (until September 2023) and Ms. Manuela Dietz (until May 2023). In the position of Managing Director, she succeeds Ms. Stephanie Kaps, who has been managing the Jahn-Gesellschaft on an interim basis since November 2023.</p>
<p>Henkel has extensive experience in strategic public relations work in the cultural and museum sector. After studying archaeology in Halle (Saale), she has worked in various positions in the press department, editorial office and on the staff of the Saxony-Anhalt State Office for the Preservation of Monuments and Archaeology with the State Museum of Prehistory in Halle since 2006. During this time, she has accompanied numerous exhibitions and scientific or cultural tourism projects as well as coordinating various book projects and specialist conferences. For the most part, she worked in parallel on her dissertation on the Neolithic circular ditch complex at Goseck in the Burgenland district, which she successfully completed in 2016. Most recently, as a research assistant in the "GOLEHM Initiative for Earthen Building and Sustainable Circular Economy", she was responsible for the public relations work of the research alliance and gained experience in the renovation of listed buildings.</p>
<p>This experience will now also be put to good use at Henkel's future place of work: from 2026, the former home of the "gymnastics father" will be renovated in line with its listed status. At the end of 2024, the town of Freyburg received the funding decision for 3.3 million euros from the "National Urban Development Projects" investment program of the Federal Ministry of Building (BMWSB). The museum will be completely cleared out by the end of 2025 and the collection of around 17,000 objects, the library collection of almost 7,000 titles and the offices will be housed in alternative premises in Freyburg. The museum is set to reopen in 2028 with a newly designed permanent exhibition. During the renovation work, the museum will continue to operate in the form of an interim exhibition in the Jahn-Ehrenhalle in the town of Freyburg.</p>
<p>The press release with additional interview can be found <a href="https://jahn-museum.de/wp-content/uploads/2025/04/20250403_PM_FLJG_neue-Geschaeftsfuehrerin.pdf">here as pdf for download</a>.</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Freiwillige gesucht &#8211; für den Bundesfreiwilligen-dienst</title>
		<link>https://jahn-museum.de/en/bundesfreiwilligendienst/</link>
		
		<dc:creator><![CDATA[Henkel]]></dc:creator>
		<pubdate>Fri, 28 Mar 2025 10:32:39 +0000</pubdate>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Jahn-Museum]]></category>
		<guid ispermalink="false">https://jahn-museum.de/?p=2436</guid>

					<description><![CDATA[The Jahn Museum is looking for people to join us &#8211; Are you looking to enter the world of work, would you like to reorient yourself professionally or are you already retired? Are you looking for a useful and fulfilling task and social contacts? The Friedrich-Ludwig-Jahn-Museum in Freyburg is offering a position for Federal Voluntary Service (m/f/d) as soon as possible. For 12 months (or at least 6 and [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><strong>The Jahn-Museum is looking for helpers &#8211;<br />
</strong></p>
<p>Are you looking to enter the world of work, would you like to reorient yourself professionally or are you already retired? Are you looking for a useful and fulfilling job and social contacts? The Friedrich-Ludwig-Jahn-Museum in Freyburg is offering a position as soon as possible for the <strong>Federal Volunteer Service (m/f/d) </strong>to.</p>
<p>For 12 months (or at least 6 and up to 18 months) you can support us, for example, with</p>
<ul>
<li>the organization of events</li>
<li>the processing of the collection</li>
<li>the daily tasks of the museum staff (cash desk, visitor support)</li>
</ul>
<p>The exact job description will be jointly agreed on the basis of interest and skills. We offer you an interesting job with a wide range of experience, regular working hours and vacation as well as a monthly allowance with social security contributions.</p>
<p>We look forward to receiving your application at <a href="mailto:info@jahn-museum.de">info@jahn-museum.de</a>. For further information please call: 034464-27426."</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Jahn-Report Nr. 59 erschienen</title>
		<link>https://jahn-museum.de/en/jahn-report-nr-59-erschienen/</link>
		
		<dc:creator><![CDATA[jahn-buero]]></dc:creator>
		<pubdate>Thu, 06 Mar 2025 10:01:17 +0000</pubdate>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Jahn-Gesellschaft]]></category>
		<category><![CDATA[Jahn-Museum]]></category>
		<guid ispermalink="false">https://jahn-museum.de/?p=2373</guid>

					<description><![CDATA[The new "Jahn-Report" is here The new "Jahn-Report" is here: The new issue, the 59th since July 1994, was published at the beginning of the year. The brochure is an impressive 64 pages long. The first part deals once again with the 100th Jahn gymnastics festival, which took place in Freyburg an der Unstrut in mid-August: reviews from different perspectives [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><strong>The new "Jahn Report" is here</strong></p>
<p>The new "Jahn-Report" is here: The new issue was published at the beginning of the year, the 59th edition since July 1994. The brochure is an impressive 64 pages long. The first part deals once again with the 100th Jahn gymnastics festival<em>, </em>which took place in Freyburg an der Unstrut in mid-August: reviews from different perspectives illustrate the pleasingly diverse range of events. The new brochure focuses on: the future of the Jahn memorial in Hasenheide, the development of the gymnastics movement in southwest Germany (Gustav von Struve's work), the symposium in Hanau in autumn 2024 (175 years of the DTB) and an appreciation of the fact that sports science has existed in Halle for 100 years.</p>
<p>&nbsp;</p>
<p>Information: Email: <a href="mailto:info@jahn-museum.de">info@jahn-museum.de</a> or tel. 034464/27426.</p>
<p>&nbsp;</p>
<p>Hansgeorg Kling</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>ACHTUNG! Geänderte Öffnungszeiten</title>
		<link>https://jahn-museum.de/en/achtung-geaenderte-oeffnungszeiten/</link>
		
		<dc:creator><![CDATA[jahn-buero]]></dc:creator>
		<pubdate>Tue, 26 Mar 2024 13:44:09 +0000</pubdate>
				<category><![CDATA[Jahn-Museum]]></category>
		<guid ispermalink="false">https://jahn-museum.de/?p=2337</guid>

					<description><![CDATA[From April 1, 2024 until further notice, the Jahn Museum will change its opening hours. The museum will be open from Wednesday to Saturday from 10.00 am to 4.00 pm. Guided tours are also possible on other days by prior arrangement. We ask for your understanding.]]></description>
										<content:encoded><![CDATA[<p>From April 1, 2024 until further notice, the Jahn Museum will change its opening hours.</p>
<p>The museum is open from Wednesday to Saturday from 10.00 am to 4.00 pm. Guided tours are also possible on other days by prior arrangement.</p>
<p>We ask for your understanding.</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Stephanie Kaps zur kommissarischen Geschäftsführerin der Jahn-Gesellschaft berufen</title>
		<link>https://jahn-museum.de/en/stephanie-kaps-zur-kommissarischen-geschaeftsfuehrerin-der-jahn-gesellschaft-berufen/</link>
		
		<dc:creator><![CDATA[jahn-buero]]></dc:creator>
		<pubdate>Thu, 23 Nov 2023 09:16:42 +0000</pubdate>
				<category><![CDATA[Jahn-Gesellschaft]]></category>
		<guid ispermalink="false">https://jahn-museum.de/?p=2314</guid>

					<description><![CDATA[The Executive Committee of the Friedrich-Ludwig-Jahn-Gesellschaft e.V. has appointed Stephanie Kaps (Großjena) as acting Managing Director with effect from November 10, 2023. Ms. Kaps has worked as assistant to the management at the Jahn Museum in recent years and was able to gain experience during this time, which will now benefit her as acting managing director. The appointment of Ms. Kaps became necessary because [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><a name="_GoBack"></a>The Executive Committee of the Friedrich-Ludwig-Jahn-Gesellschaft e.V. has appointed Stephanie Kaps (Großjena) as acting Managing Director with effect from November 10, 2023. Ms. Kaps has worked as assistant to the management at the Jahn Museum in recent years and was able to gain experience during this time, which will now benefit her as acting managing director. The appointment of Ms. Kaps became necessary because Dr. Kuhn resigned from her position as Managing Director of the Jahn Society and Director of the Jahn Museum on 1 October 2023. Until this position is filled, Ms. Kaps will manage the Jahn Society's office in Freyburg (Unstrut).</p>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>