
	<div id="cpd-flot-place">
		<div id="cpd-flot-choice">
			<div style="float:left">
				<a href="index.php?page=cpd_metaboxes&amp;cpd_chart_start=2026-02-23" class="button">&lt;</a>
				24. Februar 2026			</div>
			<div style="float:right">
				24. April 2026				<a href="index.php?page=cpd_metaboxes&amp;cpd_chart_start=2026-06-23" class="button">&gt;</a>
			</div>
		</div>
		<div id="cpd-flot" style="height:200px"></div>
	</div>
	
	<script type="text/javascript">
	//<![CDATA[
	jQuery(function() {
		var placeholder = jQuery("#cpd-flot");
		var choiceContainer = jQuery("#cpd-flot-choice");
		var colors = ['blue', 'red'];
		var datasets = {
			'reads': { data: [[gd(2026,2,24),480],[gd(2026,2,25),273],[gd(2026,2,26),247],[gd(2026,2,27),427],[gd(2026,2,28),254],[gd(2026,3,1),322],[gd(2026,3,2),285],[gd(2026,3,3),198],[gd(2026,3,4),264],[gd(2026,3,5),412],[gd(2026,3,6),300],[gd(2026,3,7),245],[gd(2026,3,8),131],[gd(2026,3,9),132],[gd(2026,3,10),153],[gd(2026,3,11),138],[gd(2026,3,12),156],[gd(2026,3,13),140],[gd(2026,3,14),159],[gd(2026,3,15),160],[gd(2026,3,16),159],[gd(2026,3,17),152],[gd(2026,3,18),107],[gd(2026,3,19),98],[gd(2026,3,20),134],[gd(2026,3,21),175],[gd(2026,3,22),112],[gd(2026,3,23),153],[gd(2026,3,24),212],[gd(2026,3,25),213],[gd(2026,3,26),1230],[gd(2026,3,27),267],[gd(2026,3,28),294],[gd(2026,3,29),123],[gd(2026,3,30),167],[gd(2026,3,31),228],[gd(2026,4,1),326],[gd(2026,4,2),163],[gd(2026,4,3),164],[gd(2026,4,4),183],[gd(2026,4,5),132],[gd(2026,4,6),165],[gd(2026,4,7),129],[gd(2026,4,8),101],[gd(2026,4,9),95],[gd(2026,4,10),132],[gd(2026,4,11),141],[gd(2026,4,12),133],[gd(2026,4,13),193],[gd(2026,4,14),174],[gd(2026,4,15),150],[gd(2026,4,16),130],[gd(2026,4,17),241],[gd(2026,4,18),275],[gd(2026,4,19),373],[gd(2026,4,20),304],[gd(2026,4,21),713],[gd(2026,4,22),379],[gd(2026,4,23),832],[gd(2026,4,24),897]], label: 'Seitenaufrufe pro Tag' },
			'visitors' : { data: [[gd(2026,2,24),228],[gd(2026,2,25),152],[gd(2026,2,26),164],[gd(2026,2,27),172],[gd(2026,2,28),185],[gd(2026,3,1),294],[gd(2026,3,2),209],[gd(2026,3,3),159],[gd(2026,3,4),225],[gd(2026,3,5),195],[gd(2026,3,6),217],[gd(2026,3,7),208],[gd(2026,3,8),92],[gd(2026,3,9),83],[gd(2026,3,10),111],[gd(2026,3,11),95],[gd(2026,3,12),98],[gd(2026,3,13),97],[gd(2026,3,14),121],[gd(2026,3,15),92],[gd(2026,3,16),118],[gd(2026,3,17),112],[gd(2026,3,18),72],[gd(2026,3,19),62],[gd(2026,3,20),93],[gd(2026,3,21),119],[gd(2026,3,22),74],[gd(2026,3,23),104],[gd(2026,3,24),160],[gd(2026,3,25),155],[gd(2026,3,26),161],[gd(2026,3,27),169],[gd(2026,3,28),198],[gd(2026,3,29),63],[gd(2026,3,30),109],[gd(2026,3,31),179],[gd(2026,4,1),134],[gd(2026,4,2),109],[gd(2026,4,3),104],[gd(2026,4,4),132],[gd(2026,4,5),76],[gd(2026,4,6),96],[gd(2026,4,7),79],[gd(2026,4,8),73],[gd(2026,4,9),66],[gd(2026,4,10),88],[gd(2026,4,11),103],[gd(2026,4,12),88],[gd(2026,4,13),141],[gd(2026,4,14),121],[gd(2026,4,15),101],[gd(2026,4,16),89],[gd(2026,4,17),119],[gd(2026,4,18),166],[gd(2026,4,19),198],[gd(2026,4,20),172],[gd(2026,4,21),453],[gd(2026,4,22),117],[gd(2026,4,23),122],[gd(2026,4,24),115]], label: 'Besucher pro Tag' }
			};
		// Checkboxen
		var i = 0;
		jQuery.each(datasets, function(key, val) {
			val.color = i;
			++i;
			choiceContainer.append(
				'<input type="checkbox" name="' + key + '" checked="checked" id="id' + key + '" \/> '
				+ '<label style="padding-left:3px;margin-right:10px;border-left:14px solid ' + colors[val.color] + '" for="id' + key + '">' + val.label + '<\/label> ');
		});
		choiceContainer.find("input").click(plotAccordingToChoices);

		function showTooltip(x, y, contents) {
			jQuery('<div id="cpd-tooltip">' + contents + '<\/div>').css({ top:y-70, left:x-80 }).appendTo("body").fadeIn(200);
		}

		var previousPoint = null;
		jQuery(placeholder).bind("plothover", function (event, pos, item) {
			if (item) {
				if (previousPoint != item.datapoint) {
					previousPoint = item.datapoint;
					jQuery("#cpd-tooltip").remove();
					var dx = new Date(item.datapoint[0]);
					var datum = dx.getDate() + '.' + (dx.getMonth() + 1) + '.' + dx.getFullYear();
					showTooltip(item.pageX, item.pageY,
						datum + '<br\/><b>' + item.datapoint[1] + '<\/b> ' + item.series.label);
				}
			}
			else {
				jQuery("#cpd-tooltip").remove();
				previousPoint = null;			
			}
		});

	    function weekendAreas(axes) {
	        var markings = [];
	        var d = new Date(axes.xaxis.min);
	        d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7));
	        d.setUTCSeconds(0);
	        d.setUTCMinutes(0);
	        d.setUTCHours(0);
	        var i = d.getTime();
	        do {
	            markings.push({ xaxis: { from: i, to: i + 2 * 24 * 60 * 60 * 1000 } });
	            i += 7 * 24 * 60 * 60 * 1000;
	        } while (i < axes.xaxis.max);
	        return markings;
	    }
		
		function plotAccordingToChoices() {
			var data = [];
			choiceContainer.find("input:checked").each(function () {
				var key = jQuery(this).attr("name");
				if (key && datasets[key])
					data.push(datasets[key]);
			});

			if (data.length > 0)
				jQuery.plot(jQuery(placeholder), data , { 
					xaxis: { mode: 'time', timeformat: '%d.%m.%y' },
					legend: { show: false },
					colors: colors,
					lines: { fill: true	},
					grid: { borderWidth: 1, borderColor: '#ccc', hoverable: true, markings: weekendAreas }
				});
		}

		function gd(year, month, day) {
		    return new Date(year, month - 1, day).getTime();
		}

		plotAccordingToChoices();
	});
	//]]>
	</script>
	<br />
