<?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>Unkategorisiert Archive - Supersieben</title>
	<atom:link href="https://supersieben.com/en/category/unkategorisiert/feed/" rel="self" type="application/rss+xml" />
	<link>https://supersieben.com/en/category/unkategorisiert/</link>
	<description>Business-Beratung</description>
	<lastBuildDate>Wed, 05 Apr 2023 06:47:47 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>

<image>
	<url>https://supersieben.com/wp-content/uploads/2023/02/cropped-s7-logo-schwarz-v1-3-32x32.png</url>
	<title>Unkategorisiert Archive - Supersieben</title>
	<link>https://supersieben.com/en/category/unkategorisiert/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>almond bread</title>
		<link>https://supersieben.com/en/unkategorisiert/almond-bread/</link>
		
		<dc:creator><![CDATA[Thomas Walter]]></dc:creator>
		<pubDate>Wed, 21 Dec 2022 10:53:58 +0000</pubDate>
				<category><![CDATA[Unkategorisiert]]></category>
		<guid isPermaLink="false">https://supersieben.com/unkategorisiert/almond-bread/</guid>

					<description><![CDATA[<p>This is what Christmas feels like! We used our Emotional Territories algorithm to measure Christmas sentiment. The results are available for download free of charge.</p>
<p>Der Beitrag <a href="https://supersieben.com/en/unkategorisiert/almond-bread/">almond bread</a> erschien zuerst auf <a href="https://supersieben.com/en/">Supersieben</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><div class="et_pb_section et_pb_section_0 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_0">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_0 et_animated  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Do you need programmers?</p></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_1 et_animated  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h1>This program was programmed by a program</h1></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_2 et_animated  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>All I did was: ask a question. </p></div>
			</div><div class="et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_left et_pb_module  dbdb-icon-on-right dbdb-icon-on-hover dbdb-has-custom-padding">
				<a class="et_pb_button et_pb_button_0 et_animated et_pb_bg_layout_dark" href="#case" data-icon="&#x22;">Read more</a>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div><div class="et_pb_section et_pb_section_1 et_pb_with_background et_section_regular" >
				
				
				
				
				
				
				
				
				
			</div><div id="case" class="et_pb_section et_pb_section_2 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_1">
				<div class="et_pb_column et_pb_column_1_5 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et_pb_column_empty">
				
				
				
				
				
			</div><div class="et_pb_column et_pb_column_3_5 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_3 et_animated  et_pb_text_align_center et_pb_text_align_left-phone et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2>If you program like this today &#8211; what about tomorrow?</h2>
<p>My question to ChatGPT was, &#8220;Can you write a javascript that calculates the day of the week for any birth date? I want to include it on my website.&#8221; That was the answer:</p></div>
			</div><div class="et_pb_module et_pb_code et_pb_code_0">
				
				
				
				
				<div class="et_pb_code_inner">


  <title>Weekday calculation</title>


  <!-- Eingabefeld für das Geburtsdatum -->
  <label for="birthday">Date of birth:</label><br />
  <input type="date" id="birthday"><br />

  <!-- Ausgabefeld für den Wochentag -->
  <label for="day-of-week">Weekday:</label><br />
  <input type="text" id="day-of-week" disabled><br />

  <!-- Skript-Datei einbinden -->
  <script src="path/to/script.js"></script>

  <!-- Skript ausführen, um den Wochentag zu berechnen und anzuzeigen -->
  <script>
    // Funktion zur Berechnung des Wochentags
    function getDayOfWeek(year, month, day) {
      // Erstelle ein neues Datumsobjekt mit dem angegebenen Jahr, Monat und Tag
      const date = new Date(year, month - 1, day);

      // Holen Sie sich den Wochentag als Zahl (0 = Sonntag, 1 = Montag, 2 = Dienstag, ...)
      const dayOfWeek = date.getDay();

      // Konvertieren Sie die Zahl in den Namen des Wochentags
      const dayNames = ['Sonntag', 'Montag', 'Dienstag', 'Mittwoch', 'Donnerstag', 'Freitag', 'Samstag'];
      const dayName = dayNames[dayOfWeek];

      return dayName;
    }

    // Beim Ändern des Geburtsdatums den Wochentag berechnen und anzeigen
    document.getElementById('birthday').addEventListener('change', function() {
      // Hole das Geburtsdatum aus dem Eingabefeld
      const birthday = this.value;

      // Zerlegen Sie das Geburtsdatum in Jahr, Monat und Tag
      const year = birthday.slice(0, 4);
      const month = birthday.slice(5, 7);
      const day = birthday.slice(8);

      // Berechne den Wochentag
      const dayOfWeek = getDayOfWeek(year, month, day);

      // Zeige den Wochentag im Ausgabefeld an
      document.getElementById('day-of-week').value = dayOfWeek;
    });
  </script>


</div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_5 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child et_pb_column_empty">
				
				
				
				
				
			</div>
				
				
				
				
			</div>
				
				
			</div><div class="et_pb_section et_pb_section_3 et_pb_section_parallax et_pb_with_background et_section_regular" >
				
				<span class="et_parallax_bg_wrap"><span
						class="et_parallax_bg"
						style="background-image: url(https://supersieben.com/wp-content/uploads/2022/07/s7_strategie-section_1.jpg);"
					></span></span>
				
				
				
				
				
				
				
			</div><div id="case" class="et_pb_section et_pb_section_4 et_section_regular" >
				
				
				
				
				
				
				
				
				
			</div></p>
<p>Der Beitrag <a href="https://supersieben.com/en/unkategorisiert/almond-bread/">almond bread</a> erschien zuerst auf <a href="https://supersieben.com/en/">Supersieben</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