<b>Warning</b>:  Cannot modify header information - headers already sent by (output started at /users/mikrocontroller/www/wordpress/wp-content/plugins-secure/count-per-day/counter.php:343) in <b>/users/mikrocontroller/www/wordpress/wp-includes/rest-api/class-wp-rest-server.php</b> on line <b>1902</b><br />
<br />
<b>Warning</b>:  Cannot modify header information - headers already sent by (output started at /users/mikrocontroller/www/wordpress/wp-content/plugins-secure/count-per-day/counter.php:343) in <b>/users/mikrocontroller/www/wordpress/wp-includes/rest-api/class-wp-rest-server.php</b> on line <b>1902</b><br />
{"id":1334,"date":"2017-12-11T12:32:23","date_gmt":"2017-12-11T11:32:23","guid":{"rendered":"http:\/\/mikrocontroller.bplaced.net\/wordpress\/?p=1334"},"modified":"2017-12-11T12:32:23","modified_gmt":"2017-12-11T11:32:23","slug":"1-monat-online","status":"publish","type":"post","link":"https:\/\/mikrocontroller.bplaced.net\/wordpress\/1-monat-online\/","title":{"rendered":"1 Monat online"},"content":{"rendered":"\n<p>Hallo zusammen,<\/p>\n<p>dieser Blog ist nun <strong>seit einem Monat wieder online<\/strong>, und in dieser Zeit ist schon v<a href=\"http:\/\/mikrocontroller.bplaced.net\/wordpress\/?page_id=11\">iel passiert<\/a>. Immerhin sind bisher ca. <strong>4.000 Besucher<\/strong> online gewesen, welche <strong>ca. 12.000 Seitenaufrufe<\/strong> get\u00e4tigt haben. Die genauen Statistikdaten findet ihr <a href=\"http:\/\/mikrocontroller.bplaced.net\/wordpress\/?page_id=1194\">hier<\/a>.)<\/p>\n<p>Wie ich finde ein sch\u00f6ner Zeitpunkt mal kurz nachzufragen, welche W\u00fcnsche Ihr habt.<\/p>\n<div id=\"polls-4\" class=\"wp-polls\">\n\t\t<p style=\"text-align: center;\"><strong>Welche W\u00fcnsche habt Ihr? (3 W\u00fcnsche sind frei;)<\/strong><\/p><div id=\"polls-4-ans\" class=\"wp-polls-ans\"><ul class=\"wp-polls-ul\">\n\t\t<li>Mehr zu Cube Software (STM32CubeF4). <small>(27%, 56 Votes)<\/small><div class=\"pollbar\" style=\"width: 27%;\" title=\"Mehr zu Cube Software (STM32CubeF4). (27% | 56 Votes)\"><\/div><\/li>\n\t\t<li>Mehr zum STM32F746-Discovery. <small>(24%, 49 Votes)<\/small><div class=\"pollbar\" style=\"width: 24%;\" title=\"Mehr zum STM32F746-Discovery. (24% | 49 Votes)\"><\/div><\/li>\n\t\t<li>Mehr zum STM32F4-Discovery. <small>(19%, 39 Votes)<\/small><div class=\"pollbar\" style=\"width: 19%;\" title=\"Mehr zum STM32F4-Discovery. (19% | 39 Votes)\"><\/div><\/li>\n\t\t<li>Mehr zum STM32F429-Discovery. <small>(19%, 39 Votes)<\/small><div class=\"pollbar\" style=\"width: 19%;\" title=\"Mehr zum STM32F429-Discovery. (19% | 39 Votes)\"><\/div><\/li>\n\t\t<li>Meine eigenen Projekte hier online stellen. <small>(7%, 14 Votes)<\/small><div class=\"pollbar\" style=\"width: 7%;\" title=\"Meine eigenen Projekte hier online stellen. (7% | 14 Votes)\"><\/div><\/li>\n\t\t<li>Ich bin wunschlos gl\u00fccklich. <small>(4%, 9 Votes)<\/small><div class=\"pollbar\" style=\"width: 4%;\" title=\"Ich bin wunschlos gl\u00fccklich. (4% | 9 Votes)\"><\/div><\/li>\n\t\t<\/ul><p style=\"text-align: center;\">Total Voters: <strong>108<\/strong><\/p><\/div>\n\t\t<input type=\"hidden\" id=\"poll_4_nonce\" name=\"wp-polls-nonce\" value=\"c747508e2a\" \/>\n<\/div>\n<div id=\"polls-4-loading\" class=\"wp-polls-loading\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/mikrocontroller.bplaced.net\/wordpress\/wp-content\/plugins-secure\/wp-polls\/images\/loading.gif\" width=\"16\" height=\"16\" alt=\"Wird geladen ...\" title=\"Wird geladen ...\" class=\"wp-polls-image\" \/>&nbsp;Wird geladen ...<\/div>\n\n","protected":false},"excerpt":{"rendered":"<p>Hallo zusammen, dieser Blog ist nun seit einem Monat wieder online, und in dieser Zeit ist schon viel passiert. Immerhin sind bisher ca. 4.000 Besucher online gewesen, welche ca. 12.000 Seitenaufrufe get\u00e4tigt haben. Die genauen Statistikdaten findet ihr hier.) Wie &hellip; <a href=\"https:\/\/mikrocontroller.bplaced.net\/wordpress\/1-monat-online\/\">Weiterlesen <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1334","post","type-post","status-publish","format-standard","hentry","category-allgemein"],"_links":{"self":[{"href":"https:\/\/mikrocontroller.bplaced.net\/wordpress\/wp-json\/wp\/v2\/posts\/1334","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mikrocontroller.bplaced.net\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mikrocontroller.bplaced.net\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mikrocontroller.bplaced.net\/wordpress\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mikrocontroller.bplaced.net\/wordpress\/wp-json\/wp\/v2\/comments?post=1334"}],"version-history":[{"count":4,"href":"https:\/\/mikrocontroller.bplaced.net\/wordpress\/wp-json\/wp\/v2\/posts\/1334\/revisions"}],"predecessor-version":[{"id":1338,"href":"https:\/\/mikrocontroller.bplaced.net\/wordpress\/wp-json\/wp\/v2\/posts\/1334\/revisions\/1338"}],"wp:attachment":[{"href":"https:\/\/mikrocontroller.bplaced.net\/wordpress\/wp-json\/wp\/v2\/media?parent=1334"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mikrocontroller.bplaced.net\/wordpress\/wp-json\/wp\/v2\/categories?post=1334"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mikrocontroller.bplaced.net\/wordpress\/wp-json\/wp\/v2\/tags?post=1334"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}